Skip to content

Commit

Permalink
added note about error
Browse files Browse the repository at this point in the history
  • Loading branch information
lastmeta committed Dec 9, 2022
1 parent 5d6433e commit 3a16d73
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/client/json_newline_transformer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1458,6 +1458,15 @@ abstract class _ChunkedJsonParser<T> {
if (position == chunkEnd) message = "Unexpected end of input";
}
throw FormatException(message, chunk, position);
/* keep getting this error here:
E/flutter ( 7778): [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: FormatException: Unterminated string (at character 8192)
E/flutter ( 7778): ...","reqSigs":1,"type":"pubkeyhash","addresses":["ENMtLdEmzjRMZCgxFHh4JFDN2UB
E/flutter ( 7778): ^
E/flutter ( 7778): #0 _ChunkedJsonParser.fail package:electrum_adapter/client/json_newline_transformer.dart:1460
E/flutter ( 7778): #1 _ChunkedJsonParser.close package:electrum_adapter/client/json_newline_transformer.dart:599
E/flutter ( 7778): #2 _JsonStringDecoderSink.close package:electrum_adapter/client/json_newline_transformer.dart:1564
...
*/
}
}

Expand Down

0 comments on commit 3a16d73

Please sign in to comment.