Skip to content

Commit

Permalink
Fix _findExecTraceAncestor() with ancestorPos_
Browse files Browse the repository at this point in the history
  • Loading branch information
dajuguan committed Jul 20, 2024
1 parent a93f124 commit 51763f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1100,7 +1100,7 @@ contract FaultDisputeGame is IFaultDisputeGame, Clone, ISemver {
if (ancestorPos_.depth() == SPLIT_DEPTH + N_BITS) {
ancestorClaim_ = ancestorClaimRoot;
} else {
ancestorClaim_ = getClaim(ancestorClaimRoot.raw(), Position.wrap(_pos.raw() - 1), _daItem);
ancestorClaim_ = getClaim(ancestorClaimRoot.raw(), ancestorPos_, _daItem);
}
}

Expand Down

0 comments on commit 51763f6

Please sign in to comment.