Skip to content

Commit

Permalink
cargo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
dkijania committed Nov 24, 2020
1 parent 3806d79 commit 9017ca3
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -23,8 +23,8 @@ use std::str::FromStr;
#[test]
pub fn more_than_one_stake_pool_in_app() {
let mut first_spo = startup::create_new_account_address();
let mut second_spo = startup::create_new_account_address();
let mut third_spo = startup::create_new_account_address();
let second_spo = startup::create_new_account_address();
let third_spo = startup::create_new_account_address();

let (jormungandr, _) = startup::start_stake_pool(
&[first_spo.clone(), second_spo.clone(), third_spo.clone()],
Expand Down

0 comments on commit 9017ca3

Please sign in to comment.