forked from velas/velas-chain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(evm-utils/evm-state): connect to fast_rlp feature part 4
[ ] merge [pull request: < fast-rlp >](velas#443) ├── [ ] merge [pull request: < triedb | fast-rlp >](velas/triedb#51) └── [ ] make minimal changes to make velas-chain compile with both libs used ├── [✓] __evm-utils/evm-state/src/types.rs__: │ ├── [✓] `Account` │ │ ├── [✓] `Encodable` stub, `Decodable` stub │ │ ├── [✓] actual impl │ │ │ └── [✓] roundtrip test │ │ └── [✓] move old impl to #[cfg(test)] │ └── [✓] `EthereumReceipt` │ ├── [✓] `Encodable` stub, `Decodable` stub │ ├── [✓] roundtrip test │ ├── [✓] move old impl to #[cfg(test)] │ └── [✓] nested │ ├── [✓] `ethbloom::Bloom` │ │ ├── [✓] `Encodable` stub, `Decodable` stub │ │ ├── [✓] nested │ │ └── [✓] roundtrip test │ └── [✓] `ethereum::Log` │ ├── [✓] `Encodable` stub, `Decodable` stub │ ├── [✓] nested │ └── [✓] roundtrip test └── [ ] __evm-utils/evm-state/src/transactions.rs__: └── [✓] `TransactionInReceipt` ├── [✓] `Encodable` stub, `Decodable` stub ├── [✓] roundtrip test │ └── [✓] split roundtrip test in 3 ├── [ ] move old impl to #[cfg(test)] └── [ ] nested ├── [✓] `Transaction` │ ├── [✓] `Encodable` stub, `Decodable` stub │ ├── [✓] roundtrip test │ ├── [ ] move old impl to #[cfg(test)] │ └── [ ] nested │ └── [✓] `TransactionAction` │ ├── [✓] `Encodable` stub, `Decodable` stub │ └── [✓] nested └── [✓] `UnsignedTransactionWithCaller` ├── [✓] `Encodable` stub, `Decodable` stub ├── [✓] roundtrip test ├── [ ] move old impl to #[cfg(test)] └── [ ] nested └── [✓] `UnsignedTransaction` ├── [✓] `Encodable` stub, `Decodable` stub ├── [✓] roundtrip test ├── [✓] move old impl to #[cfg(test)] ├── [✓] return derived `Encodable`, `Decodable` impl └── [✓] nested └── [✓] `TransactionAction` ├── [✓] `Encodable` stub, `Decodable` stub ├── [✓] roundtrip test └── [ ] move old impl to #[cfg(test)]
- Loading branch information
dj8yf0μl
committed
Apr 27, 2023
1 parent
f270c7b
commit 48bd65b
Showing
2 changed files
with
249 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters