fix(core): removed Cronos mainnet beta from `is_legacy` (#1246)

it now supports EIP1559 after the network upgrade at the height 2693800
This commit is contained in:
Tomas Tauber 2022-05-10 23:31:28 +08:00 committed by GitHub
parent 790550c1e5
commit 0926ead2bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -4,6 +4,7 @@
### Unreleased
- Removed Cronos mainnet beta from `is_legacy` [1246](https://github.com/gakonst/ethers-rs/pull/1246)
- Fix RLP decoding of `from` field for `Eip1559TransactionRequest` and
`Eip2930TransactionRequest`, remove `Eip1559TransactionRequest` `sighash`
method [1180](https://github.com/gakonst/ethers-rs/pull/1180)

View File

@ -176,8 +176,7 @@ impl Chain {
Chain::BinanceSmartChain |
Chain::BinanceSmartChainTestnet |
Chain::Arbitrum |
Chain::ArbitrumTestnet |
Chain::Cronos,
Chain::ArbitrumTestnet,
)
}
}