From 754d6e954e3d612bb06cdb482b3c14a04c401cb4 Mon Sep 17 00:00:00 2001 From: condorXI <74612907+condorXI@users.noreply.github.com> Date: Wed, 29 Jun 2022 22:50:26 +0200 Subject: [PATCH 1/2] poc_receipts(activity) call in loop_activities() elif activity["type"] == "poc_receipts_v1" or "poc_receipts_v2": should be something like: elif activity["type"] == "poc_receipts_v1" or activity["type"] == "poc_receipts_v2": --- hds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hds.py b/hds.py index a2666ac..8278f5f 100644 --- a/hds.py +++ b/hds.py @@ -633,7 +633,7 @@ def loop_activities(): # beacon sent, valid witness, invalid witness # elif activity["type"] == "poc_receipts_v1": - elif activity["type"] == "poc_receipts_v1" or "poc_receipts_v2": + elif activity["type"] == "poc_receipts_v1" or activity["type"] == "poc_receipts_v2": poc_receipts(activity) # other From eb286c529284a5d723519870e919553cd90c237c Mon Sep 17 00:00:00 2001 From: condorXI Date: Wed, 20 Jul 2022 23:32:39 +0200 Subject: [PATCH 2/2] test --- .vscode/settings.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index a2d58ee..49e0247 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,5 +6,8 @@ "peerbook", "Rity", "simplejson" + ], + "githubPullRequests.ignoredPullRequestBranches": [ + "latest" ] }