Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
poplexity committed Aug 12, 2024
1 parent a6011b2 commit 3fb7a81
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 10 deletions.
5 changes: 0 additions & 5 deletions bin/reth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ discv5.workspace = true
# telos
reth-node-telos = { workspace = true, optional = true }
reth-telos-rpc = { workspace = true, optional = true }
antelope-client = { workspace = true, optional = true }

[target.'cfg(unix)'.dependencies]
tikv-jemallocator = { version = "0.5.0", optional = true }
Expand Down Expand Up @@ -154,12 +153,8 @@ optimism = [
ethereum = []

telos = [
"dep:antelope-client",
"dep:reth-node-telos",
"dep:reth-telos-rpc",
# "reth-rpc/telos",
# "reth-network/telos",
# "reth-node-core/telos",
]

[[bin]]
Expand Down
1 change: 0 additions & 1 deletion bin/reth/src/telos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

use std::sync::Arc;
use clap::Parser;
use reth::cli::Cli;
use reth_node_telos::TelosArgs;
use reth_node_telos::TelosNode;
use reth_telos_rpc::TelosClient;
Expand Down
2 changes: 0 additions & 2 deletions crates/telos/node/src/args.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
//! clap [Args](clap::Args) for telos configuration
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Default, PartialEq, Eq, clap::Args)]
#[clap(next_help_heading = "Telos")]
pub struct TelosArgs {
Expand Down
1 change: 0 additions & 1 deletion crates/telos/node/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ use reth_evm_ethereum::EthEvmConfig;
use reth_node_api::{FullNodeTypes, NodeTypes};
use reth_node_builder::components::ComponentsBuilder;
use reth_node_builder::{Node, PayloadTypes};
use reth_node_ethereum::EthereumNode;
use reth_node_ethereum::node::{EthereumAddOns, EthereumConsensusBuilder, EthereumExecutorBuilder, EthereumNetworkBuilder, EthereumPayloadBuilder, EthereumPoolBuilder};
use crate::args::TelosArgs;

Expand Down
2 changes: 1 addition & 1 deletion crates/telos/rpc/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ struct TelosClientInner {
}

#[derive(StructPacker)]
pub struct RawActionData {
struct RawActionData {
pub ram_payer: Name,
pub tx: Vec<u8>,
pub estimate_gas: bool,
Expand Down

0 comments on commit 3fb7a81

Please sign in to comment.