Skip to content

Commit

Permalink
waku_store/common.nim: correct ret code in PEER_DIAL_FAILURE (#2260)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivansete-status authored Nov 30, 2023
1 parent 72a1f8c commit 89dbbd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion waku/waku_store/common.nim
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ type

HistoryErrorKind* {.pure.} = enum
UNKNOWN = uint32(000)
PEER_DIAL_FAILURE = uint32(200)
BAD_RESPONSE = uint32(300)
BAD_REQUEST = uint32(400)
SERVICE_UNAVAILABLE = uint32(503)
PEER_DIAL_FAILURE = uint32(504)

HistoryError* = object
case kind*: HistoryErrorKind
Expand Down

0 comments on commit 89dbbd2

Please sign in to comment.