From 324187776a0fc1361d86a27557d2b89ae0551485 Mon Sep 17 00:00:00 2001 From: Shivam Sharma Date: Tue, 23 Aug 2022 18:35:24 +0530 Subject: [PATCH 1/2] chg : txpool.pricelimit to 1 --- internal/cli/server/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cli/server/config.go b/internal/cli/server/config.go index f6d34beaff..7dcc986c01 100644 --- a/internal/cli/server/config.go +++ b/internal/cli/server/config.go @@ -425,7 +425,7 @@ func DefaultConfig() *Config { NoLocals: false, Journal: "", Rejournal: 1 * time.Hour, - PriceLimit: 30000000000, + PriceLimit: 1, PriceBump: 10, AccountSlots: 16, GlobalSlots: 32768, From 057f50eb6c5c917e4010296c3c10b968d95ad12b Mon Sep 17 00:00:00 2001 From: Shivam Sharma Date: Tue, 23 Aug 2022 19:13:01 +0530 Subject: [PATCH 2/2] fix : TestConfigLegacy --- internal/cli/server/config_legacy_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cli/server/config_legacy_test.go b/internal/cli/server/config_legacy_test.go index 5834bedb7b..43263ff010 100644 --- a/internal/cli/server/config_legacy_test.go +++ b/internal/cli/server/config_legacy_test.go @@ -54,7 +54,7 @@ func TestConfigLegacy(t *testing.T) { NoLocals: false, Journal: "", Rejournal: 1 * time.Hour, - PriceLimit: 30000000000, + PriceLimit: 1, PriceBump: 10, AccountSlots: 16, GlobalSlots: 32768,