Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
dnkolegov committed Jan 9, 2024
1 parent 18c0b6d commit a78fa00
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions fendermint/fendermint/testing/contract-test/src/ipc/subnet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ use fendermint_vm_message::conv::{from_eth, from_fvm};
use fvm_ipld_blockstore::Blockstore;
use fvm_shared::crypto::signature::SECP_SIG_LEN;
use fvm_shared::econ::TokenAmount;
use ipc_actors_abis::subnet_actor_checkpointing_facet::{
self as checkpointer, SubnetActorCheckpointingFacet,
};
use ipc_actors_abis::subnet_actor_getter_facet::{self as getter, SubnetActorGetterFacet};
use ipc_actors_abis::subnet_actor_manager_facet::{SubnetActorManagerFacet};
use ipc_actors_abis::subnet_actor_checkpointing_facet::{self as checkpointer, SubnetActorCheckpointingFacet};
use ipc_actors_abis::subnet_actor_manager_facet::SubnetActorManagerFacet;

pub use ipc_actors_abis::register_subnet_facet::ConstructorParams as SubnetConstructorParams;
use ipc_actors_abis::subnet_actor_reward_facet::SubnetActorRewardFacet;
Expand All @@ -25,7 +27,8 @@ pub struct SubnetCaller<DB> {
getter: ContractCaller<DB, SubnetActorGetterFacet<MockProvider>, NoRevert>,
manager: ContractCaller<DB, SubnetActorManagerFacet<MockProvider>, SubnetActorErrors>,
rewarder: ContractCaller<DB, SubnetActorRewardFacet<MockProvider>, SubnetActorErrors>,
checkpointer: ContractCaller<DB, SubnetActorCheckpointingFacet<MockProvider>, SubnetActorErrors>,
checkpointer:
ContractCaller<DB, SubnetActorCheckpointingFacet<MockProvider>, SubnetActorErrors>,
}

impl<DB> SubnetCaller<DB> {
Expand Down

0 comments on commit a78fa00

Please sign in to comment.