Skip to content

Commit

Permalink
cargo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kukkok3 committed Feb 21, 2024
1 parent 113ce98 commit 72cfb80
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ mod votes_only;

use crate::mjolnir_lib::MjolnirError;
use clap::Parser;
pub use votes_only::VotesOnly;

#[derive(Parser, Debug)]
pub enum Adversary {
VotesOnly(votes_only::VotesOnly),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ mod tx_only;

use crate::mjolnir_lib::MjolnirError;
use clap::Parser;
pub use tx_only::TxOnly;

#[derive(Parser, Debug)]
pub enum Batch {
/// Prints nodes related data, like stats,fragments etc.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ mod votes_only;

use crate::mjolnir_lib::MjolnirError;
use clap::Parser;
pub use votes_only::VotesOnly;


#[derive(Parser, Debug)]
pub enum Adversary {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ mod all;
mod tx_only;

use crate::mjolnir_lib::MjolnirError;
pub use adversary::Adversary;
pub use all::AllFragments;


use clap::Parser;
pub use tx_only::TxOnly;

#[derive(Parser, Debug)]
pub enum Standard {
/// Put load on endpoint using transaction fragments only.
Expand Down
2 changes: 1 addition & 1 deletion src/vit-testing/valgrind/src/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pub use vit_servicing_station_lib::{
db::models::funds::Fund, db::models::proposals::Proposal,
v0::endpoints::service_version::ServiceVersion as VitVersion,
};
pub use wallet_core::{Choice, Value};


pub trait ProposalExtension {
fn chain_proposal_id_as_str(&self) -> String;
Expand Down

0 comments on commit 72cfb80

Please sign in to comment.