Skip to content

Commit

Permalink
[ABW-2603] Fix bug where accounts where accidentally marked 'Legacy' …
Browse files Browse the repository at this point in the history
…even though… (#921)
  • Loading branch information
CyonAlexRDX committed Nov 21, 2023
1 parent a08f575 commit f34417e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ extension AccountWithInfoHolder {
set { accountWithInfo.account = newValue }
}

public var isLegacyAccount: Bool { accountWithInfo.isLedgerAccount }
public var isLegacyAccount: Bool { accountWithInfo.isLegacyAccount }
public var isLedgerAccount: Bool { accountWithInfo.isLedgerAccount }
public var isDappDefinitionAccount: Bool {
get { accountWithInfo.isDappDefinitionAccount }
Expand Down

0 comments on commit f34417e

Please sign in to comment.