mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-12 15:03:45 +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,
|
NoLocals: false,
|
||||||
Journal: "",
|
Journal: "",
|
||||||
Rejournal: 1 * time.Hour,
|
Rejournal: 1 * time.Hour,
|
||||||
PriceLimit: 30000000000,
|
PriceLimit: 1,
|
||||||
PriceBump: 10,
|
PriceBump: 10,
|
||||||
AccountSlots: 16,
|
AccountSlots: 16,
|
||||||
GlobalSlots: 32768,
|
GlobalSlots: 32768,
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ func TestConfigLegacy(t *testing.T) {
|
||||||
NoLocals: false,
|
NoLocals: false,
|
||||||
Journal: "",
|
Journal: "",
|
||||||
Rejournal: 1 * time.Hour,
|
Rejournal: 1 * time.Hour,
|
||||||
PriceLimit: 30000000000,
|
PriceLimit: 1,
|
||||||
PriceBump: 10,
|
PriceBump: 10,
|
||||||
AccountSlots: 16,
|
AccountSlots: 16,
|
||||||
GlobalSlots: 32768,
|
GlobalSlots: 32768,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue