Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yjhmelody committed Nov 16, 2023
1 parent 089acde commit 6933fe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion substrate/primitives/state-machine/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1124,7 +1124,7 @@ mod tests {
_method: &str,
_data: &[u8],
_: CallContext,
) -> (CallResult<Self::Error>, bool) {
) -> CallResult<Self::Error> {
let using_native = self.native_available;
match (using_native, self.native_succeeds, self.fallback_succeeds) {
(true, true, _) | (false, _, true) => Ok(vec![
Expand Down

0 comments on commit 6933fe7

Please sign in to comment.