diff --git a/services/blockchain-indexer/shared/dataService/business/transactionsEstimateFees.js b/services/blockchain-indexer/shared/dataService/business/transactionsEstimateFees.js index 6239642645..f3c957a412 100644 --- a/services/blockchain-indexer/shared/dataService/business/transactionsEstimateFees.js +++ b/services/blockchain-indexer/shared/dataService/business/transactionsEstimateFees.js @@ -323,10 +323,7 @@ const validateTransactionParams = async transaction => { data: [balanceInfo], } = await getTokenBalances({ address: senderAddress, tokenID: transaction.params.tokenID }); - if ( - BigInt(balanceInfo.availableBalance) < - BigInt(transaction.params.amount) + BigInt(extraCommandFees.userAccountInitializationFee) - ) { + if (BigInt(balanceInfo.availableBalance) < BigInt(transaction.params.amount)) { throw new ValidationException( `${senderAddress} has insufficient balance for ${transaction.params.tokenID} to send the transaction.`, );