mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +00:00
Merge pull request #502 from maticnetwork/shivam/txpool-pricelimit
Changing default txpool pricelimit to 1
This commit is contained in:
commit
95f551eccc
2 changed files with 2 additions and 2 deletions
|
|
@ -425,7 +425,7 @@ func DefaultConfig() *Config {
|
|||
NoLocals: false,
|
||||
Journal: "",
|
||||
Rejournal: 1 * time.Hour,
|
||||
PriceLimit: 30000000000,
|
||||
PriceLimit: 1,
|
||||
PriceBump: 10,
|
||||
AccountSlots: 16,
|
||||
GlobalSlots: 32768,
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue