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))
This commit is contained in:
NagyZoltanPeter 2025-01-17 13:24:46 +01:00 committed by GitHub
parent eb17d5032f
commit 0751e39289
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,6 +43,8 @@ message HistoryResponse {
enum Error {
NONE = 0;
INVALID_CURSOR = 1;
TOO_MANY_REQUESTS = 429;
SERVICE_UNAVAILABLE = 503;
}
Error error = 4;
}