Skip to content

Commit

Permalink
randomize
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmitry-lahoda committed Apr 19, 2024
1 parent adaba4e commit 9ab5288
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mantis/node/src/mantis/blackbox/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,9 @@ pub async fn solve<Decider: Get<bool>>(
.await;

if cvm_program.is_err() {
log::error!("cvm_program error: {:?}", cvm_program);
log::error!("cvm_program error formation: {:?}", cvm_program);
} else {
log::info!("cvm_program found: {:?}", cvm_program);
}
cvm_program.ok()
} else {
Expand All @@ -220,6 +222,7 @@ pub async fn solve<Decider: Get<bool>>(
)
})
} else {
log::trace!("decided not cross chain");
None
};
let msg = SolutionSubMsg {
Expand Down

0 comments on commit 9ab5288

Please sign in to comment.