Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
Signed-off-by: svetoslav-nikol0v <[email protected]>
  • Loading branch information
svetoslav-nikol0v committed Jun 6, 2024
1 parent a87c651 commit 9b66795
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/account/AccountBalanceQuery.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
);
Expand Down
2 changes: 1 addition & 1 deletion src/account/AccountInfoQuery.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
);
Expand Down
2 changes: 1 addition & 1 deletion src/contract/ContractInfoQuery.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
);
Expand Down

0 comments on commit 9b66795

Please sign in to comment.