Update FLO_webWallet_mainnet.html

This commit is contained in:
Sai Raj 2019-04-11 18:05:46 +05:30 committed by GitHub
parent 1904399623
commit f253148e0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -165,10 +165,13 @@ function startup(){
}
}
}).then(res => {
var input = document.getElementById("getAddr");
input.value = res.join(',');
monitorData();
input.value = "";
console.log(res);
if(res.length){
var input = document.getElementById("getAddr");
input.value = res.join(',');
monitorData();
input.value = "";
}
}).catch(error => {
console.log(error.message);
});