mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-07-29 09:48:46 -04:00
Add value to inputs
This commit is contained in:
parent
12b130cbd0
commit
32db4c0c75
1 changed files with 6 additions and 5 deletions
|
@ -703,7 +703,7 @@ public class WalletService {
|
||||||
// Add all inputs from offerer (normally its just 1 input)
|
// Add all inputs from offerer (normally its just 1 input)
|
||||||
for (TransactionOutput connectedOutputForInput : offererConnectedOutputsForAllInputs) {
|
for (TransactionOutput connectedOutputForInput : offererConnectedOutputsForAllInputs) {
|
||||||
TransactionOutPoint outPoint = new TransactionOutPoint(params, connectedOutputForInput.getIndex(), connectedOutputForInput.getParentTransaction());
|
TransactionOutPoint outPoint = new TransactionOutPoint(params, connectedOutputForInput.getIndex(), connectedOutputForInput.getParentTransaction());
|
||||||
TransactionInput transactionInput = new TransactionInput(params, depositTx, new byte[]{}, outPoint);
|
TransactionInput transactionInput = new TransactionInput(params, depositTx, new byte[]{}, outPoint, connectedOutputForInput.getValue());
|
||||||
depositTx.addInput(transactionInput);
|
depositTx.addInput(transactionInput);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -756,7 +756,7 @@ public class WalletService {
|
||||||
// Add all inputs from offerer (normally its just 1 input)
|
// Add all inputs from offerer (normally its just 1 input)
|
||||||
for (TransactionOutput connectedOutputForInput : offererConnectedOutputsForAllInputs) {
|
for (TransactionOutput connectedOutputForInput : offererConnectedOutputsForAllInputs) {
|
||||||
TransactionOutPoint outPoint = new TransactionOutPoint(params, connectedOutputForInput.getIndex(), connectedOutputForInput.getParentTransaction());
|
TransactionOutPoint outPoint = new TransactionOutPoint(params, connectedOutputForInput.getIndex(), connectedOutputForInput.getParentTransaction());
|
||||||
TransactionInput input = new TransactionInput(params, depositTx, new byte[]{}, outPoint);
|
TransactionInput input = new TransactionInput(params, depositTx, new byte[]{}, outPoint, connectedOutputForInput.getValue());
|
||||||
offererInputs.add(input);
|
offererInputs.add(input);
|
||||||
depositTx.addInput(input);
|
depositTx.addInput(input);
|
||||||
}
|
}
|
||||||
|
@ -772,7 +772,7 @@ public class WalletService {
|
||||||
TransactionInput signedInput = result.get();
|
TransactionInput signedInput = result.get();
|
||||||
Script script = signedInput.getScriptSig();
|
Script script = signedInput.getScriptSig();
|
||||||
|
|
||||||
TransactionInput transactionInput = new TransactionInput(params, depositTx, script.getProgram(), outPoint);
|
TransactionInput transactionInput = new TransactionInput(params, depositTx, script.getProgram(), outPoint, connectedOutputForInput.getValue());
|
||||||
depositTx.addInput(transactionInput);
|
depositTx.addInput(transactionInput);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -796,6 +796,7 @@ public class WalletService {
|
||||||
|
|
||||||
verifyTransaction(depositTx);
|
verifyTransaction(depositTx);
|
||||||
checkWalletConsistency();
|
checkWalletConsistency();
|
||||||
|
checkScriptSigForAllInputs(depositTx);
|
||||||
|
|
||||||
// Broadcast depositTx
|
// Broadcast depositTx
|
||||||
log.trace("Wallet balance before broadcastTransaction: " + wallet.getBalance());
|
log.trace("Wallet balance before broadcastTransaction: " + wallet.getBalance());
|
||||||
|
@ -1027,12 +1028,12 @@ public class WalletService {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* private void checkScriptSigForAllInputs(Transaction transaction) throws TransactionVerificationException {
|
private void checkScriptSigForAllInputs(Transaction transaction) throws TransactionVerificationException {
|
||||||
int inputIndex = 0;
|
int inputIndex = 0;
|
||||||
for (TransactionInput input : transaction.getInputs()) {
|
for (TransactionInput input : transaction.getInputs()) {
|
||||||
checkScriptSig(transaction, input, inputIndex);
|
checkScriptSig(transaction, input, inputIndex);
|
||||||
}
|
}
|
||||||
}*/
|
}
|
||||||
|
|
||||||
private void removeSignatures(Transaction transaction) throws InsufficientMoneyException {
|
private void removeSignatures(Transaction transaction) throws InsufficientMoneyException {
|
||||||
for (TransactionInput input : transaction.getInputs()) {
|
for (TransactionInput input : transaction.getInputs()) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue