Skip to content

Commit

Permalink
clippy + fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
drahnr committed Mar 4, 2025
1 parent a98ed9b commit 3102a21
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion fendermint/app/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ use crate::validators::ValidatorCache;
use crate::AppExitCode;
use crate::BlockHeight;
use crate::{tmconv::*, VERSION};
use actors_custom_api::gas_market::Reading;
use anyhow::{anyhow, Context, Result};
use async_stm::{atomically, atomically_or_err};
use async_trait::async_trait;
use cid::Cid;
use fendermint_abci::util::take_until_max_size;
use fendermint_abci::{AbciResult, Application};
use actors_custom_api::gas_market::Reading;
use fendermint_crypto::PublicKey;
use fendermint_storage::{
Codec, Encode, KVCollection, KVRead, KVReadable, KVStore, KVWritable, KVWrite,
Expand Down
2 changes: 1 addition & 1 deletion fendermint/vm/interpreter/src/fvm/exec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ use super::{
};
use crate::fvm::activity::ValidatorActivityTracker;
use crate::ExecInterpreter;
use actors_custom_api::gas_market::Reading;
use anyhow::Context;
use async_trait::async_trait;
use actors_custom_api::gas_market::Reading;
use fendermint_vm_actor_interface::{chainmetadata, cron, system};
use fvm::executor::ApplyRet;
use fvm_ipld_blockstore::Blockstore;
Expand Down
2 changes: 1 addition & 1 deletion fendermint/vm/interpreter/src/fvm/state/exec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ use crate::fvm::activity::actor::ActorActivityTracker;
use crate::fvm::externs::FendermintExterns;
use crate::fvm::gas::BlockGasTracker;
use crate::fvm::state::priority::TxnPriorityCalculator;
use actors_custom_api::gas_market::Reading;
use anyhow::Ok;
use cid::Cid;
use actors_custom_api::gas_market::Reading;
use fendermint_crypto::PublicKey;
use fendermint_vm_actor_interface::eam::EthAddress;
use fendermint_vm_core::{chainid::HasChainID, Timestamp};
Expand Down
2 changes: 1 addition & 1 deletion fendermint/vm/interpreter/src/fvm/state/genesis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

use std::sync::Arc;

use actors_custom_car::Manifest as CustomActorManifest;
use anyhow::{anyhow, bail, Context};
use cid::{multihash::Code, Cid};
use ethers::{abi::Tokenize, core::abi::Abi};
use actors_custom_car::Manifest as CustomActorManifest;
use fendermint_vm_actor_interface::{
account::{self, ACCOUNT_ACTOR_CODE_ID},
eam::{self, EthAddress},
Expand Down
4 changes: 2 additions & 2 deletions fendermint/vm/interpreter/src/genesis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@ pub struct GenesisOutput {
pub struct GenesisBuilder<'a> {
/// Hardhat like util to deploy ipc contracts
hardhat: Hardhat,
/// The built in actors bundle path
/// The builtin actors bundle
builtin_actors: &'a [u8],
/// The custom actors bundle path
/// The custom actors bundle
custom_actors: &'a [u8],

/// Genesis params
Expand Down

0 comments on commit 3102a21

Please sign in to comment.