Skip to content

Commit

Permalink
fix(relayer): Relayer paid gas (#14748)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey authored and KorbinianK committed Sep 28, 2023
1 parent 53f89ca commit e7cebee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/relayer/processor/estimate_gas.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ func (p *Processor) estimateGas(

slog.Info("estimated gas", "gas", tx.Gas(), "paddingAmt", gasPaddingAmt)

return tx.Gas() + gasPaddingAmt, nil
return tx.Gas() + gasPaddingAmt, tx.Cost(), nil
}

0 comments on commit e7cebee

Please sign in to comment.