Skip to content

Commit

Permalink
Merge pull request #93 from leo42/Hotfix-Disable-withrawals
Browse files Browse the repository at this point in the history
Hotfix disable withrawals
  • Loading branch information
leo42 authored Dec 11, 2024
2 parents 0df9cd6 + 4ca64c7 commit f6e7556
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Fe/src/Wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ setPendingTxs(pendingTxs){
sumOfRecipientsMinusSendAll[key] = recipient.amount[key]
}
} )
}})
}})

const balance = this.getBalanceFull()

Expand Down
2 changes: 1 addition & 1 deletion Fe/src/components/Multisig/MultisigContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ async setState(state){
async createTx(recipients,signers,sendFrom, sendAll=null){
try{
const wallets = this.state.wallets
await this.state.wallets[this.state.selectedWallet].createTx(recipients,signers,sendFrom,sendAll)
await this.state.wallets[this.state.selectedWallet].createTx(recipients,signers,sendFrom,sendAll, false)

this.setState({wallets})
toast.info('Transaction created');
Expand Down

0 comments on commit f6e7556

Please sign in to comment.