Skip to content

Commit

Permalink
Update move/operators/sources/operators.move
Browse files Browse the repository at this point in the history
Co-authored-by: Milap Sheth <[email protected]>
  • Loading branch information
re1ro and milapsheth authored Jun 13, 2024
1 parent fdb7e94 commit 4245874
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion move/operators/sources/operators.move
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ module operators::operators {

let new_operator = @0x1;
add_operator(&mut operators, &owner_cap, new_operator, ctx);
assert!(operators.operators.keys().length() == 1, 0);
assert!(operators.operators.size() == 1, 0);

let operator_id = operators.operators.keys()[0];
remove_operator(&mut operators, &owner_cap, operator_id);
Expand Down

0 comments on commit 4245874

Please sign in to comment.