From e9ed73ca1ab64a118d4600d231b2b25b4653532e Mon Sep 17 00:00:00 2001 From: breakcrypto <35466877+breakcrypto@users.noreply.github.com> Date: Fri, 26 Jan 2018 11:23:40 -0500 Subject: [PATCH] Change the proposal fee from 5 to 5000 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 a23ccd498633..c971e479a541 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;