Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sqlstore/sqlstore.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ func (s *SQLStore) QueryEntitiesInternalIterator(
key *[]byte
payload *[]byte
fromBlock *uint64
owner *[]byte
owner *string
expiresAt *uint64
createdAtBlock *uint64
sequence *uint64
Expand Down Expand Up @@ -275,7 +275,7 @@ func (s *SQLStore) QueryEntitiesInternalIterator(
}
var ownerAddress *common.Address
if owner != nil {
addr := common.BytesToAddress(*owner)
addr := common.HexToAddress(*owner)
ownerAddress = &addr
}

Expand Down