From 2f93a0d208eebe52a7254efa9655a187852da934 Mon Sep 17 00:00:00 2001 From: CHAE-PIL LIM Date: Tue, 27 Sep 2016 16:49:45 +0900 Subject: [PATCH] V0.12.1.x - reduce IS/PS fees 10x (#1039) --- src/darksend.h | 4 ++-- src/instantx.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/darksend.h b/src/darksend.h index 0e267405477d8..8d7224e0167d6 100644 --- a/src/darksend.h +++ b/src/darksend.h @@ -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; diff --git a/src/instantx.h b/src/instantx.h index 1405c8762b443..521232f45a494 100644 --- a/src/instantx.h +++ b/src/instantx.h @@ -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;