File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
framework/src/main/java/org/tron/core/db Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1568,12 +1568,14 @@ private void postSolidityTrigger(final long latestSolidifiedBlockNumber) {
1568
1568
}
1569
1569
}
1570
1570
if (eventPluginLoaded && EventPluginLoader .getInstance ().isSolidityLogTriggerEnable ()) {
1571
- for (long i = Args .getInstance ().getOldSolidityBlockNum () + 1 ; i <= latestSolidifiedBlockNumber ; i ++) {
1571
+ for (long i = Args .getInstance ()
1572
+ .getOldSolidityBlockNum () + 1 ; i <= latestSolidifiedBlockNumber ; i ++) {
1572
1573
postSolitityLogContractTrigger (i );
1573
1574
}
1574
1575
}
1575
1576
if (eventPluginLoaded && EventPluginLoader .getInstance ().isSolidityEventTriggerEnable ()) {
1576
- for (long i = Args .getInstance ().getOldSolidityBlockNum () + 1 ; i <= latestSolidifiedBlockNumber ; i ++) {
1577
+ for (long i = Args .getInstance ()
1578
+ .getOldSolidityBlockNum () + 1 ; i <= latestSolidifiedBlockNumber ; i ++) {
1577
1579
postSolitityEventContractTrigger (i );
1578
1580
}
1579
1581
}
You can’t perform that action at this time.
0 commit comments