File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -1021,14 +1021,23 @@ pub struct NackData {
1021
1021
pub error_code : u32 ,
1022
1022
}
1023
1023
pub mod NackErrorCodes {
1024
+ /// A handshake has not yet been completed with the requester
1024
1025
pub const HandshakeRequired : u32 = 1 ;
1026
+ /// The request depends on a burnchain block that this peer does not recognize
1025
1027
pub const NoSuchBurnchainBlock : u32 = 2 ;
1028
+ /// The remote peer has exceeded local per-peer bandwidth limits
1026
1029
pub const Throttled : u32 = 3 ;
1030
+ /// The request depends on a PoX fork that this peer does not recognize as canonical
1027
1031
pub const InvalidPoxFork : u32 = 4 ;
1032
+ /// The message received is not appropriate for the ongoing step in the protocol being executed
1028
1033
pub const InvalidMessage : u32 = 5 ;
1034
+ /// The StackerDB requested is not known to this node
1029
1035
pub const NoSuchDB : u32 = 6 ;
1036
+ /// The StackerDB chunk request referred to an older copy of the chunk than this node has
1030
1037
pub const StaleVersion : u32 = 7 ;
1038
+ /// The remote peer's view of the burnchain is too out-of-date for the protocol to continue
1031
1039
pub const StaleView : u32 = 8 ;
1040
+ /// The StackerDB chunk request referred to a newer copy of the chunk that this node has
1032
1041
pub const FutureVersion : u32 = 9 ;
1033
1042
}
1034
1043
You can’t perform that action at this time.
0 commit comments