cash-in working

This commit is contained in:
Josh Harvey 2016-04-07 13:25:34 +01:00
parent f357b6080e
commit e2d619c56d
3 changed files with 6 additions and 5 deletions

View file

@ -251,7 +251,7 @@ function _sendCoins (toAddress, cryptoAtoms, cryptoCode, cb) {
var walletPlugin = walletPlugins[cryptoCode]
var transactionFee = cachedConfig.exchanges.settings.transactionFee
if (cryptoCode === 'BTC') {
walletPlugin.sendBitcoins(toAddress, cryptoAtoms, transactionFee, cb)
walletPlugin.sendBitcoins(toAddress, cryptoAtoms.truncated().toNumber(), transactionFee, cb)
} else {
walletPlugin.sendBitcoins(toAddress, cryptoAtoms, cryptoCode, transactionFee, cb)
}
@ -301,7 +301,7 @@ function reapTx (row) {
var session = {fingerprint: row.device_fingerprint, id: row.session_id}
var tx = {
fiat: 0,
satoshis: row.satoshis,
satoshis: new BigNumber(row.satoshis),
toAddress: row.to_address,
currencyCode: row.currency_code,
cryptoCode: row.crypto_code,