summaryrefslogtreecommitdiff
path: root/mingling/src/asset/chain/error.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-29 21:48:23 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-29 21:48:23 +0800
commit596e5e2440df2d32f1cf3e052dc633e774edf6ee (patch)
treedc98eb6a1789847b899207d0b99337bb3ccd92a5 /mingling/src/asset/chain/error.rs
parent25a164f74c011e6e78846f226cbd7a8bd87db92f (diff)
Rename mingling to mingling_core and update dependencies
Diffstat (limited to 'mingling/src/asset/chain/error.rs')
-rw-r--r--mingling/src/asset/chain/error.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/mingling/src/asset/chain/error.rs b/mingling/src/asset/chain/error.rs
deleted file mode 100644
index d4da4ac..0000000
--- a/mingling/src/asset/chain/error.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-use crate::AnyOutput;
-
-#[derive(thiserror::Error, Debug)]
-pub enum ChainProcessError {
- #[error("Other error: {0}")]
- Other(String),
-
- #[error("IO error: {0}")]
- IO(#[from] std::io::Error),
-
- #[error("Broken chain")]
- Broken(AnyOutput),
-}