Skip to content

Commit

Permalink
BIWISE->BITWISE
Browse files Browse the repository at this point in the history
  • Loading branch information
jobez committed Oct 25, 2023
1 parent 75b500f commit e1061b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/builtins/bitwise.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func (b *BitwiseBuiltinRunner) InitialStack() []memory.MaybeRelocatable {

func (b *BitwiseBuiltinRunner) DeduceMemoryCell(address memory.Relocatable, mem *memory.Memory) (*memory.MaybeRelocatable, error) {
index := address.Offset % BITWISE_CELLS_PER_INSTANCE
if index < BIWISE_INPUT_CELLS_PER_INSTANCE {
if index < BITWISE_INPUT_CELLS_PER_INSTANCE {

Check failure on line 63 in pkg/builtins/bitwise.go

View workflow job for this annotation

GitHub Actions / demos

undefined: BITWISE_INPUT_CELLS_PER_INSTANCE

Check failure on line 63 in pkg/builtins/bitwise.go

View workflow job for this annotation

GitHub Actions / test_and_format

undefined: BITWISE_INPUT_CELLS_PER_INSTANCE
return nil, nil
}

Expand Down

0 comments on commit e1061b8

Please sign in to comment.