From 3c408e33d3533e12dae65347e1b69a4e035c0cea Mon Sep 17 00:00:00 2001 From: evan-forbes Date: Tue, 14 Nov 2023 16:12:18 +0100 Subject: [PATCH 1/3] chore: lower the default mempool min gas price --- pkg/appconsts/initial_consts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/appconsts/initial_consts.go b/pkg/appconsts/initial_consts.go index 7f98e7481d..928477414c 100644 --- a/pkg/appconsts/initial_consts.go +++ b/pkg/appconsts/initial_consts.go @@ -20,7 +20,7 @@ const ( // DefaultMinGasPrice is the default min gas price that gets set in the app.toml file. // The min gas price acts as a filter. Transactions below that limit will not pass // a nodes `CheckTx` and thus not be proposed by that node. - DefaultMinGasPrice = 0.1 + DefaultMinGasPrice = 0.01 // DefaultUnbondingTime is the default time a validator must wait // to unbond in a proof of stake system. Any validator within this From eec84a1edccdfc20f10ab9ccedb13cb53956fac0 Mon Sep 17 00:00:00 2001 From: evan-forbes Date: Tue, 14 Nov 2023 16:45:57 +0100 Subject: [PATCH 2/3] chore: fix hardcoded test --- app/default_overrides_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/default_overrides_test.go b/app/default_overrides_test.go index 159a4eed8f..8cb59571ce 100644 --- a/app/default_overrides_test.go +++ b/app/default_overrides_test.go @@ -62,7 +62,7 @@ func TestDefaultAppConfig(t *testing.T) { assert.Equal(t, uint64(1500), cfg.StateSync.SnapshotInterval) assert.Equal(t, uint32(2), cfg.StateSync.SnapshotKeepRecent) - assert.Equal(t, "0.1utia", cfg.MinGasPrices) + assert.Equal(t, "0.01utia", cfg.MinGasPrices) } func TestDefaultConsensusConfig(t *testing.T) { From 6933d286165f081308df93a8ff6e3d86b7c8c7ff Mon Sep 17 00:00:00 2001 From: evan-forbes Date: Mon, 20 Nov 2023 05:45:16 -0600 Subject: [PATCH 3/3] chore: lower the fee further to .002utia --- app/default_overrides_test.go | 2 +- pkg/appconsts/initial_consts.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/default_overrides_test.go b/app/default_overrides_test.go index 8cb59571ce..7728dc8375 100644 --- a/app/default_overrides_test.go +++ b/app/default_overrides_test.go @@ -62,7 +62,7 @@ func TestDefaultAppConfig(t *testing.T) { assert.Equal(t, uint64(1500), cfg.StateSync.SnapshotInterval) assert.Equal(t, uint32(2), cfg.StateSync.SnapshotKeepRecent) - assert.Equal(t, "0.01utia", cfg.MinGasPrices) + assert.Equal(t, "0.002utia", cfg.MinGasPrices) } func TestDefaultConsensusConfig(t *testing.T) { diff --git a/pkg/appconsts/initial_consts.go b/pkg/appconsts/initial_consts.go index 928477414c..c74cc2ebaf 100644 --- a/pkg/appconsts/initial_consts.go +++ b/pkg/appconsts/initial_consts.go @@ -20,7 +20,7 @@ const ( // DefaultMinGasPrice is the default min gas price that gets set in the app.toml file. // The min gas price acts as a filter. Transactions below that limit will not pass // a nodes `CheckTx` and thus not be proposed by that node. - DefaultMinGasPrice = 0.01 + DefaultMinGasPrice = 0.002 // DefaultUnbondingTime is the default time a validator must wait // to unbond in a proof of stake system. Any validator within this