Bitcoin Forum
May 09, 2024, 03:52:40 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 [41] 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 »
  Print  
Author Topic: Qora | 100% POS | Assets | Names | Voting | Open Source  (Read 113724 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
calvinstm
Full Member
***
Offline Offline

Activity: 229
Merit: 101


View Profile
February 23, 2015, 09:02:36 AM
 #801

the qora wiki @ https://wiki.qora.org/ isn't working?

Qora had a forum and a wiki set up by the dev, but as far as I'm aware, they're both down at the moment..

However, most info in the Wiki can be found in the API guide.. If there is something you need to know, just post them here!

Another good source of info is Qora's source code at github.. The source is pretty organized.. Check it out if you haven't!

-----------------------------------

A little bit of intro to Qora's API --

There are two ways to access Qora's API --

1. Through the built-in debug console.
2. Through jetty's html (JSON) interface using your browser or make calls from inside your applications...

 Grin
1715226760
Hero Member
*
Offline Offline

Posts: 1715226760

View Profile Personal Message (Offline)

Ignore
1715226760
Reply with quote  #2

1715226760
Report to moderator
Each block is stacked on top of the previous one. Adding another block to the top makes all lower blocks more difficult to remove: there is more "weight" above each block. A transaction in a block 6 blocks deep (6 confirmations) will be very difficult to remove.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715226760
Hero Member
*
Offline Offline

Posts: 1715226760

View Profile Personal Message (Offline)

Ignore
1715226760
Reply with quote  #2

1715226760
Report to moderator
1715226760
Hero Member
*
Offline Offline

Posts: 1715226760

View Profile Personal Message (Offline)

Ignore
1715226760
Reply with quote  #2

1715226760
Report to moderator
wizzardTim
Legendary
*
Offline Offline

Activity: 1708
Merit: 1000


Reality is stranger than fiction


View Profile
February 23, 2015, 12:07:38 PM
 #802


I am asking because i have googled both errors (ClosedByInterruptException, ClosedChannelException) together with the term MapDB and i have found several websites
e.g.:
https://groups.google.com/forum/#!topic/mapdb/9MBNRFbX3g4
https://github.com/jankotek/MapDB/issues/352

 that claim memory mapped files (mmapFileEnable()) might solve both problems, but they only work on 64 bit VMs.
So i looked into the sourcecode relase and found:
.mmapFileEnableIfSupported()
in https://github.com/Qora/Qora/blob/master/Qora/src/database/DBSet.java

Then i looked at the decompiled v18 but didn't find it there.


mmapFileEnable() - Enables Memory Mapped Files, much faster storage option. However on 32bit JVM this mode could corrupt your DB thanks to 4GB memory addressing limit.

You genius!  Grin  I think you actually solved the mystery!

Very good job, DeMap!  Wink

PS: I've been running Qora on 64-bit windows (64-bit JVM), and I can attest that my Qora client never once encountered any problem (No exception thrown)... I'm pretty sure it's a JVM problem.

----------------

PS 2: If this is the case, what Poloniex needs to do is to compile a new Qora wallet with memory map file always enabled, and switch to 64-bit JVM.  I think someone needs to contact Poloniex or Tristen and let them know about the solution.

Thank you DeMap!  It is very important for qora to have poloniex up and running.

I tried to give some ideas in the slackroom, regarding the ways to reproduce the scenario and help find the bug, but if this is the bug, you saved  all a lot of time for the community.

Contrats!

Behold the Tangle Mysteries! Dare to know It's truth.

- Excerpt from the IOTA Sacred Texts Vol. I
rlh
Hero Member
*****
Offline Offline

Activity: 804
Merit: 1004


View Profile
February 23, 2015, 12:49:34 PM
 #803

I think this is the bug.  I vaguely recall Qora mentioning that the issue (or multiple issues) were related to MapDb, and that he needed to refactor some code so that hard-kills of the app wouldn't break the db.

A Personal Quote on BTT from 2011:
"I'd be willing to make a moderate "investment" if the value of the BTC went below $2.00.  Otherwise I'll just have to live with my 5 BTC and be happy. :/"  ...sigh.  If only I knew.
delulo
Sr. Member
****
Offline Offline

Activity: 441
Merit: 250


View Profile
February 23, 2015, 01:39:05 PM
 #804

the qora wiki @ https://wiki.qora.org/ isn't working?

Qora had a forum and a wiki set up by the dev, but as far as I'm aware, they're both down at the moment..

However, most info in the Wiki can be found in the API guide.. If there is something you need to know, just post them here!

Another good source of info is Qora's source code at github.. The source is pretty organized.. Check it out if you haven't!

-----------------------------------

A little bit of intro to Qora's API --

There are two ways to access Qora's API --

1. Through the built-in debug console.
2. Through jetty's html (JSON) interface using your browser or make calls from inside your applications...

 Grin

I'd like to know about the mechanics / incentives structures of the Qora POS. Any documentation about it?
Vrontis
Sr. Member
****
Offline Offline

Activity: 351
Merit: 250



View Profile WWW
February 23, 2015, 02:14:13 PM
 #805

I'd like to know about the mechanics / incentives structures of the Qora POS. Any documentation about it?

Quote from: qora
A Proof-of-Stake algorithm that is different from anything that is described here https://en.bitcoin.it/wiki/Proof_of_Stake.

The algorithm will allow accounts to start generating blocks after only 10 confirmations.
Each account will also know at exactly which point they will generate the next block.
Source

Vrontis
Sr. Member
****
Offline Offline

Activity: 351
Merit: 250



View Profile WWW
February 23, 2015, 03:18:01 PM
 #806


I am asking because i have googled both errors (ClosedByInterruptException, ClosedChannelException) together with the term MapDB and i have found several websites
e.g.:
https://groups.google.com/forum/#!topic/mapdb/9MBNRFbX3g4
https://github.com/jankotek/MapDB/issues/352

 that claim memory mapped files (mmapFileEnable()) might solve both problems, but they only work on 64 bit VMs.
So i looked into the sourcecode relase and found:
.mmapFileEnableIfSupported()
in https://github.com/Qora/Qora/blob/master/Qora/src/database/DBSet.java

Then i looked at the decompiled v18 but didn't find it there.


mmapFileEnable() - Enables Memory Mapped Files, much faster storage option. However on 32bit JVM this mode could corrupt your DB thanks to 4GB memory addressing limit.

You genius!  Grin  I think you actually solved the mystery!

Very good job, DeMap!  Wink

PS: I've been running Qora on 64-bit windows (64-bit JVM), and I can attest that my Qora client never once encountered any problem (No exception thrown)... I'm pretty sure it's a JVM problem.

----------------

PS 2: If this is the case, what Poloniex needs to do is to compile a new Qora wallet with memory map file always enabled, and switch to 64-bit JVM.  I think someone needs to contact Poloniex or Tristen and let them know about the solution.


Indeed, this seems to be a workaround that solves this problem

https://groups.google.com/d/msg/mapdb/9MBNRFbX3g4/otD5fYEQBM0J

Quote
ClosedChannelException happens if one of the threads is interrupted while doing IO. The FileChannel gets closed on interruption and all future IOs will throw CCE. There is workaround to use memory-mapped files (mmapFileEnable()), but they only work on 64bit systems.
 
So either enable mmap or investigate what is interrupting your threads.


https://github.com/jankotek/MapDB/issues/352#issuecomment-48128816

Quote
Some threads are interrupted while reading/writing from FileChannel. As result FC is closed and always throws ClosedByInterruptException. That is documented behavior of FileChannel, and there is not much I can do without sacrificing performance.

So my suggestion is to stop interrupting threads while they are reading/writing.

Other solution is to use memory mapped files (mmapFileEnable()). Perhaps they are not affected by this

https://github.com/jankotek/MapDB/issues/384#issuecomment-68485183

Quote
I would recommend to use mmap files as
alternative to prevent this.

Also make sure that no thread is being
interrupted while doing IO. That would close
FileChannel


mmapFileEnable
Quote
public DBMakerT mmapFileEnable()
Enables Memory Mapped Files, much faster storage option. However on 32bit JVM this mode could corrupt your DB thanks to 4GB memory addressing limit.

You may experience java.lang.OutOfMemoryError: Map failed exception on 32bit JVM, if you enable this mode.

mmapFileEnableIfSupported
Quote
public DBMakerT mmapFileEnableIfSupported()
Enable Memory Mapped Files only if current JVM supports it (is 64bit)


I have also asked MapDB founder about that and he told me to check MapDB Code for thread interrupts.

Also a new version of MapDB has been released

delulo
Sr. Member
****
Offline Offline

Activity: 441
Merit: 250


View Profile
February 23, 2015, 07:42:44 PM
 #807

I'd like to know about the mechanics / incentives structures of the Qora POS. Any documentation about it?

Quote from: qora
A Proof-of-Stake algorithm that is different from anything that is described here https://en.bitcoin.it/wiki/Proof_of_Stake.

The algorithm will allow accounts to start generating blocks after only 10 confirmations.
Each account will also know at exactly which point they will generate the next block.
Source
That is a little little Smiley
Is there not more information?
Vrontis
Sr. Member
****
Offline Offline

Activity: 351
Merit: 250



View Profile WWW
February 23, 2015, 08:53:34 PM
 #808

I'd like to know about the mechanics / incentives structures of the Qora POS. Any documentation about it?

Quote from: qora
A Proof-of-Stake algorithm that is different from anything that is described here https://en.bitcoin.it/wiki/Proof_of_Stake.

The algorithm will allow accounts to start generating blocks after only 10 confirmations.
Each account will also know at exactly which point they will generate the next block.
Source
That is a little little Smiley
Is there not more information?

Below are quoted all that I have found from the dev about POS

Quote

Quote

Quote


Quote


Also a short review from a core dev of NXT

Spent a little bit of my time on Qora sources during last weekend and even made Scala version of QORA's BlockGenerator class: https://gist.github.com/kushti/605dfe4f17d0dd75cedf (220 lines of code instead of original 400), also submitted the bug on the way: https://github.com/Qora/Qora/issues/10 . Haven't investigated forging algo in details, but that's definitely not TF. Read this epic topic about TF Smiley https://nxtforum.org/general/nxt-forging-algorithm-simulating-approach/

Qora is used on the Forging Simulation Tool created for the Consensus research.

delulo
Sr. Member
****
Offline Offline

Activity: 441
Merit: 250


View Profile
February 23, 2015, 09:21:59 PM
 #809

I'd like to know about the mechanics / incentives structures of the Qora POS. Any documentation about it?

Quote from: qora
A Proof-of-Stake algorithm that is different from anything that is described here https://en.bitcoin.it/wiki/Proof_of_Stake.

The algorithm will allow accounts to start generating blocks after only 10 confirmations.
Each account will also know at exactly which point they will generate the next block.
Source
That is a little little Smiley
Is there not more information?

Below are quoted all that I have found from the dev about POS

Quote

Quote

Quote


Quote


Also a short review from a core dev of NXT

Spent a little bit of my time on Qora sources during last weekend and even made Scala version of QORA's BlockGenerator class: https://gist.github.com/kushti/605dfe4f17d0dd75cedf (220 lines of code instead of original 400), also submitted the bug on the way: https://github.com/Qora/Qora/issues/10 . Haven't investigated forging algo in details, but that's definitely not TF. Read this epic topic about TF Smiley https://nxtforum.org/general/nxt-forging-algorithm-simulating-approach/

Qora is used on the Forging Simulation Tool created for the Consensus research.
Seem like you got everything out you could Smiley Thanks for the info!
Vrontis
Sr. Member
****
Offline Offline

Activity: 351
Merit: 250



View Profile WWW
February 23, 2015, 09:30:09 PM
 #810

Seem like you got everything out you could Smiley Thanks for the info!

I am not able to read and understand the POS from the source code.
If anyone is capable enough it would be great to have a review.

calvinstm
Full Member
***
Offline Offline

Activity: 229
Merit: 101


View Profile
February 23, 2015, 10:24:55 PM
 #811

Seem like you got everything out you could Smiley Thanks for the info!

Sorry, but currently there is no documentation for Qora's forging algorithm.  However, like what Vrontis said, the best place to start is Qora's Block Generator (BlockGenerator.java).  Half way through the code, you will see how the new block is generated.  Smiley  I think someone should definitely write a paper on that!  Grin
calvinstm
Full Member
***
Offline Offline

Activity: 229
Merit: 101


View Profile
February 23, 2015, 10:44:24 PM
 #812

I have also asked MapDB founder about that and he told me to check MapDB Code for thread interrupts.

Also a new version of MapDB has been released


Nice job! Thanks for doing this!  Grin


Okay, I just wanna quickly summarize and tell you what we need to do here:

1. We need to come up with a new workaround that does NOT involve the use of Memory Mapped Files since Memory Mapped Files only works on 64-bit system.  Using MMF is not an option since we need qora to work on all systems including 32-bit.  We need to find out what's causing the thread to get interrupted before all file I/O operations are completed.

rlh's comment got me thinking, and I think that it's possible the client does not exit cleanly (FC was closed while the changes to database were not fully committed).  Since I've only run Qora on 64-bit machines, it's difficult for me to replicate Poloniex's problems and do a debug.  Someone definitely needs to follow up on this and identify which calls are causing the problems.

2.  I hope we can incorporate the following changes before we roll out the next version of Qora wallet - 1) Skerberus' Installer, 2) MMF workaround (for 32-bit system' sake), 3) the new Wallet design Pondsea was working on, 4) encoding method as suggested by deMap.

