Skip to content

Commit

Permalink
Treat EthImplicit as implicit
Browse files Browse the repository at this point in the history
  • Loading branch information
staffik committed Nov 3, 2023
1 parent d3b440e commit 07bf40f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/account_id_ref.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}
Expand Down

0 comments on commit 07bf40f

Please sign in to comment.