-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrors.py
412 lines (268 loc) · 7.59 KB
/
errors.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
# Copyright (c) 2016-2022 Knuth Project developers.
# Distributed under the MIT software license, see the accompanying
# file COPYING or http:#www.opensource.org/licenses/mit-license.php.
from enum import IntEnum
class Errors(IntEnum):
# general codes
# The operation finished without errors
success = 0,
# The operation is deprecated
deprecated = 6,
# Unknown error
unknown = 43,
# The resource not exist
notFound = 3,
# File system error
fileSystem = 42,
# Non-standard transaction
nonStandard = 17,
# The operation isn't implemented
notImplemented = 4,
# Service oversubscribed
oversubscribed = 71,
# network
# Service is stopped
serviceStopped = 1,
# The operation failed
operationFailed = 2,
# Resolving hostname failed
resolveFailed = 7,
# Unable to reach remote host
networkUnreachable = 8,
# Address already in use
addressInUse = 9,
# Incoming connection failed
listenFailed = 10,
# Connection acceptance failed
acceptFailed = 11,
# Bad data stream
badStream = 12,
# Connection timed out
channelTimeout = 13,
# Address blocked by policy
addressBlocked = 44,
# Channel stopped
channelStopped = 45,
# Unresponsive peer may be throttling
peerThrottling = 73,
# database
# Block duplicate
storeBlockDuplicate = 66,
# Block out of order
storeBlockInvalidHeight = 67,
# Block missing parent
storeBlockMissingParent = 68,
# blockchain
# Duplicate block
duplicateBlock = 51,
# Missing block parent
orphanBlock = 5,
# Previous block failed to validate
invalidPreviousBlock = 24,
# Insufficient work to reorganize
insufficientWork = 48,
# Transaction parent missing
orphanTransaction = 14,
# Insufficient transaction fee
insufficientFee = 70,
# Output value too low
dustyTransaction = 76,
# Blockchain too far behind
staleChain = 75,
# check header
# Proof of work invalid
invalidProofOfWork = 26,
# Timestamp too far in the future
futuristicTimestamp = 27,
# accept header
# Block hash rejected by checkpoint
checkpointsFailed = 35,
# Block version rejected at current height
oldVersionBlock = 36,
# Proof of work does not match bits field
incorrectProofOfWork = 32,
# Block timestamp is too early
timestampTooEarly = 33,
# check block
# Block size limit exceeded
blockSizeLimit = 50,
# Block has no transactions
emptyBlock = 47,
# First transaction not a coinbase
firstNotCoinbase = 28,
# More than one coinbase
extraCoinbases = 29,
# Matching transaction hashes in block
internalDuplicate = 49,
# Double spend internal to block
blockInternalDoubleSpend = 15,
# Merkle root mismatch
merkleMismatch = 31,
# Too many block legacy signature operations
blockLegacySigopLimit = 30,
# Transactions out of order
forwardReference = 79,
# accept block
# Block contains a non-final transaction
blockNonFinal = 34,
# Block height mismatch in coinbase
coinbaseHeightMismatch = 37,
# Coinbase value too high
coinbaseValueLimit = 41,
# Too many block embedded signature operations
blockEmbeddedSigopLimit = 52,
# Invalid witness commitment
invalidWitnessCommitment = 25,
# Block weight limit exceeded
blockWeightLimit = 82,
# check transaction
# Transaction inputs or outputs empty
emptyTransaction = 20,
# Non-coinbase transaction has input with null previous output
previousOutputNull = 23,
# Spend outside valid range
spendOverflow = 21,
# Coinbase script too small or large
invalidCoinbaseScriptSize = 22,
# Coinbase transaction disallowed in memory pool
coinbaseTransaction = 16,
# Double spend internal to transaction
transactionInternalDoubleSpend = 72,
# Transaction size limit exceeded
transactionSizeLimit = 53,
# Too many transaction legacy signature operations
transactionLegacySigopLimit = 54,
# accept transaction
# Transaction currently non-final for next block
transactionNonFinal = 74,
# Transaction validation under checkpoint
prematureValidation = 69,
# Matching transaction with unspent outputs
unspentDuplicate = 38,
# Previous output not found
missingPreviousOutput = 19,
# double spend of input
doubleSpend = 18,
# Immature coinbase spent
coinbaseMaturity = 46,
# Spend exceeds input values sum
spendExceedsValue = 40,
# Too many transaction embedded signature operations
transactionEmbeddedSigopLimit = 55,
# Transaction currently locked
sequenceLocked = 78,
# Transaction weight limit exceeded
transactionWeightLimit = 83,
# connect input
# Invalid script
invalidScript = 39,
# Invalid script size
invalidScriptSize = 56,
# Invalid push data size
invalidPushDataSize = 57,
# Invalid operation count
invalidOperationCount = 58,
# Invalid stack size
invalidStackSize = 59,
# Invalid stack scope
invalidStackScope = 60,
# Invalid script embed
invalidScriptEmbed = 61,
# Invalid signature encoding
invalidSignatureEncoding = 62,
# Invalid signature lax encoding
invalidSignatureLaxEncoding = 63,
# Incorrect signature
incorrectSignature = 64,
# Error processing script
stackFalse = 65,
# Unexpected witness
unexpectedWitness = 77,
# Invalid witness
invalidWitness = 80,
# Dirty witness
dirtyWitness = 81,
# op eval
opDisabled = 100,
opReserved = 101,
opPushSize = 102,
opPushData = 103,
opIf = 104,
opNotIf = 105,
opElse = 106,
opEndIf = 107,
opVerify1 = 108,
opVerify2 = 109,
opReturn = 110,
opToAltStack = 111,
opFromAltStack = 112,
opDrop2 = 113,
opDup2 = 114,
opDup3 = 115,
opOver2 = 116,
opRot2 = 117,
opSwap2 = 118,
opIfDup = 119,
opDrop = 120,
opDup = 121,
opNip = 122,
opOver = 123,
opPick = 124,
opRoll = 125,
opRot = 126,
opSwap = 127,
opTuck = 128,
opSize = 129,
opEqual = 130,
opEqualVerify1 = 131,
opEqualVerify2 = 132,
opAdd1 = 133,
opSub1 = 134,
opNegate = 135,
opAbs = 136,
opNot = 137,
opNonZero = 138,
opAdd = 139,
opSub = 140,
opBoolAnd = 141,
opBoolOr = 142,
opNumEqual = 143,
opNumEqualVerify1 = 144,
opNumEqualVerify2 = 145,
opNumNotEqual = 146,
opLessThan = 147,
opGreaterThan = 148,
opLessThanOrEqual = 149,
opGreaterThanOrEqual = 150,
opMin = 151,
opMax = 152,
opWithin = 153,
opRipemd160 = 154,
opSha1 = 155,
opSha256 = 156,
opHash160 = 157,
opHash256 = 158,
opCodeSeperator = 159,
opCheckSigVerify1 = 160,
opCheckSig = 161,
opCheckMultisigVerify1 = 162,
opCheckMultisigVerify2 = 163,
opCheckMultisigVerify3 = 164,
opCheckMultisigVerify4 = 165,
opCheckMultisigVerify5 = 166,
opCheckMultisigVerify6 = 167,
opCheckMultisigVerify7 = 168,
opCheckMultisig = 169,
opCheckLocktimeVerify1 = 170,
opCheckLocktimeVerify2 = 171,
opCheckLocktimeVerify3 = 172,
opCheckLocktimeVerify4 = 173,
opCheckLocktimeVerify5 = 174,
opCheckLocktimeVerify6 = 175,
opCheckSequenceVerify1 = 176,
opCheckSequenceVerify2 = 177,
opCheckSequenceVerify3 = 178,
opCheckSequenceVerify4 = 179,
opCheckSequenceVerify5 = 180,
opCheckSequenceVerify6 = 181,
opCheckSequenceVerify7 = 182