We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bbc460 commit 2455b4eCopy full SHA for 2455b4e
1 file changed
packages/wallet/core/src/wallet.ts
@@ -498,7 +498,7 @@ export class Wallet {
498
options?: {
499
space?: bigint
500
noConfigUpdate?: boolean
501
- noMigration?: boolean
+ noPendingMigrations?: boolean
502
unsafe?: boolean
503
},
504
): Promise<Envelope.Envelope<Payload.Calls>> {
@@ -526,7 +526,7 @@ export class Wallet {
526
// If the latest configuration does not match the onchain configuration, we bundle the update into the transaction envelope
527
// Same for pending migrations
528
const status = await this.getStatus(provider)
529
- this.requireV3Wallet(status)
+ this.requireV3Wallet(status, options?.noPendingMigrations)
530
531
if (!options?.noConfigUpdate) {
532
if (status.imageHash !== status.onChainImageHash) {
0 commit comments