diff --git a/lib/plugins/wallet/bitgo/bitgo.js b/lib/plugins/wallet/bitgo/bitgo.js index cfc2a152..0565ffea 100644 --- a/lib/plugins/wallet/bitgo/bitgo.js +++ b/lib/plugins/wallet/bitgo/bitgo.js @@ -52,8 +52,7 @@ function sendCoins (account, address, cryptoAtoms, cryptoCode) { function balance (account, cryptoCode) { return checkCryptoCode(cryptoCode) .then(() => getWallet(account)) - // TODO This was previously spendableConfirmedBalance, what happened to it on v2? - .then(wallet => BN(wallet._wallet.confirmedBalanceString)) + .then(wallet => BN(wallet._wallet.spendableBalanceString)) } function newAddress (account, info) {