floBlockchainAPI_2.0.1e

- Adding floBlockchainAPI.util.current(): returns the current working flosight link (to be used after at least 1 API request'
This commit is contained in:
sairajzero 2021-06-07 14:27:52 +05:30
parent 25df4bbbc0
commit df8df5edbc

View File

@ -7292,7 +7292,7 @@ Bitcoin.Util = {
}
}
</script>
<script id="floBlockchainAPI" version="2.0.1d">
<script id="floBlockchainAPI" version="2.0.1e">
/* FLO Blockchain Operator to send/receive data from blockchain using API calls*/
const floBlockchainAPI = {
@ -7330,6 +7330,10 @@ Bitcoin.Util = {
})
}
})
},
current: function() {
return this.serverList[this.curPos];
}
},