Fix bitcore incompatible lookupDetailedTransaction in test.html

indexv2
Martin Boehm 2018-05-02 16:51:14 +02:00
parent 7281fb27b1
commit b2f24e82f9
1 changed files with 11 additions and 5 deletions

View File

@ -182,12 +182,18 @@
function lookupDetailedTransaction(hash, format, f) {
const method = 'getDetailedTransaction';
const params = [
const af = parseInt(format)
var params = [
hash,
{
addressFormat: parseInt(format),
},
];
if (af !== 0) {
params = [
hash,
{
addressFormat: af,
},
];
}
return socket.send({ method, params }, f);
}
@ -437,4 +443,4 @@
document.getElementById('serverAddress').value = window.location.protocol.replace("http", "ws") + "//" + window.location.host;
</script>
</html>
</html>