forked from rust-ethereum/evm
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: Refactore transact_create functions (#66)
* Refactored access-list warm for transact_create functions * Fix create_fixed * Return vectors to access_list * Set v0.46.1 version * Extend CI lints
- Loading branch information
Showing
4 changed files
with
35 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,10 +9,10 @@ keywords.workspace = true | |
edition.workspace = true | ||
|
||
[workspace.dependencies] | ||
evm = { version = "0.46.0", path = "." } | ||
evm-core = { version = "0.46.0", path = "core", default-features = false } | ||
evm-gasometer = { version = "0.46.0", path = "gasometer", default-features = false } | ||
evm-runtime = { version = "0.46.0", path = "runtime", default-features = false } | ||
evm = { version = "0.46.1", path = "." } | ||
evm-core = { version = "0.46.1", path = "core", default-features = false } | ||
evm-gasometer = { version = "0.46.1", path = "gasometer", default-features = false } | ||
evm-runtime = { version = "0.46.1", path = "runtime", default-features = false } | ||
primitive-types = { version = "0.12", default-features = false } | ||
auto_impl = "1.0" | ||
sha3 = { version = "0.10", default-features = false } | ||
|
@@ -88,7 +88,7 @@ create-fixed = [] | |
print-debug = ["evm-gasometer/print-debug"] | ||
|
||
[workspace.package] | ||
version = "0.46.0" | ||
version = "0.46.1" | ||
license = "Apache-2.0" | ||
authors = ["Aurora Labs <[email protected]>", "Wei Tang <[email protected]>", "Parity Technologies <[email protected]>"] | ||
description = "Portable Ethereum Virtual Machine implementation written in pure Rust." | ||
|
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