fix: zcash getTxHashesByAddress return value
This commit is contained in:
parent
71212d8cd1
commit
baf95b1e7c
1 changed files with 1 additions and 1 deletions
|
|
@ -154,7 +154,7 @@ function checkBlockchainStatus (cryptoCode) {
|
||||||
function getTxHashesByAddress (cryptoCode, address) {
|
function getTxHashesByAddress (cryptoCode, address) {
|
||||||
checkCryptoCode(cryptoCode)
|
checkCryptoCode(cryptoCode)
|
||||||
.then(() => fetch('getaddresstxids', [address]))
|
.then(() => fetch('getaddresstxids', [address]))
|
||||||
.then(_.mapKeys(() => 'txid'))
|
.then(_.values)
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue