remove search by outputs feature

This commit is contained in:
aglkm
2024-06-05 06:20:40 +03:00
parent 080a02ebe0
commit 5f6ad8ca2c
6 changed files with 4 additions and 154 deletions

View File

@@ -133,29 +133,6 @@ impl Kernel {
}
// Output data
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Output {
pub height: String,
pub commit: String,
pub out_type: String,
pub status: String,
pub raw_data: String,
}
impl Output {
pub fn new() -> Output {
Output {
height: String::new(),
commit: String::new(),
out_type: String::new(),
status: String::new(),
raw_data: String::new(),
}
}
}
// Transactions data
#[derive(Debug)]
pub struct Transactions {