Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AV-1596] Add priority regossip addresses to locals #104

Merged
merged 1 commit into from
May 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions plugin/evm/vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ func (vm *VM) Initialize(
ethConfig.RPCEVMTimeout = vm.config.APIMaxDuration.Duration
ethConfig.RPCTxFeeCap = vm.config.RPCTxFeeCap
ethConfig.TxPool.NoLocals = !vm.config.LocalTxsEnabled
ethConfig.TxPool.Locals = vm.config.PriorityRegossipAddresses
Copy link
Contributor Author

@patrick-ogrady patrick-ogrady May 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

More locals will be added during txpool exec if NoLocals=false

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ethConfig.AllowUnfinalizedQueries = vm.config.AllowUnfinalizedQueries
ethConfig.AllowUnprotectedTxs = vm.config.AllowUnprotectedTxs
ethConfig.Preimages = vm.config.Preimages
Expand Down