Skip to content

Commit

Permalink
more renames
Browse files Browse the repository at this point in the history
  • Loading branch information
DaughterOfMars committed Oct 30, 2024
1 parent 29ba58b commit 29600a1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions crates/iota-rust-sdk/src/types/execution_status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ mod serialization {
max_object_size: u64,
},
CertificateDenied,
IotaMoveVerificationTimedout,
IotaMoveVerificationTimeout,
SharedObjectOperationNotAllowed,
InputObjectDeleted,
ExecutionCancelledDueToSharedObjectCongestion {
Expand Down Expand Up @@ -536,7 +536,7 @@ mod serialization {
max_object_size: u64,
},
CertificateDenied,
IotaMoveVerificationTimedout,
IotaMoveVerificationTimeout,
SharedObjectOperationNotAllowed,
InputObjectDeleted,
ExecutionCancelledDueToSharedObjectCongestion {
Expand Down Expand Up @@ -651,7 +651,7 @@ mod serialization {
},
Self::CertificateDenied => ReadableExecutionError::CertificateDenied,
Self::IotaMoveVerificationTimeout => {
ReadableExecutionError::IotaMoveVerificationTimedout
ReadableExecutionError::IotaMoveVerificationTimeout
}
Self::SharedObjectOperationNotAllowed => {
ReadableExecutionError::SharedObjectOperationNotAllowed
Expand Down Expand Up @@ -760,7 +760,7 @@ mod serialization {
},
Self::CertificateDenied => BinaryExecutionError::CertificateDenied,
Self::IotaMoveVerificationTimeout => {
BinaryExecutionError::IotaMoveVerificationTimedout
BinaryExecutionError::IotaMoveVerificationTimeout
}
Self::SharedObjectOperationNotAllowed => {
BinaryExecutionError::SharedObjectOperationNotAllowed
Expand Down Expand Up @@ -881,7 +881,7 @@ mod serialization {
max_object_size,
},
ReadableExecutionError::CertificateDenied => Self::CertificateDenied,
ReadableExecutionError::IotaMoveVerificationTimedout => {
ReadableExecutionError::IotaMoveVerificationTimeout => {
Self::IotaMoveVerificationTimeout
}
ReadableExecutionError::SharedObjectOperationNotAllowed => {
Expand Down Expand Up @@ -987,7 +987,7 @@ mod serialization {
max_object_size,
},
BinaryExecutionError::CertificateDenied => Self::CertificateDenied,
BinaryExecutionError::IotaMoveVerificationTimedout => {
BinaryExecutionError::IotaMoveVerificationTimeout => {
Self::IotaMoveVerificationTimeout
}
BinaryExecutionError::SharedObjectOperationNotAllowed => {
Expand Down

0 comments on commit 29600a1

Please sign in to comment.