diff --git a/rpc_sidecar/src/node_client.rs b/rpc_sidecar/src/node_client.rs index 0eda4eb7..fab2492e 100644 --- a/rpc_sidecar/src/node_client.rs +++ b/rpc_sidecar/src/node_client.rs @@ -33,9 +33,9 @@ use casper_types::{ bytesrepr::{self, FromBytes, ToBytes}, contracts::ContractPackage, system::auction::DelegatorKind, - AvailableBlockRange, BlockHash, BlockHeader, BlockIdentifier, ChainspecRawBytes, Digest, - GlobalStateIdentifier, Key, KeyTag, Package, Peers, ProtocolVersion, PublicKey, BlockWithSignatures, - StoredValue, Transaction, TransactionHash, Transfer, + AvailableBlockRange, BlockHash, BlockHeader, BlockIdentifier, BlockWithSignatures, + ChainspecRawBytes, Digest, GlobalStateIdentifier, Key, KeyTag, Package, Peers, ProtocolVersion, + PublicKey, StoredValue, Transaction, TransactionHash, Transfer, }; use std::{ fmt::{self, Display, Formatter}, diff --git a/rpc_sidecar/src/rpcs/chain.rs b/rpc_sidecar/src/rpcs/chain.rs index 4cad85fb..f2356370 100644 --- a/rpc_sidecar/src/rpcs/chain.rs +++ b/rpc_sidecar/src/rpcs/chain.rs @@ -411,8 +411,8 @@ mod tests { use casper_types::{ system::auction::{DelegatorKind, EraInfo, SeigniorageAllocation}, testing::TestRng, - AsymmetricType, Block, BlockSignaturesV1, BlockSignaturesV2, ChainNameDigest, PublicKey, - BlockWithSignatures, TestBlockBuilder, TestBlockV1Builder, U512, + AsymmetricType, Block, BlockSignaturesV1, BlockSignaturesV2, BlockWithSignatures, + ChainNameDigest, PublicKey, TestBlockBuilder, TestBlockV1Builder, U512, }; use pretty_assertions::assert_eq; use rand::Rng; diff --git a/rpc_sidecar/src/rpcs/common.rs b/rpc_sidecar/src/rpcs/common.rs index 07492465..e75f3879 100644 --- a/rpc_sidecar/src/rpcs/common.rs +++ b/rpc_sidecar/src/rpcs/common.rs @@ -8,9 +8,9 @@ use serde::{Deserialize, Serialize}; use crate::rpcs::error::Error; use casper_types::{ bytesrepr::ToBytes, contracts::ContractPackage, global_state::TrieMerkleProof, Account, - AddressableEntity, AvailableBlockRange, BlockHeader, BlockIdentifier, ByteCode, Contract, - ContractWasm, EntityAddr, EntryPointValue, GlobalStateIdentifier, Key, NamedKeys, Package, - BlockWithSignatures, StoredValue, + AddressableEntity, AvailableBlockRange, BlockHeader, BlockIdentifier, BlockWithSignatures, + ByteCode, Contract, ContractWasm, EntityAddr, EntryPointValue, GlobalStateIdentifier, Key, + NamedKeys, Package, StoredValue, }; use crate::NodeClient;