From 0751e39289f72406eeac658c74d6d898a20b3f84 Mon Sep 17 00:00:00 2001 From: NagyZoltanPeter <113987313+NagyZoltanPeter@users.noreply.github.com> Date: Fri, 17 Jan 2025 13:24:46 +0100 Subject: [PATCH] feat: Added missing HistoryResponse Error codes, introduced by Rate Limiting (#21) * Added missing HistoryResponse Error codes, introduced by Rate Limiting non relay protocol * Found I misstyped name of the Error code (already fixed in jswaku)) --- 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..c5df301 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_REQUESTS = 429; + SERVICE_UNAVAILABLE = 503; } Error error = 4; }