mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 11:39:22 +00:00
fix send all (#1766)
* shouldn't matter, but still investigating why this fixes it * got it, but this change is just for consistency [skip ci]
This commit is contained in:
parent
20efba43cb
commit
3898208a6a
1 changed files with 2 additions and 2 deletions
|
@ -1063,7 +1063,7 @@ abstract class ElectrumWalletBase
|
|||
|
||||
if (sendAll) {
|
||||
estimatedTx = await estimateSendAllTx(
|
||||
outputs,
|
||||
updatedOutputs,
|
||||
feeRateInt,
|
||||
memo: memo,
|
||||
credentialsAmount: credentialsAmount,
|
||||
|
@ -1115,7 +1115,7 @@ abstract class ElectrumWalletBase
|
|||
if (network is BitcoinCashNetwork) {
|
||||
txb = ForkedTransactionBuilder(
|
||||
utxos: estimatedTx.utxos,
|
||||
outputs: outputs,
|
||||
outputs: updatedOutputs,
|
||||
fee: BigInt.from(estimatedTx.fee),
|
||||
network: network,
|
||||
memo: estimatedTx.memo,
|
||||
|
|
Loading…
Reference in a new issue