Skip to content

Commit

Permalink
double spend can become seen
Browse files Browse the repository at this point in the history
  • Loading branch information
woodser committed Apr 12, 2021
1 parent dee51bb commit eea1c44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion external/monero-cpp
2 changes: 1 addition & 1 deletion src/main/java/monero/daemon/model/MoneroTx.java
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ public MoneroTx merge(MoneroTx tx) {
this.setIsMinerTx(GenUtils.reconcile(this.isMinerTx(), tx.isMinerTx(), null, null, null));
this.setRelay(GenUtils.reconcile(this.getRelay(), tx.getRelay(), null, true, null)); // tx can become relayed
this.setIsRelayed(GenUtils.reconcile(this.isRelayed(), tx.isRelayed(), null, true, null)); // tx can become relayed
this.setIsDoubleSpendSeen(GenUtils.reconcile(this.isDoubleSpendSeen(), tx.isDoubleSpendSeen()));
this.setIsDoubleSpendSeen(GenUtils.reconcile(this.isDoubleSpendSeen(), tx.isDoubleSpendSeen(), null, true, null)); // double spend can become seen
this.setKey(GenUtils.reconcile(this.getKey(), tx.getKey()));
this.setFullHex(GenUtils.reconcile(this.getFullHex(), tx.getFullHex()));
this.setPrunedHex(GenUtils.reconcile(this.getPrunedHex(), tx.getPrunedHex()));
Expand Down

0 comments on commit eea1c44

Please sign in to comment.