From da5a750965dbec5a2c003faa8fb9f1dd110ccce8 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Mon, 18 May 2026 17:25:29 +0800 Subject: Implement REPL execution with hooks and argument splitting --- mingling_core/src/asset/chain/error.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mingling_core/src/asset') diff --git a/mingling_core/src/asset/chain/error.rs b/mingling_core/src/asset/chain/error.rs index 4269c62..ce69bc5 100644 --- a/mingling_core/src/asset/chain/error.rs +++ b/mingling_core/src/asset/chain/error.rs @@ -47,6 +47,9 @@ impl From for ChainProcessError { ProgramInternalExecuteError::IO(e) => { ChainProcessError::Other(format!("IOError: {:?}", e)) } + ProgramInternalExecuteError::REPLPanic(program_panic) => { + ChainProcessError::Other(format!("REPLPanic: {}", program_panic)) + } } } } -- cgit