From c83d5c1624f98b486d3b109036d9229e0b5e9140 Mon Sep 17 00:00:00 2001 From: vjrj <vjrj@comunes.org> Date: Mon, 20 Mar 2023 01:16:00 +0100 Subject: [PATCH] Better comments --- lib/g1/api.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/g1/api.dart b/lib/g1/api.dart index c9322a53..0ccec621 100644 --- a/lib/g1/api.dart +++ b/lib/g1/api.dart @@ -425,10 +425,10 @@ Future<http.Response> _requestWithRetry( Future<String> pay( {required String to, required double amount, String? comment}) async { final List<Node> nodes = nodesWorkingList(NodeType.gva); - // reorder list to use others if (nodes.isNotEmpty) { + // reorder list to use others // nodes.shuffle(); - // no hay Retry? + // TODO(vjrj) implement some retry if some error arises? try { final String node = nodes.first.url; final Gva gva = Gva(node: node); -- GitLab