mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
Use empty byte array for script sig
This commit is contained in:
parent
91a2def86e
commit
0b834a94f8
1 changed files with 1 additions and 1 deletions
|
@ -1113,7 +1113,7 @@ public class TradeWalletService {
|
|||
|
||||
Transaction payoutTx = new Transaction(params);
|
||||
Sha256Hash spendTxHash = Sha256Hash.wrap(depositTxHex);
|
||||
payoutTx.addInput(new TransactionInput(params, depositTx, null, new TransactionOutPoint(params, 0, spendTxHash), msOutputValue));
|
||||
payoutTx.addInput(new TransactionInput(params, depositTx, new byte[]{}, new TransactionOutPoint(params, 0, spendTxHash), msOutputValue));
|
||||
|
||||
if (buyerPayoutAmount.isPositive()) {
|
||||
payoutTx.addOutput(buyerPayoutAmount, Address.fromString(params, buyerAddressString));
|
||||
|
|
Loading…
Add table
Reference in a new issue