diff --git a/pkg/builtins/bitwise.go b/pkg/builtins/bitwise.go index 39a9a44c..43951fd9 100644 --- a/pkg/builtins/bitwise.go +++ b/pkg/builtins/bitwise.go @@ -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 { return nil, nil }