We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc2b7a1 commit 09f06c9Copy full SHA for 09f06c9
clarity/src/vm/clarity_wasm.rs
@@ -7810,7 +7810,9 @@ mod error_mapping {
7810
Error::Runtime(RuntimeErrorType::UnwrapFailure, Some(Vec::new()))
7811
}
7812
ErrorMap::Panic => {
7813
- panic!("An error has been detected in the code")
+ // TODO: see issue: #531
7814
+ // This RuntimeErrorType::UnwrapFailure need to have a proper context.
7815
+ Error::Runtime(RuntimeErrorType::UnwrapFailure, Some(Vec::new()))
7816
7817
// TODO: UInt(42) value below is just a placeholder.
7818
// It should be replaced by the current "thrown-value" when clarity-wasm issue #385 is resolved.
0 commit comments