Merge pull request #502 from maticnetwork/shivam/txpool-pricelimit

Changing default txpool pricelimit to 1
This commit is contained in:
SHIVAM SHARMA 2022-08-24 10:47:53 +05:30 committed by GitHub
commit 95f551eccc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -425,7 +425,7 @@ func DefaultConfig() *Config {
NoLocals: false,
Journal: "",
Rejournal: 1 * time.Hour,
PriceLimit: 30000000000,
PriceLimit: 1,
PriceBump: 10,
AccountSlots: 16,
GlobalSlots: 32768,

View file

@ -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,