From 27f72147535cf0ae53a7a5178bad5a86b2b5226a Mon Sep 17 00:00:00 2001 From: Trubnikov Sergey Date: Mon, 24 Oct 2022 21:43:48 +0000 Subject: [PATCH] feat: Add AbiWrite support for vec with dynamic type --- --- a/crates/evm-coder/Cargo.toml +++ b/crates/evm-coder/Cargo.toml @@ -14,7 +14,7 @@ sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" } frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" } # Error types for execution -evm-core = { default-features = false , git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.30" } +evm-core = { default-features = false, git = "https://github.com/uniquenetwork/evm", branch = "unique-polkadot-v0.9.30" } # We have tuple-heavy code in solidity.rs impl-trait-for-tuples = "0.2.2" @@ -27,4 +27,9 @@ [features] default = ["std"] -std = ["ethereum/std", "primitive-types/std", "evm-core/std", "frame-support/std"] +std = [ + "ethereum/std", + "primitive-types/std", + "evm-core/std", + "frame-support/std", +] -- gitstuff