From 728cc7a7976a1861be3f7c159f80a5b3abb482d2 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Mon, 22 Jul 2013 18:36:09 -0700 Subject: [PATCH] Raise fees faster. --- modules/ripple_core/functional/ripple_LoadFeeTrack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ripple_core/functional/ripple_LoadFeeTrack.h b/modules/ripple_core/functional/ripple_LoadFeeTrack.h index db69e8e42..6c3398cab 100644 --- a/modules/ripple_core/functional/ripple_LoadFeeTrack.h +++ b/modules/ripple_core/functional/ripple_LoadFeeTrack.h @@ -200,7 +200,7 @@ private: private: static const int lftNormalFee = 256; // 256 is the minimum/normal load factor - static const int lftFeeIncFraction = 16; // increase fee by 1/16 + static const int lftFeeIncFraction = 4; // increase fee by 1/4 static const int lftFeeDecFraction = 4; // decrease fee by 1/4 static const int lftFeeMax = lftNormalFee * 1000000;