@@ -111,7 +111,6 @@ class NewPeakWallet(Streamable):
111
111
112
112
## request_block_header
113
113
114
- DEPRECATED: this message has been deprecated and replaced with request_block_headers (plural).
115
114
A request from the wallet to the full node for a HeaderBlock at a specific height.
116
115
117
116
``` python
@@ -121,7 +120,6 @@ class RequestBlockHeader(Streamable):
121
120
122
121
## respond_block_header
123
122
124
- DEPRECATED: this message has been deprecated and replaced with respond_block_headers (plural).
125
123
A response to a ` request_block_header ` request.
126
124
127
125
``` python
@@ -131,7 +129,8 @@ class RespondBlockHeader(Streamable):
131
129
132
130
## request_block_headers
133
131
134
- A request from the wallet to the full node for a HeaderBlock at a specific height.
132
+ A request from the wallet to the full node for a HeaderBlock at a specific height.
133
+ NOTE: this message deprecates and replaces ` request_header_blocks ` (flip block and header).
135
134
136
135
``` python
137
136
class RequestBlockHeaders (Streamable ):
@@ -140,13 +139,25 @@ class RequestBlockHeaders(Streamable):
140
139
141
140
## respond_block_headers
142
141
143
- A response to a ` request_block_headers ` request.
142
+ A response to a ` request_block_headers ` request.
143
+ NOTE: this message deprecates and replaces ` respond_header_blocks ` (flip block and header).
144
144
145
145
``` python
146
146
class RespondBlockHeaders (Streamable ):
147
147
header_block: HeaderBlock
148
148
```
149
149
150
+ ## reject_block_headers
151
+
152
+ A rejection to a ` request_block_headers ` request.
153
+ NOTE: this message deprecates and replaces ` reject_header_blocks ` (flip block and header).
154
+
155
+ ``` python
156
+ class RejectBlockHeaders (Streamable ):
157
+ start_height: uint32
158
+ end_height: uint32
159
+ ```
160
+
150
161
## reject_header_request
151
162
152
163
A rejection to a ` request_block_header ` request.
@@ -235,6 +246,7 @@ class RejectAdditionsRequest(Streamable):
235
246
236
247
## request_header_blocks
237
248
249
+ DEPRECATED: this message has been deprecated and replaced with ` request_block_headers ` (flip block and header).
238
250
A request from the wallet to the full node for a list of consecutive header blocks, inclusive.
239
251
240
252
``` python
@@ -245,6 +257,7 @@ class RequestHeaderBlocks(Streamable):
245
257
246
258
## reject_header_blocks
247
259
260
+ DEPRECATED: this message has been deprecated and replaced with ` reject_block_headers ` (flip block and header).
248
261
A rejection for a ` request_header_blocks ` request.
249
262
250
263
``` python
@@ -255,6 +268,7 @@ class RejectHeaderBlocks(Streamable):
255
268
256
269
## respond_header_blocks
257
270
271
+ DEPRECATED: this message has been deprecated and replaced with ` respond_block_headers ` (flip block and header).
258
272
A response to a ` request_header_blocks ` request.
259
273
260
274
``` python
0 commit comments