Skip to content

Commit

Permalink
chore(interop-node): fix typo in repository interface (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobhjkim authored Apr 16, 2024
1 parent f286406 commit 203865d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/interop-node/repository/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type Repository interface {
PutBlockData(hash []byte, number []byte, timestamp uint64, ownershipData []*types.OwnershipTransferEvent) error

GetOldestBlock(timestamp uint64) (BlockData, error)
GetBlockNumber(blockNumber string) (string, error)
GetBlockHash(blockHash string) (string, error)
GetBlockNumber(blockHash string) (string, error)
GetBlockHash(blockNumber string) (string, error)
GetNftOwnership(nftAddessHex string, tokenIdHex string, blockNumberHex string) (string, error)
}

0 comments on commit 203865d

Please sign in to comment.