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
use std::{fmt::Display, num::ParseIntError};
use thiserror::*;
#[derive(Debug, Error)]
pub enum BSVErrors {
#[error("{0}")]
ECDSAError(
#[source]
#[from]
ecdsa::Error,
),
#[error("{0}")]
CurveError(
#[source]
#[from]
elliptic_curve::Error,
),
#[error("{0}")]
HexDecode(
#[source]
#[from]
hex::FromHexError,
),
#[error("{0}")]
Base58Decode(
#[source]
#[from]
bs58::decode::Error,
),
#[error("{0}")]
Io(
#[source]
#[from]
std::io::Error,
),
#[error("{0}")]
ParseInt(
#[source]
#[from]
ParseIntError,
),
#[error("{0}")]
RandomnessGeneration(
#[source]
#[from]
getrandom::Error,
),
#[error("{0}")]
Json(
#[source]
#[from]
serde_json::Error,
),
#[error("{0}")]
InvalidKeyIvLength(
#[source]
#[from]
block_modes::InvalidKeyIvLength,
),
#[error("{0}")]
BlockModeError(
#[source]
#[from]
block_modes::BlockModeError,
),
#[error("Unable to recover public key: {0} {1:?}")]
PublicKeyRecoveryError(String, #[source] Option<ecdsa::Error>),
#[error("Unable to verify message: {0}")]
MessageVerification(String),
#[error("Error generating Script: {0}")]
GenerateScript(String),
#[error("Could not calculate private key bytes from seed: {0}")]
InvalidSeedHmacError(String),
#[error("Unable to derive child key: {0}")]
DerivationError(String),
#[error("Unable to retrieve private key from WIF: {0}")]
FromWIF(String),
#[error("Unable to convert to sighash: {0}")]
ToSighash(String),
#[error("Unable to convert from sighash: {0}")]
FromSighash(String),
#[error("{0}")]
OutOfBounds(String),
#[error("Error deserialising transaction field {0}: {1}")]
DeserialiseTransaction(String, #[source] std::io::Error),
#[error("Error Serialising transaction field {0}: {1}")]
SerialiseTransaction(String, #[source] std::io::Error),
#[error("Error when deserialising Script: {0}")]
DeserialiseScript(String),
#[error("Error when Serialising Script: {0} {1:?}")]
SerialiseScript(String, #[source] Option<std::io::Error>),
#[error("Error deserialising TxIn field {0}: {1}")]
DeserialiseTxIn(String, #[source] std::io::Error),
#[error("Error serialising TxIn field {0}: {1}")]
SerialiseTxIn(String, #[source] std::io::Error),
#[error("Error deserialising TxOut field {0}: {1}")]
DeserialiseTxOut(String, #[source] std::io::Error),
#[error("Error serialising TxOut field {0}: {1}")]
SerialiseTxOut(String, #[source] std::io::Error),
}