Skip to content

Commit

Permalink
GH-2102 If forked out again then could still be in local state
Browse files Browse the repository at this point in the history
  • Loading branch information
heifner committed Apr 4, 2024
1 parent 8a7b973 commit 274e44a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/trx_finality_status_forked_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def getBlockID(status):
state = getState(retStatus)

# it is possible for another fork switch to cause the trx to be forked out again
if state == forkedOutState:
if state == forkedOutState or state == localState:
while True:
info = prodD.getInfo()
retStatus = prodD.getTransactionStatus(transId)
Expand Down

0 comments on commit 274e44a

Please sign in to comment.