Keep up the good work, guys!  Grin
Tuck Fheman
Sr. Member
****
Offline Offline

Activity: 363
Merit: 250


View Profile WWW
February 23, 2015, 11:22:22 PM
 #813


FWIW, if anyone's selling I know of a few lurkers looking to buy right now. Post here and I'm sure they'll respond.

PondSea
Legendary
*
Offline Offline

Activity: 1428
Merit: 1000


View Profile
February 24, 2015, 02:28:24 AM
 #814

I have also asked MapDB founder about that and he told me to check MapDB Code for thread interrupts.

Also a new version of MapDB has been released


Nice job! Thanks for doing this!  Grin


Okay, I just wanna quickly summarize and tell you what we need to do here:

1. We need to come up with a new workaround that does NOT involve the use of Memory Mapped Files since Memory Mapped Files only works on 64-bit system.  Using MMF is not an option since we need qora to work on all systems including 32-bit.  We need to find out what's causing the thread to get interrupted before all file I/O operations are completed.

rlh's comment got me thinking, and I think that it's possible the client does not exit cleanly (FC was closed while the changes to database were not fully committed).  Since I've only run Qora on 64-bit machines, it's difficult for me to replicate Poloniex's problems and do a debug.  Someone definitely needs to follow up on this and identify which calls are causing the problems.

