We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3d9eee7 + 25b35f5 commit 1359fd6Copy full SHA for 1359fd6
1 file changed
framework/src/main/java/org/tron/core/db/Manager.java
@@ -881,6 +881,11 @@ public boolean pushTransaction(final TransactionCapsule trx)
881
throw new ContractValidateException("ExchangeTransactionContract is rejected");
882
}
883
884
+ if (isExchangeTransaction(trx.getInstance())) {
885
+ throw new ContractValidateException("ExchangeTransactionContract is rejected");
886
+ }
887
+
888
889
pushTransactionQueue.add(trx);
890
Metrics.gaugeInc(MetricKeys.Gauge.MANAGER_QUEUE, 1,
891
MetricLabels.Gauge.QUEUE_QUEUED);
0 commit comments