mirror of
https://github.com/dashpay/dash.git
synced 2024-12-29 13:59:06 +01:00
fixed splitting for big wallets
This commit is contained in:
parent
c266d57a2a
commit
03ccdadf52
@ -7275,6 +7275,7 @@ bool CDarkSendPool::SplitUpMoney(bool justCollateral)
|
|||||||
|
|
||||||
int64 a = nTotalBalance/5;
|
int64 a = nTotalBalance/5;
|
||||||
if(a > 900*COIN) a = 900*COIN;
|
if(a > 900*COIN) a = 900*COIN;
|
||||||
|
if(a > nAnonymizeDarkcoinAmount*COIN) a = nAnonymizeDarkcoinAmount*COIN;
|
||||||
|
|
||||||
LogPrintf(" auto-- split amount %"PRI64d"\n", a);
|
LogPrintf(" auto-- split amount %"PRI64d"\n", a);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user