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 5d1ff37 + 4aa4a98 commit b414f7dCopy full SHA for b414f7d
framework/src/main/java/org/tron/core/services/event/BlockEventGet.java
@@ -65,7 +65,9 @@ public BlockEvent getBlockEvent(long blockNum) throws Exception {
65
}
66
67
if (instance.isTransactionLogTriggerEnable()) {
68
- blockEvent.setTransactionLogTriggerCapsules(getTransactionLogTrigger(block, solidNum));
+ List<TransactionLogTriggerCapsule> list = getTransactionLogTrigger(block, solidNum);
69
+ list.forEach(t -> t.getTransactionLogTrigger().setInternalTransactionList(null));
70
+ blockEvent.setTransactionLogTriggerCapsules(list);
71
72
73
if (instance.isContractLogTriggerEnable()
0 commit comments