2.  I hope we can incorporate the following changes before we roll out the next version of Qora wallet - 1) Skerberus' Installer, 2) MMF workaround (for 32-bit system' sake), 3) the new Wallet design Pondsea was working on, 4) encoding method as suggested by deMap.

Keep up the good work, guys!  Grin


Vrontis has a copy of the wallet design Smiley





░░░░░░░░░▀▀▀█████████
░░░░░░░░░░░░░░░████████
░░░░▄███████▄░░░░████████
░░░░███████████░░░░██████
░░░▀███████████░░░░████░░
███▄░░░░░░░░░░▀████░░░███░░██
█████▄▄▄▄▄▄▄▄▄▄▄████░░░██░░██
█████████████▄░░████░░░░░
░░█████████████░░█████
░░░░█████████▀░░░██████▌
░░░░░░░▀▀▀▀░░░░▄████████▌
░░░░░░░░░░▄▄▄▄███████
SuperNET.org
..BarterDEX..
.
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
DECENTRALIZED CRYPTOCURRENCY EXCHANGE
Developed to Unite Coin Communities | ✔ SECURE ✔ FREE ✔ VISIBILITY ✔ EASY INTEGRATION |

▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

calvinstm
Full Member
***
Offline Offline

Activity: 229
Merit: 101


