File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
crates/algokit_transact/src Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,19 +12,19 @@ use snafu::Snafu;
1212/// manipulating, serializing, or deserializing Algorand transactions.
1313#[ derive( Debug , Snafu ) ]
1414pub enum AlgoKitTransactError {
15- #[ snafu( display( "Error ocurred during encoding: {source}" ) ) ]
15+ #[ snafu( display( "Error occurred during encoding: {source}" ) ) ]
1616 EncodingError { source : rmp_serde:: encode:: Error } ,
1717
18- #[ snafu( display( "Error ocurred during decoding: {source}" ) ) ]
18+ #[ snafu( display( "Error occurred during decoding: {source}" ) ) ]
1919 DecodingError { source : rmp_serde:: decode:: Error } ,
2020
21- #[ snafu( display( "Error ocurred during msgpack encoding: {source}" ) ) ]
21+ #[ snafu( display( "Error occurred during msgpack encoding: {source}" ) ) ]
2222 MsgpackEncodingError { source : rmpv:: encode:: Error } ,
2323
24- #[ snafu( display( "Error ocurred during msgpack decoding: {source}" ) ) ]
24+ #[ snafu( display( "Error occurred during msgpack decoding: {source}" ) ) ]
2525 MsgpackDecodingError { source : rmpv:: decode:: Error } ,
2626
27- #[ snafu( display( "Error ocurred during decoding at path {path}: {source}" ) ) ]
27+ #[ snafu( display( "Error occurred during decoding at path {path}: {source}" ) ) ]
2828 DecodingErrorWithPath {
2929 path : String ,
3030 source : rmp_serde:: decode:: Error ,
You can’t perform that action at this time.
0 commit comments