Skip to content

Commit

Permalink
refactor(store): don't prefix library call with own library name (#1617)
Browse files Browse the repository at this point in the history
  • Loading branch information
alvrs authored Sep 30, 2023
1 parent 071aadb commit 9019d8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/store/src/StoreCore.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1099,9 +1099,9 @@ library StoreCoreInternal {
// and load the data from storage
return
Storage.load({
storagePointer: StoreCoreInternal._getStaticDataLocation(tableId, keyTuple),
storagePointer: _getStaticDataLocation(tableId, keyTuple),
length: fieldLayout.atIndex(fieldIndex),
offset: StoreCoreInternal._getStaticDataOffset(fieldLayout, fieldIndex)
offset: _getStaticDataOffset(fieldLayout, fieldIndex)
});
}

Expand Down

0 comments on commit 9019d8e

Please sign in to comment.