diff --git a/lib/plugins/wallet/zcashd/zcashd.js b/lib/plugins/wallet/zcashd/zcashd.js index d9d7f867..f0fb27f4 100644 --- a/lib/plugins/wallet/zcashd/zcashd.js +++ b/lib/plugins/wallet/zcashd/zcashd.js @@ -154,7 +154,7 @@ function checkBlockchainStatus (cryptoCode) { function getTxHashesByAddress (cryptoCode, address) { checkCryptoCode(cryptoCode) .then(() => fetch('getaddresstxids', [address])) - .then(_.mapKeys(() => 'txid')) + .then(_.values) } module.exports = {