Skip to content

Commit

Permalink
adjust function name based on differing type name
Browse files Browse the repository at this point in the history
  • Loading branch information
turbolent committed Jul 24, 2024
1 parent cdcd198 commit 0c13569
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/empty.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ func (EmptyRuntimeInterface) ValueExists(_, _ []byte) (exists bool, err error) {
panic("unexpected call to ValueExists")
}

func (EmptyRuntimeInterface) AllocateStorageIndex(_ []byte) (atree.StorageIndex, error) {
panic("unexpected call to AllocateStorageIndex")
func (EmptyRuntimeInterface) AllocateSlabIndex(_ []byte) (atree.SlabIndex, error) {
panic("unexpected call to AllocateSlabIndex")
}

func (EmptyRuntimeInterface) CreateAccount(_ Address) (address Address, err error) {
Expand Down

0 comments on commit 0c13569

Please sign in to comment.