Skip to content

Commit

Permalink
Merge pull request ethereum#20 from OffchainLabs/fix-tx-type-numbers
Browse files Browse the repository at this point in the history
Fix Arbitrum transaction type numbers
  • Loading branch information
PlasmaPower authored Dec 14, 2021
2 parents 9c54751 + 84a3591 commit c4b5b25
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/types/transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ const (
LegacyTxType = iota
AccessListTxType
DynamicFeeTxType
ArbitrumDepositTxType = 200
ArbitrumUnsignedTxType = 201
ArbitrumContractTxType = 202
ArbitrumWrappedTxType = 203
ArbitrumDepositTxType = 100
ArbitrumUnsignedTxType = 101
ArbitrumContractTxType = 102
ArbitrumWrappedTxType = 103
)

// Transaction is an Ethereum transaction.
Expand Down

0 comments on commit c4b5b25

Please sign in to comment.