We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 02b06d6 + 4896fe4 commit 6ec04a1Copy full SHA for 6ec04a1
src/main/java/org/tron/core/db/Manager.java
@@ -1604,13 +1604,8 @@ public synchronized void preValidateTransactionSign(BlockCapsule block)
1604
}
1605
1606
public void rePush(TransactionCapsule tx) {
1607
-
1608
- try {
1609
- if (transactionStore.get(tx.getTransactionId().getBytes()) != null) {
1610
- return;
1611
- }
1612
- } catch (BadItemException e) {
1613
- // do nothing
+ if (transactionStore.has(tx.getTransactionId().getBytes())) {
+ return;
1614
1615
1616
try {
0 commit comments