Skip to content

Commit 8fabe03

Browse files
Update hedera-spring/src/main/java/com/openelements/hedera/spring/implementation/MirrorNodeClientImpl.java
1 parent 94b84e5 commit 8fabe03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hedera-spring/src/main/java/com/openelements/hedera/spring/implementation/MirrorNodeClientImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public Page<Nft> queryNftsByAccount(@NonNull final AccountId accountId) throws H
6060
@Override
6161
public Page<Nft> queryNftsByAccountAndTokenId(@NonNull final AccountId accountId, @NonNull final TokenId tokenId)
6262
throws HederaException {
63-
Objects.requireNonNull(accountId, "newAccountId must not be null");
63+
Objects.requireNonNull(accountId, "accountId must not be null");
6464
Objects.requireNonNull(tokenId, "tokenId must not be null");
6565

6666
final String path = "/api/v1/tokens/" + tokenId + "/nfts/" + accountId;

0 commit comments

Comments
 (0)