mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Fix bug with wrong order of tx inputs
This commit is contained in:
parent
b6408d70e4
commit
808d56470a
1 changed files with 1 additions and 1 deletions
|
@ -389,7 +389,7 @@ public class TradeWalletService {
|
|||
}
|
||||
|
||||
// Sign inputs
|
||||
int start = offererIsBuyer ? 0 : offererInputs.size();
|
||||
int start = offererIsBuyer ? 0 : takerRawTransactionInputs.size();
|
||||
int end = offererIsBuyer ? offererInputs.size() : preparedDepositTx.getInputs().size();
|
||||
for (int i = start; i < end; i++) {
|
||||
TransactionInput input = preparedDepositTx.getInput(i);
|
||||
|
|
Loading…
Add table
Reference in a new issue