From 1f7b46c2c0a773d51414eb25aa829ed596ab4f56 Mon Sep 17 00:00:00 2001 From: Tim Flynn Date: Thu, 2 Feb 2017 03:51:02 -0500 Subject: [PATCH] Restore 5 Dash fee for proposal creation (#1302) --- 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 b8e8b3144..fb6c9fa98 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 = (0.33*COIN); +static const CAmount GOVERNANCE_PROPOSAL_FEE_TX = (5.0*COIN); static const int64_t GOVERNANCE_FEE_CONFIRMATIONS = 6; static const int64_t GOVERNANCE_UPDATE_MIN = 60*60;