Skip to content

Commit

Permalink
Merge pull request ethereum#100 from OffchainLabs/missing-copy
Browse files Browse the repository at this point in the history
L1RequestId missing from copy
  • Loading branch information
yahgwai authored May 24, 2022
2 parents e0392f3 + 0365582 commit d56aba4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions core/types/arb_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -312,9 +312,10 @@ func (d *ArbitrumDepositTx) txType() byte {

func (d *ArbitrumDepositTx) copy() TxData {
tx := &ArbitrumDepositTx{
ChainId: new(big.Int),
To: d.To,
Value: new(big.Int),
ChainId: new(big.Int),
L1RequestId: d.L1RequestId,
To: d.To,
Value: new(big.Int),
}
if d.ChainId != nil {
tx.ChainId.Set(d.ChainId)
Expand Down

0 comments on commit d56aba4

Please sign in to comment.