Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell committed Sep 10, 2024
1 parent 7f540a8 commit 9be5f0f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/rpc-types-engine/src/forkchoice.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use super::{PayloadStatus, PayloadStatusEnum};
use crate::PayloadId;
use alloy_primitives::B256;
use serde::{Deserialize, Serialize};
use core::result::Result;
use serde::{Deserialize, Serialize};

/// invalid forkchoice state error code.
pub const INVALID_FORK_CHOICE_STATE_ERROR: i32 = -38002;
Expand Down
5 changes: 4 additions & 1 deletion crates/rpc-types-engine/src/payload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ use alloy_eips::{
};
use alloy_primitives::{Address, Bloom, Bytes, B256, B64, U256};
use alloy_rpc_types_eth::{transaction::BlobTransactionSidecar, Withdrawal};
use core::{iter::{FromIterator, IntoIterator}, result::Result};
use core::{
iter::{FromIterator, IntoIterator},
result::Result,
};
use serde::{ser::SerializeMap, Deserialize, Deserializer, Serialize, Serializer};

/// The execution payload body response that allows for `null` values.
Expand Down

0 comments on commit 9be5f0f

Please sign in to comment.