Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmd/livepeer: Bump redeem gas estimate to 350k #1931

Merged
merged 2 commits into from
Jun 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

#### Orchestrator

- \#1931 Bump ticket redemption gas estimate to 350k to account for occasional higher gas usage (@yondonfu)

#### Transcoder

### Bug Fixes 🐞
Expand Down
2 changes: 1 addition & 1 deletion cmd/livepeer/livepeer.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ var (
blockWatcherRetentionLimit = 20

// Estimate of the gas required to redeem a PM ticket
redeemGas = 250000
redeemGas = 350000
// The multiplier on the transaction cost to use for PM ticket faceValue
txCostMultiplier = 100

Expand Down