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
This is possible now because accepted_block is signaled before irreversible_block and a get_info call can come in between those two signals. Before since the get_info ran on the main thread, it could not execute between the two signals.
The text was updated successfully, but these errors were encountered:
Before #920, a node running in
irreversible
mode would always report the same value for:Now it is possible for a node running in
irreversible
mode to return different values:See test failure: https://github.com/AntelopeIO/spring/actions/runs/11349047274/job/31565035139
This is possible now because
accepted_block
is signaled beforeirreversible_block
and aget_info
call can come in between those two signals. Before since theget_info
ran on the main thread, it could not execute between the two signals.The text was updated successfully, but these errors were encountered: