Post
Topic
Board Announcements (Altcoins)
Re: [ANN][SUPERCOIN] Mandatory Upgrade V.3.1.1 or V.1.6.1
by
mullick
on 08/09/2014, 17:29:39 UTC
I've mentioned Forging issues previously and received no reply. Forging works successfully, but each day the number of transactions doubles and the amount of stake halves for each transaction. The total amount of reward remains steady, but the fragmentation will surely lead to more blockchain issues if it continues indefinitely.
Yes, this also leads to the wallet being slower, and will make sending large amounts complicated as you'll exceed transaction size limits when gathering small inputs.

Ideally the staking should merge back outputs to keep things under control.

This can be fixed with a simple update to the qt. For you savvy users you can patch your own qt/daemon

Simply change line 20 of wallet.cpp to whatever you wish

Code:
int64_t nStakeCombineThreshold = 1000 * COIN;

As it is now. I will combine any inputs created by POS transactions less that 1000 coins into larger ones.

Example 1:

You have a 1000 coin input. When it stakes you will get a 1001 coin input back or whatever the reward you get it

Example 2:

If you have a 10000 coin input when it stake it will be broken into 2 inputs of 5001 each. Or whatever the reward is

Example 3:

You have 100 inputs of 10 coins each. When just one of those stake. It will combine with the rest and form a single 1000 coin transaction. But only give the reward for the 10 coins that staked



Working on getting the cryptsy wallet synced and back online. Ill keep you updated