diff --git a/src/node/cli.rs b/src/node/cli.rs index 48c0ecc70..7fd95038d 100644 --- a/src/node/cli.rs +++ b/src/node/cli.rs @@ -32,9 +32,16 @@ pub struct HlNodeArgs { #[command(flatten)] pub block_source_args: BlockSourceArgs, + /// Upstream RPC URL to forward incoming transactions. #[arg(long, env = "UPSTREAM_RPC_URL")] pub upstream_rpc_url: Option, + /// Enable hl-node compliant mode. + /// + /// This option + /// 1. filters out system transactions from block transaction list. + /// 2. filters out logs that are not from the block's transactions. + /// 3. filters out logs and transactions from subscription. #[arg(long, env = "HL_NODE_COMPLIANT")] pub hl_node_compliant: bool, }