https://github.com/stellar/account-viewer/blob/master/controllers/send-widget.controller.es6 ```js let minimumBalance = 20 + (account.subentry_count) * 10; let nativeBalance = _(account.balances).find(balance => balance.asset_type === 'native').balance; let maxSend = new BigNumber(nativeBalance).minus(minimumBalance); if (maxSend.lt(this.amount)) { throw new BasicClientError('InsufficientBalanceError', {maxSend}); } ``` We're not subtracting transaction fee from `maxSend`. Thanks @briangale for catching this!
https://github.com/stellar/account-viewer/blob/master/controllers/send-widget.controller.es6
We're not subtracting transaction fee from
maxSend. Thanks @briangale for catching this!