Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Maciej Wójcik committed Mar 6, 2024
1 parent 2ce7d6c commit 5095ae3
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
use std::{collections::BTreeSet, iter::FromIterator};
use std::collections::BTreeMap;
use std::{
collections::{BTreeMap, BTreeSet},
iter::FromIterator,
};

use assert_matches::assert_matches;
use num_traits::{One, Zero};
Expand Down Expand Up @@ -33,14 +35,13 @@ use casper_types::{
auction::{
self, BidsExt, DelegationRate, EraValidators, Error as AuctionError, UnbondingPurses,
ValidatorWeights, ARG_AMOUNT, ARG_DELEGATION_RATE, ARG_DELEGATOR, ARG_ENTRY_POINT,
ARG_NEW_PUBLIC_KEY, ARG_NEW_VALIDATOR, ARG_PUBLIC_KEY, ARG_VALIDATOR, ERA_ID_KEY,
INITIAL_ERA_ID, METHOD_DISTRIBUTE,
ARG_NEW_PUBLIC_KEY, ARG_NEW_VALIDATOR, ARG_PUBLIC_KEY, ARG_REWARDS_MAP, ARG_VALIDATOR,
ERA_ID_KEY, INITIAL_ERA_ID, METHOD_DISTRIBUTE,
},
},
EntityAddr, EraId, GenesisAccount, GenesisConfigBuilder, GenesisValidator, Key, Motes,
ProtocolVersion, PublicKey, SecretKey, U256, U512,
};
use casper_types::system::auction::ARG_REWARDS_MAP;

const ARG_TARGET: &str = "target";

Expand Down

0 comments on commit 5095ae3

Please sign in to comment.