diff --git a/consensus/taiko/consensus.go b/consensus/taiko/consensus.go index 1e777a8ed758..d0ea3e2c5e71 100644 --- a/consensus/taiko/consensus.go +++ b/consensus/taiko/consensus.go @@ -218,10 +218,7 @@ func (t *Taiko) Finalize(chain consensus.ChainHeaderReader, header *types.Header header.Difficulty = common.Big0 // Withdrawals processing. for _, w := range withdrawals { - // Convert amount from gwei to wei. - amount := new(big.Int).SetUint64(w.Amount) - amount = amount.Mul(amount, big.NewInt(params.GWei)) - state.AddBalance(w.Address, amount) + state.AddBalance(w.Address, new(big.Int).SetUint64(w.Amount)) } header.Root = state.IntermediateRoot(true) }