From bfc4631c54cf68b5e73dd8d224688807cf143f40 Mon Sep 17 00:00:00 2001 From: breakcrypto <35466877+breakcrypto@users.noreply.github.com> Date: Fri, 26 Jan 2018 12:07:13 -0500 Subject: [PATCH] Change the proposal fee from 5 to 5000 (#3) The original DASH fee is 5 DASH which is 0.5% of the Masternode rate. Staying in proportion, that would be 2500 $PAC, but 5000 $PAC seems the more reasonable choice. It will limit the number of proposals which reduces network noise and the need for masternodes to vote in a regular manner. --- src/governance-object.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/governance-object.h b/src/governance-object.h index a23ccd498633d..c971e479a541d 100644 --- a/src/governance-object.h +++ b/src/governance-object.h @@ -34,7 +34,7 @@ static const int GOVERNANCE_OBJECT_PROPOSAL = 1; static const int GOVERNANCE_OBJECT_TRIGGER = 2; static const int GOVERNANCE_OBJECT_WATCHDOG = 3; -static const CAmount GOVERNANCE_PROPOSAL_FEE_TX = (5.0*COIN); +static const CAmount GOVERNANCE_PROPOSAL_FEE_TX = (5000.0*COIN); static const int64_t GOVERNANCE_FEE_CONFIRMATIONS = 6; static const int64_t GOVERNANCE_MIN_RELAY_FEE_CONFIRMATIONS = 1;