Skip to content

Commit

Permalink
fix: old mvc migrate issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AricRedemption committed May 16, 2024
1 parent b864ae8 commit e3182a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/migrate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ async function migrateV2ToV3(): Promise<MigrateResult> {

const coinType = getCoinTypeFromHDPath(v2Account.mvc.path)

const mvcTypes = coinType === 10001 ? [10001] : [10001, coinType]
const mvcTypes = coinType === 10001 ? [10001] : [coinType]
const id = generateRandomString(32)

const wallet = {
Expand Down

0 comments on commit e3182a5

Please sign in to comment.