You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
finalList<TransactionViewModel> elements = addValidTxvmToList(txString);
which results in a final call to TransactionValidator.runValidation for presumably the same set of tx that had already undergone validation twice before. (END THIRD CALL)
Expected behavior
Is this expected behavior?
Milestone publishing calls the TransactionValidator.runValidation method at least three times on the same set of transactions...
This seems to be accidental.
Trace details
The API.storeAndBroadcast method
pendulum/src/main/java/net/helix/pendulum/service/API.java
Line 1523 in 77fbd58
pendulum/src/main/java/net/helix/pendulum/service/API.java
Line 1220 in 77fbd58
pendulum/src/main/java/net/helix/pendulum/TransactionValidator.java
Line 215 in 77fbd58
pendulum/src/main/java/net/helix/pendulum/service/API.java
Line 1263 in 77fbd58
After finishing with the above, the API.storeAndBroadcast method calls the API. storeTransactionsStatement method,
pendulum/src/main/java/net/helix/pendulum/service/API.java
Line 1526 in 77fbd58
pendulum/src/main/java/net/helix/pendulum/service/API.java
Line 592 in 77fbd58
pendulum/src/main/java/net/helix/pendulum/service/API.java
Lines 616 to 618 in 77fbd58
Finally, the broadcastTransactionsStatement at the end of the API.storeAndBroadcast method
pendulum/src/main/java/net/helix/pendulum/service/API.java
Line 1527 in 77fbd58
pendulum/src/main/java/net/helix/pendulum/service/API.java
Line 1096 in 77fbd58