You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/utils/flags.go
+26-2Lines changed: 26 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -469,11 +469,16 @@ var (
469
469
Usage: "Time interval to recreate the block being mined",
470
470
Value: ethconfig.Defaults.Miner.Recommit,
471
471
}
472
-
MinerMaxMergedBundles= cli.IntFlag{
472
+
MinerMaxMergedBundlesFlag= cli.IntFlag{
473
473
Name: "miner.maxmergedbundles",
474
474
Usage: "flashbots - The maximum amount of bundles to merge. The miner will run this many workers in parallel to calculate if the full block is more profitable with these additional bundles.",
475
475
Value: 3,
476
476
}
477
+
MinerTrustedRelaysFlag= cli.StringFlag{
478
+
Name: "miner.trustedrelays",
479
+
Usage: "flashbots - The Ethereum addresses of trusted relays for signature verification. The miner will accept signed bundles and other tasks from the relay, being reasonably certain about DDoS safety.",
0 commit comments