Skip to content

Commit

Permalink
chore: remove useless type assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
zmalatrax committed Jul 23, 2024
1 parent 2eb6b85 commit 87d30c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/virtualMachine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ export class VirtualMachine {

switch (binOp.op) {
case Operation.Add:
return a.add(b) as Felt;
return a.add(b);

case Operation.Mul:
return a.mul(b);
Expand Down

0 comments on commit 87d30c9

Please sign in to comment.