Fix bitcore incompatible lookupDetailedTransaction in test.html

This commit is contained in:
Martin Boehm 2018-05-02 16:51:14 +02:00
parent 7281fb27b1
commit b2f24e82f9

View File

@ -182,12 +182,18 @@
function lookupDetailedTransaction(hash, format, f) { function lookupDetailedTransaction(hash, format, f) {
const method = 'getDetailedTransaction'; const method = 'getDetailedTransaction';
const params = [ const af = parseInt(format)
var params = [
hash, hash,
{
addressFormat: parseInt(format),
},
]; ];
if (af !== 0) {
params = [
hash,
{
addressFormat: af,
},
];
}
return socket.send({ method, params }, f); return socket.send({ method, params }, f);
} }