Skip to content

Commit

Permalink
Fix temp bigmap ptr
Browse files Browse the repository at this point in the history
  • Loading branch information
Groxan committed Jun 26, 2022
1 parent bca1c8a commit 3230b38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public virtual void Append(ContractOperation op, Contract contract, IEnumerable<
diff.Ptr = TempPtrs[diff.Ptr];
}
}
else if (diff is CopyDiff copy && copy.SourcePtr < 0)
if (diff is CopyDiff copy && copy.SourcePtr < 0)
{
copy.SourcePtr = TempPtrs[copy.SourcePtr];
}
Expand Down

0 comments on commit 3230b38

Please sign in to comment.