View Profile
February 24, 2015, 03:20:34 AM
 #815


Vrontis has a copy of the wallet design Smiley

Totally awesome!  Honestly can't wait to see what you've done with Qora client.  Wink

I, for one, am tired with the old plain wallet design.  Thanks so much for doing this for Qora!  Grin
calvinstm
Full Member
***
Offline Offline

Activity: 229
Merit: 101


View Profile
February 24, 2015, 03:26:16 AM
 #816

I'm working on adding Qora to the voting on Comkort but need to know ...

  • Is there a main website any longer?
  • Who should I list as the contact (will need email address)?

I'm going to use the forum thread if there isn't a main website now (the one linked is dead).

Update : I went ahead and listed this thread and used my email address for now.

Vote here (when active) : https://comkort.com/vote#QORA

Hi Tuck,

Thanks for creating the Qora poll.  Smiley  Unfortunately, Qora is still not in the voting list after 3 days.   Huh  Is there any news or update? Could you please follow up on that?

It'd be nice for Qora to have two primary trading sites. Comkort seems like a really good choice.

Thanks for doing this!
Tuck Fheman
Sr. Member
****
Offline Offline

Activity: 363
Merit: 250


View Profile WWW
February 24, 2015, 04:10:27 AM
 #817

Hi Tuck,

