diff --git a/src/account/AccountBalanceQuery.js b/src/account/AccountBalanceQuery.js index 37c785a208..467162da7a 100644 --- a/src/account/AccountBalanceQuery.js +++ b/src/account/AccountBalanceQuery.js @@ -262,7 +262,7 @@ export default class AccountBalanceQuery extends Query { ) { // Reset the array to avoid duplicates cryptogetAccountBalanceFromConsensusNode.tokenBalances.length = 0; - // Add the token balances from the mirror node to the response fromn the consensus node + // Add the token balances from the mirror node to the response from the consensus node cryptogetAccountBalanceFromConsensusNode.tokenBalances.push( ...tokenBalances, ); diff --git a/src/account/AccountInfoQuery.js b/src/account/AccountInfoQuery.js index 6743b9dc64..595c9dfcdd 100644 --- a/src/account/AccountInfoQuery.js +++ b/src/account/AccountInfoQuery.js @@ -213,7 +213,7 @@ export default class AccountInfoQuery extends Query { // Reset the array to avoid duplicates accountInfoFromConsensusNode.accountInfo.tokenRelationships.length = 0; - // Add the token relationships from the mirror node to the response fromn the consensus node + // Add the token relationships from the mirror node to the response from the consensus node accountInfoFromConsensusNode.accountInfo.tokenRelationships.push( ...tokensRelationships, ); diff --git a/src/contract/ContractInfoQuery.js b/src/contract/ContractInfoQuery.js index f6de77b014..c7dcfb3110 100644 --- a/src/contract/ContractInfoQuery.js +++ b/src/contract/ContractInfoQuery.js @@ -207,7 +207,7 @@ export default class ContractInfoQuery extends Query { // Reset the array to avoid duplicates info.contractInfo.tokenRelationships.length = 0; - // Add the token relationships from the mirror node to the response fromn the consensus node + // Add the token relationships from the mirror node to the response from the consensus node info.contractInfo.tokenRelationships.push( ...tokensRelationships, );