Skip to content

Commit 66aed1a

Browse files
committed
chore: fmt
1 parent 2b9521c commit 66aed1a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

clarity/src/vm/clarity_wasm.rs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7960,7 +7960,8 @@ mod error_mapping {
79607960
Error::Runtime(RuntimeErrorType::UnwrapFailure, Some(Vec::new()))
79617961
}
79627962
ErrorMap::ShortReturnAssertionFailure => {
7963-
let clarity_val = short_return_value(&instance, &mut store, epoch_id, clarity_version);
7963+
let clarity_val =
7964+
short_return_value(&instance, &mut store, epoch_id, clarity_version);
79647965
Error::ShortReturn(ShortReturnType::AssertionFailed(clarity_val))
79657966
}
79667967
ErrorMap::ArithmeticPowError => Error::Runtime(
@@ -7987,7 +7988,8 @@ mod error_mapping {
79877988
Error::Unchecked(CheckErrors::NameAlreadyUsed(arg_name))
79887989
}
79897990
ErrorMap::ShortReturnExpectedValueResponse => {
7990-
let clarity_val = short_return_value(&instance, &mut store, epoch_id, clarity_version);
7991+
let clarity_val =
7992+
short_return_value(&instance, &mut store, epoch_id, clarity_version);
79917993
Error::ShortReturn(ShortReturnType::ExpectedValue(Value::Response(
79927994
ResponseData {
79937995
committed: false,
@@ -8001,7 +8003,8 @@ mod error_mapping {
80018003
)))
80028004
}
80038005
ErrorMap::ShortReturnExpectedValue => {
8004-
let clarity_val = short_return_value(&instance, &mut store, epoch_id, clarity_version);
8006+
let clarity_val =
8007+
short_return_value(&instance, &mut store, epoch_id, clarity_version);
80058008
Error::ShortReturn(ShortReturnType::ExpectedValue(clarity_val))
80068009
}
80078010
ErrorMap::ArgumentCountMismatch => {

0 commit comments

Comments
 (0)