Refix transcation history amount parsing

This commit is contained in:
poka 2021-02-03 20:59:12 +01:00
parent aa2c6671ee
commit 5934744884
1 changed files with 8 additions and 3 deletions

View File

@ -64,6 +64,7 @@ class HistoryProvider with ChangeNotifier {
} }
// Boris: JE6mkuzSpT3ePciCPRTpuMT9fqPUVVLJz2618d33p7tn // Boris: JE6mkuzSpT3ePciCPRTpuMT9fqPUVVLJz2618d33p7tn
// Matograine portefeuille: 9p5nHsES6xujFR7pw2yGy4PLKKHgWsMvsDHaHF64Uj25
List parseHistory(txs, _pubkey) { List parseHistory(txs, _pubkey) {
var transBC = []; var transBC = [];
@ -76,11 +77,15 @@ class HistoryProvider with ChangeNotifier {
var direction = trans['direction']; var direction = trans['direction'];
final transaction = trans['node']; final transaction = trans['node'];
var output; var output;
if (direction == "RECEIVED") {
for (String line in transaction['outputs']) { for (String line in transaction['outputs']) {
if (line.contains(_pubkey)) { if (line.contains(_pubkey)) {
output = line; output = line;
} }
} }
} else {
output = transaction['outputs'][0];
}
if (output == null) { if (output == null) {
continue; continue;
} }