mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-14 00:46:44 +00:00
13 lines
270 B
Nim
13 lines
270 B
Nim
import std/options
|
|
|
|
# Implementing the RFC:
|
|
# https://github.com/vacp2p/rfc/tree/master/content/docs/rfcs/73
|
|
|
|
type
|
|
EligibilityProof* = object
|
|
proofOfPayment*: Option[seq[byte]]
|
|
|
|
EligibilityStatus* = object
|
|
statusCode*: uint32
|
|
statusDesc*: Option[string]
|