Get floData from live fcoin tx object

This commit is contained in:
Sky Young 2018-05-21 09:12:44 -07:00
parent f1166ec420
commit 9a83209551

View File

@ -344,8 +344,8 @@ BlockController.prototype.getPoolInfo = function(tx) {
} }
var strFloData = ""; var strFloData = "";
if (tx.floData) if (tx.strFloData)
strFloData = tx.floData; strFloData = tx.strFloData;
for(var k in this.poolStrings) { for(var k in this.poolStrings) {
if (strFloData.includes(k)) { if (strFloData.includes(k)) {