From e5aee8255e7c2f11a47b08c986f46b68947cd1ca Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Mon, 03 Oct 2022 11:09:37 +0000 Subject: [PATCH] fix: use fully qualified path in evm-coder --- --- a/crates/evm-coder/procedural/src/solidity_interface.rs +++ b/crates/evm-coder/procedural/src/solidity_interface.rs @@ -1126,7 +1126,7 @@ #weight_variants, )* // TODO: It should be very cheap, but not free - Self::ERC165Call(::evm_coder::ERC165Call::SupportsInterface {..}, _) => frame_support::weights::Weight::from_ref_time(100).into(), + Self::ERC165Call(::evm_coder::ERC165Call::SupportsInterface {..}, _) => ::frame_support::weights::Weight::from_ref_time(100).into(), #( #weight_variants_this, )* -- gitstuff