Skip to content

Commit

Permalink
minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
j-s-n committed Dec 21, 2024
1 parent 812edf0 commit a393e8a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
4 changes: 1 addition & 3 deletions ironfish-cli/src/commands/wallet/multisig/dkg/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -274,9 +274,7 @@ export class DkgCreateCommand extends IronfishCommand {
return foundIdentity
}

const created = await client.wallet.multisig.createParticipant({
name,
})
const created = await client.wallet.multisig.createParticipant({ name })
return { name, identity: created.content.identity }
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export class MultisigIdentityCreate extends IronfishCommand {
}

let identity

if (flags.ledger) {
identity = await this.getIdentityFromLedger()
}
Expand All @@ -50,9 +49,7 @@ export class MultisigIdentityCreate extends IronfishCommand {
identity: identity.toString('hex'),
})
} else {
response = await client.wallet.multisig.createParticipant({
name,
})
response = await client.wallet.multisig.createParticipant({ name })
}
} catch (e) {
if (
Expand Down
2 changes: 1 addition & 1 deletion ironfish/src/migrations/data/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ export const MIGRATIONS = [
Migration030,
Migration031,
Migration032,
Migration032,
Migration033,
]

0 comments on commit a393e8a

Please sign in to comment.