Skip to content

Commit

Permalink
cmd/livepeer: Update help desc for gas price flags
Browse files Browse the repository at this point in the history
Mention gas price is treated as priority fee + base fee now
  • Loading branch information
yondonfu committed Sep 30, 2021
1 parent 05da3f2 commit 57e985c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/livepeer/livepeer.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ func main() {
txTimeout := flag.Duration("transactionTimeout", 5*time.Minute, "Amount of time to wait for an Ethereum transaction to confirm before timing out")
maxTxReplacements := flag.Int("maxTransactionReplacements", 1, "Number of times to automatically replace pending Ethereum transactions")
gasLimit := flag.Int("gasLimit", 0, "Gas limit for ETH transactions")
minGasPrice := flag.Int64("minGasPrice", 0, "Minimum gas price for ETH transactions in wei, 10 Gwei = 10000000000")
maxGasPrice := flag.Int("maxGasPrice", 0, "Maximum gas price for ETH transactions in wei, 40 Gwei = 40000000000")
minGasPrice := flag.Int64("minGasPrice", 0, "Minimum gas price (priority fee + base fee) for ETH transactions in wei, 10 Gwei = 10000000000")
maxGasPrice := flag.Int("maxGasPrice", 0, "Maximum gas price (priority fee + base fee) for ETH transactions in wei, 40 Gwei = 40000000000")
ethController := flag.String("ethController", "", "Protocol smart contract address")
initializeRound := flag.Bool("initializeRound", false, "Set to true if running as a transcoder and the node should automatically initialize new rounds")
ticketEV := flag.String("ticketEV", "1000000000000", "The expected value for PM tickets")
Expand Down

0 comments on commit 57e985c

Please sign in to comment.