Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
nelitow committed Dec 21, 2024
1 parent cd9c2a9 commit dd8c22f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app/src/systems/Core/utils/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ export class WalletLockedCustom extends WalletLocked {
await this.populateTransactionWitnessesSignature(transactionRequest);

await this.simulateTransaction(txRequestToSend, {
estimateTxDependencies: params?.estimateTxDependencies ?? false,
estimateTxDependencies: false,
});
return this.provider.sendTransaction(txRequestToSend, {
estimateTxDependencies: params?.estimateTxDependencies ?? false,
estimateTxDependencies: false,
});
}
}

0 comments on commit dd8c22f

Please sign in to comment.