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
@@ -84,7 +84,7 @@ type (
84
84
GasPriceMultiplier*float64
85
85
SendingAddressCount*uint64
86
86
AddressFundingAmount*uint64
87
-
FundSendingAddressesOnDemand*bool
87
+
PreFundSendingAddresses*bool
88
88
89
89
// Computed
90
90
CurrentGasPrice*big.Int
@@ -247,7 +247,7 @@ func initFlags() {
247
247
ltp.BlobFeeCap=LoadtestCmd.Flags().Uint64("blob-fee-cap", 100000, "The blob fee cap, or the maximum blob fee per chunk, in Gwei.")
248
248
ltp.SendingAddressCount=LoadtestCmd.Flags().Uint64("sending-address-count", 1, "The number of sending addresses to use. This is useful for avoiding pool account queue.")
249
249
ltp.AddressFundingAmount=LoadtestCmd.Flags().Uint64("address-funding-amount", 1000000000000000000, "The amount in gwei to fund the sending addresses with.")
250
-
ltp.FundSendingAddressesOnDemand=LoadtestCmd.Flags().Bool("fund-sending-addresses-on-demand", true, "If set to true, the sending addresses will be funded when used for the first time, otherwise all addresses will be fund at the start of the execution.")
250
+
ltp.PreFundSendingAddresses=LoadtestCmd.Flags().Bool("pre-fund-sending-addresses", false, "If set to true, the sending addresses will be fund at the start of the execution, otherwise all addresses will be funded when used for the first time.")
251
251
252
252
// Local flags.
253
253
ltp.Modes=LoadtestCmd.Flags().StringSliceP("mode", "m", []string{"t"}, `The testing mode to use. It can be multiple like: "c,d,f,t"
0 commit comments