From 873c268463457ff7ecf63683413f72c254a29824 Mon Sep 17 00:00:00 2001 From: dzmitry-lahoda Date: Thu, 18 Apr 2024 21:14:18 +0100 Subject: [PATCH] need to build route --- mantis/node/src/mantis/blackbox/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mantis/node/src/mantis/blackbox/mod.rs b/mantis/node/src/mantis/blackbox/mod.rs index 668706b..5fb268c 100644 --- a/mantis/node/src/mantis/blackbox/mod.rs +++ b/mantis/node/src/mantis/blackbox/mod.rs @@ -106,9 +106,10 @@ pub async fn get_routes( .pop() .expect("at least one route"); + panic!("route: {:?}", route); let mut program = CvmProgram::default(); build_next(&mut program, &mut route.next, cvm_glt, salt); - panic!("so need to build instruction so can plug into one program (transaction)") + panic!("program: {:?}", program); } }