V0.12.1.x - reduce IS/PS fees 10x (#1039)

This commit is contained in:
CHAE-PIL LIM 2016-09-27 16:49:45 +09:00 committed by UdjinM6
parent 93cd3693c2
commit 2f93a0d208
2 changed files with 3 additions and 3 deletions

View File

@ -38,8 +38,8 @@ static const int PRIVATESEND_SIGNING_TIMEOUT = 15;
//! minimum peer version accepted by DarksendPool
static const int MIN_PRIVATESEND_PEER_PROTO_VERSION = 70201;
static const CAmount PRIVATESEND_COLLATERAL = 0.01 * COIN;
static const CAmount PRIVATESEND_POOL_MAX = 999.99 * COIN;
static const CAmount PRIVATESEND_COLLATERAL = 0.001 * COIN;
static const CAmount PRIVATESEND_POOL_MAX = 999.999 * COIN;
static const int DENOMS_COUNT_MAX = 100;
static const int DEFAULT_PRIVATESEND_ROUNDS = 2;

View File

@ -29,7 +29,7 @@ static const int INSTANTSEND_SIGNATURES_TOTAL = 10;
static const int DEFAULT_INSTANTSEND_DEPTH = 5;
static const int MIN_INSTANTSEND_PROTO_VERSION = 70201;
static const CAmount INSTANTSEND_MIN_FEE = 1 * CENT;
static const CAmount INSTANTSEND_MIN_FEE = 0.1 * CENT;
extern bool fEnableInstantSend;
extern int nInstantSendDepth;