Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed unused struct #867

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

stable is probably correct.

toolchain: 1.76.0

- name: Install nextest
uses: taiki-e/install-action@nextest
Expand Down
6 changes: 4 additions & 2 deletions zingocli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,8 @@ pub fn run_cli() {
if let Err(e) = LightClient::init_logging() {
eprintln!("Could not initialize logging: {e}")
};
let cli_config = ConfigTemplate::fill(build_clap_app()).unwrap();
dispatch_command_or_start_interactive(&cli_config);
match ConfigTemplate::fill(build_clap_app()) {
Ok(cli_config) => dispatch_command_or_start_interactive(&cli_config),
Err(e) => eprintln!("Error filling config template: {e:?}"),
}
}
4 changes: 0 additions & 4 deletions zingolib/src/wallet/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -577,8 +577,6 @@ pub mod finsight {
}
}
pub mod summaries {
use std::collections::HashMap;

use json::{object, JsonValue};
use zcash_primitives::transaction::TxId;

Expand Down Expand Up @@ -701,8 +699,6 @@ pub mod summaries {
}
}
}

pub struct TransactionIndex(HashMap<zcash_primitives::transaction::TxId, ValueTransfer>);
}

pub use crate::wallet::transaction_record::TransactionRecord;
Expand Down
Loading