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/loadtest/app.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,7 @@ type (
88
88
WaitForReceipt*bool
89
89
ReceiptRetryMax*uint
90
90
ReceiptRetryInitialDelayMs*uint
91
-
MaxBaseFeeGwei*uint64
91
+
MaxBaseFeeWei*uint64
92
92
93
93
// Computed
94
94
CurrentGasPrice*big.Int
@@ -252,7 +252,7 @@ func initFlags() {
252
252
ltp.PreFundSendingAccounts=LoadtestCmd.Flags().Bool("pre-fund-sending-accounts", false, "If set to true, the sending accounts will be funded at the start of the execution, otherwise all accounts will be funded when used for the first time.")
253
253
ltp.RefundRemainingFunds=LoadtestCmd.Flags().Bool("refund-remaining-funds", false, "If set to true, the funded amount will be refunded to the funding account. Otherwise, the funded amount will remain in the sending accounts.")
254
254
ltp.SendingAccountsFile=LoadtestCmd.Flags().String("sending-accounts-file", "", "The file containing the sending accounts private keys, one per line. This is useful for avoiding pool account queue but also to keep the same sending accounts for different execution cycles.")
255
-
ltp.MaxBaseFeeGwei=LoadtestCmd.Flags().Uint64("max-base-fee-gwei", 0, "The maximum base fee in gwei. If the base fee exceeds this value, sending tx will be paused and while paused, existing in-flight transactions continue to confirmation, but no additional SendTransaction calls occur. This is useful to avoid sending transactions when the network is congested.")
255
+
ltp.MaxBaseFeeWei=LoadtestCmd.Flags().Uint64("max-base-fee-wei", 0, "The maximum base fee in wei. If the base fee exceeds this value, sending tx will be paused and while paused, existing in-flight transactions continue to confirmation, but no additional SendTransaction calls occur. This is useful to avoid sending transactions when the network is congested.")
256
256
257
257
// Local flags.
258
258
ltp.Modes=LoadtestCmd.Flags().StringSliceP("mode", "m", []string{"t"}, `The testing mode to use. It can be multiple like: "d,t"
0 commit comments