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
class function TAccountComp.EqualOperationBlocks(const opBlock1, opBlock2: TOperationBlock): Boolean;
begin
Result := (opBlock1.block = opBlock1.block)
This code is comparing block 1 vs block 1.
Should this not be block1 vs block2 ??????
The text was updated successfully, but these errors were encountered:
class function TAccountComp.EqualOperationBlocks(const opBlock1, opBlock2: TOperationBlock): Boolean;
begin
Result := (opBlock1.block = opBlock1.block)
This code is comparing block 1 vs block 1.
Should this not be block1 vs block2 ??????
The text was updated successfully, but these errors were encountered: