mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
fix nano being sent to only the first output address in list (#1198)
This commit is contained in:
parent
615d016dd5
commit
177d89b904
1 changed files with 3 additions and 3 deletions
|
@ -186,9 +186,9 @@ abstract class NanoWalletBase
|
||||||
|
|
||||||
final block = await _client.constructSendBlock(
|
final block = await _client.constructSendBlock(
|
||||||
amountRaw: amt.toString(),
|
amountRaw: amt.toString(),
|
||||||
destinationAddress: credentials.outputs.first.isParsedAddress
|
destinationAddress: txOut.isParsedAddress
|
||||||
? credentials.outputs.first.extractedAddress!
|
? txOut.extractedAddress!
|
||||||
: credentials.outputs.first.address,
|
: txOut.address,
|
||||||
privateKey: _privateKey!,
|
privateKey: _privateKey!,
|
||||||
balanceAfterTx: runningBalance,
|
balanceAfterTx: runningBalance,
|
||||||
previousHash: previousHash,
|
previousHash: previousHash,
|
||||||
|
|
Loading…
Reference in a new issue