Skip to content

Commit 664ecc4

Browse files
committed
chore: cargo fmt
1 parent 259fb4a commit 664ecc4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/runnner/deno.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1215,7 +1215,7 @@ fn mine_block(state: &mut OpState, args: Value, _: ()) -> Result<String, AnyErro
12151215
};
12161216
let result = match execution.result {
12171217
Some(output) => format!("{}", output),
1218-
_ => unreachable!("Value empty")
1218+
_ => unreachable!("Value empty"),
12191219
};
12201220
receipts.push((result, execution.events));
12211221
} else {
@@ -1231,7 +1231,7 @@ fn mine_block(state: &mut OpState, args: Value, _: ()) -> Result<String, AnyErro
12311231
.unwrap(); // todo(ludo)
12321232
let result = match execution.result {
12331233
Some(output) => format!("{}", output),
1234-
_ => unreachable!("Value empty")
1234+
_ => unreachable!("Value empty"),
12351235
};
12361236
receipts.push((result, execution.events));
12371237
} else if let Some(ref args) = tx.transfer_stx {
@@ -1244,7 +1244,7 @@ fn mine_block(state: &mut OpState, args: Value, _: ()) -> Result<String, AnyErro
12441244
.unwrap(); // todo(ludo)
12451245
let result = match execution.result {
12461246
Some(output) => format!("{}", output),
1247-
_ => unreachable!("Value empty")
1247+
_ => unreachable!("Value empty"),
12481248
};
12491249
receipts.push((result, execution.events));
12501250
}
@@ -1316,7 +1316,7 @@ fn call_read_only_fn(state: &mut OpState, args: Value, _: ()) -> Result<String,
13161316
.unwrap(); // todo(ludo)
13171317
let result = match execution.result {
13181318
Some(output) => format!("{}", output),
1319-
_ => unreachable!("Value empty")
1319+
_ => unreachable!("Value empty"),
13201320
};
13211321
Ok((result, execution.events))
13221322
})?;

0 commit comments

Comments
 (0)