From ea8978a84bdea17560dea621bea532268d77e65a Mon Sep 17 00:00:00 2001 From: fuwa Date: Tue, 26 Nov 2019 13:26:10 +0800 Subject: [PATCH] add back in/out --- cyberwow/lib/controller/rpc/rpc2.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cyberwow/lib/controller/rpc/rpc2.dart b/cyberwow/lib/controller/rpc/rpc2.dart index 24016b7..6f9a373 100644 --- a/cyberwow/lib/controller/rpc/rpc2.dart +++ b/cyberwow/lib/controller/rpc/rpc2.dart @@ -116,7 +116,7 @@ Future> getTransactionPoolSimple() async { ...{'tx_decoded': _tx_json_decoded}, }; - final _tx = _filteredTx.map + final _tx = _decodedTx.map ( (k, v) { if (k == 'id_hash') { @@ -142,7 +142,7 @@ Future> getTransactionPoolSimple() async { return MapEntry('time', _dateFormat.format(_dateTime)); } - else if (k == 'tx_json_decoded') { + else if (k == 'tx_decoded') { final _out = { 'vin': v['vin'].length,