Skip to content

Commit

Permalink
answer comments
Browse files Browse the repository at this point in the history
  • Loading branch information
greged93 committed Oct 12, 2023
1 parent d266373 commit 3fff468
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/hintrunner/hint.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,10 @@ func (hint WideMul128) Execute(vm *VM.VirtualMachine) error {

bytes := mul.Bytes32()

low := f.One()
low := f.Element{}
low.SetBytes(bytes[16:])

high := f.One()
high := f.Element{}
high.SetBytes(bytes[:16])

lowAddr, err := hint.low.Get(vm)
Expand Down

0 comments on commit 3fff468

Please sign in to comment.