From 2c241bc04ecf2eb9460e5cafe041a9788dce874f Mon Sep 17 00:00:00 2001 From: NagyZoltanPeter <113987313+NagyZoltanPeter@users.noreply.github.com> Date: Wed, 10 Apr 2024 16:03:33 +0200 Subject: [PATCH] Added missing HistoryResponse Error codes, introduced by Rate Limiting non relay protocol --- waku/store/v2beta4/store.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/waku/store/v2beta4/store.proto b/waku/store/v2beta4/store.proto index 27f9c3c..1a3422f 100644 --- a/waku/store/v2beta4/store.proto +++ b/waku/store/v2beta4/store.proto @@ -43,6 +43,8 @@ message HistoryResponse { enum Error { NONE = 0; INVALID_CURSOR = 1; + TOO_MANY_RESULTS = 429; + SERVICE_UNAVAILABLE = 503; } Error error = 4; }