Thanks for creating the Qora poll.  Smiley  Unfortunately, Qora is still not in the voting list after 3 days.   Huh  Is there any news or update? Could you please follow up on that?

It'd be nice for Qora to have two primary trading sites. Comkort seems like a really good choice.

Thanks for doing this!


Yeah, not sure what else I can do.  Maybe the original question needs to be upvoted before they will acknowledge the vote portion(?) ... no clue.

You can vote up the original question here.

I'm hoping ShapeShift comes through, it actually sounds more promising than I was originally led to believe.

Update : I've never used hitBTC, but I contacted them today as well about adding Qora.

calvinstm
Full Member
***
Offline Offline

Activity: 229
Merit: 101


View Profile
February 24, 2015, 09:38:23 AM
Last edit: February 24, 2015, 11:41:34 AM by calvinstm
 #818


Yeah, not sure what else I can do.  Maybe the original question needs to be upvoted before they will acknowledge the vote portion(?) ... no clue.

You can vote up the original question here.

I'm hoping ShapeShift comes through, it actually sounds more promising than I was originally led to believe.

Update : I've never used hitBTC, but I contacted them today as well about adding Qora.


Thanks, Tuck.  Smiley  Just registered a new account at ComKort, but for some reason, I didn't get an activation email.  I'll definitely upvote your post when the email comes through, and I'd suggest everyone does the same. Both hitBTC and Comkort look great, and hopefully we can get at least one of them to list Qora.  Just let us know where to go if you need our votes.  Wink
Vrontis
Sr. Member
****
Offline Offline

Activity: 351
Merit: 250



View Profile WWW
February 24, 2015, 11:23:11 AM
 #819


BTW, in case you haven't been following our conversation -- the V18 Qora Client is totally stable on a 64-bit system (64-bit JVM) but will most likely crash on a 32-bit system due to a database issue.  It's not a bug, it's just that some codes need to be restructured/refactored so the file stream doesn't close unexpectedly while the application is still expected to do additional I/O.

We're waiting for someone to dig into the code and provide a workaround for it, but in the mean time, Qora is 64-bit only.

 Wink

I have tested the wallet in a low end virtual machine (32 bit Linux),  loaded 100 addresses and the wallet haven't faced any issues except the time that it was needed to load which was around 5 minutes.

calvinstm
Full Member
***
Offline Offline

Activity: 229
Merit: 101


View Profile
February 24, 2015, 11:35:09 AM
Last edit: February 24, 2015, 11:45:10 AM by calvinstm
 #820

I have tested the wallet in a low end virtual machine (32 bit Linux),  loaded 100 addresses and the wallet haven't faced any issues except the time that it was needed to load which was around 5 minutes.

Thanks, Vrontis.  Smiley  I just modified my post.  The truth is Qora client has always been very stable for me since beginning, and I've never encountered any problem others mentioned. I don't know if it has to do with the fact that I've only run Qora on 64-bit windows based system or not.

In any case, I realized I wasn't qualified to say anything since I wasn't able to replicate Polo's errors.  Apologize for the confusion and possibly misleading statement.

I think I'll shut up now and leave this matter in your capable hands.  Wink
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 [41] 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!