From 07bf40f374f13d86b85339cab3a646a78154bb4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Chuda=C5=9B?= Date: Fri, 3 Nov 2023 21:19:37 +0100 Subject: [PATCH] Treat EthImplicit as implicit --- src/account_id_ref.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/account_id_ref.rs b/src/account_id_ref.rs index 0d6fd7b..69951bb 100644 --- a/src/account_id_ref.rs +++ b/src/account_id_ref.rs @@ -49,8 +49,7 @@ impl AccountType { pub fn is_implicit(&self) -> bool { match &self { Self::NearImplicitAccount => true, - // TODO(eth-implicit) change to true later, see https://github.com/near/nearcore/issues/10018 - Self::EthImplicitAccount => false, + Self::EthImplicitAccount => true, Self::NamedAccount => false, } }