Skip to content

Commit

Permalink
V0.12.1.x - reduce IS/PS fees 10x (#1039)
Browse files Browse the repository at this point in the history
  • Loading branch information
chaeplin authored and UdjinM6 committed Sep 27, 2016
1 parent 93cd369 commit 2f93a0d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/darksend.h
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/instantx.h
Expand Up @@ -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;
Expand Down

0 comments on commit 2f93a0d

Please sign in to comment.