Good day for everyone! I have some troubles with adding signed Input to the transaction. Currently, I’m working with altCoin (fork peercoin) currency. I’m trying build the transaction in the following way: for (UTXO utxo : mUTXOs) { if (!done) { utxosValue += utxo.getValue().longValue(); TransactionOutPoint outPoint = new TransactionOutPoint(params, utxo.getIndex(), utxo.getHash()); byte[] privKeyBytes = HEX.decode(privKeyAsHex);Read more