cormorant: fix initialisation of sent txes without txindex

This commit is contained in:
Craig Raw 2023-01-30 14:46:12 +02:00
parent 9edeff9aab
commit 057a9efb1f

View file

@ -387,7 +387,7 @@ public class BitcoindClient {
for(ListTransaction sentTransaction : sentTransactions) {
Set<HashIndex> spentOutputs = store.getSpentOutputs().computeIfAbsent(sentTransaction.txid(), txid -> {
String txhex = getBitcoindService().getRawTransaction(txid, false).toString();
String txhex = getTransaction(txid);
Transaction tx = new Transaction(Utils.hexToBytes(txhex));
return tx.getInputs().stream().map(txInput -> new HashIndex(txInput.getOutpoint().getHash(), txInput.getOutpoint().getIndex())).collect(Collectors.toSet());
});
@ -419,6 +419,14 @@ public class BitcoindClient {
}
}
private String getTransaction(String txid) {
try {
return getBitcoindService().getTransaction(txid, false).get("hex").toString();
} catch(JsonRpcException e) {
return getBitcoindService().getRawTransaction(txid, false).toString();
}
}
private void syncMempool(boolean forceRefresh) {
Map<String, MempoolEntry> mempoolEntries = store.getMempoolEntries();