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
@@ -460,11 +460,16 @@ var (
460
460
Usage: "Time interval to recreate the block being mined",
461
461
Value: ethconfig.Defaults.Miner.Recommit,
462
462
}
463
-
MinerMaxMergedBundles= cli.IntFlag{
463
+
MinerMaxMergedBundlesFlag= cli.IntFlag{
464
464
Name: "miner.maxmergedbundles",
465
465
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.",
466
466
Value: 3,
467
467
}
468
+
MinerTrustedRelaysFlag= cli.StringFlag{
469
+
Name: "miner.trustedrelays",
470
+
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