tari-rust/src/main.rs

717 lines
25 KiB
Rust
Raw Normal View History

2025-06-25 12:34:00 +00:00
// Copyright 2024. The Tari Project
//
// Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
// following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
// disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
// following disclaimer in the documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
// products derived from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
// USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
use std::{collections::HashMap, path::PathBuf, sync::Arc, time::Duration};
use anyhow::{anyhow, Result};
use clap::Parser;
use log::*;
use serde::{Deserialize, Serialize};
use tokio::{sync::Mutex, time::sleep};
use tonic::transport::{Certificate, ClientTlsConfig, Endpoint};
use zmq::{Context, Message, Socket};
use minotari_app_grpc::{
authentication::ClientAuthenticationInterceptor,
conversions::transaction_output::grpc_output_with_payref,
tari_rpc::{
base_node_client::BaseNodeClient, pow_algo::PowAlgos, Block, NewBlockTemplateRequest, PowAlgo,
SubmitBlockResponse,
},
};
use minotari_app_utilities::parse_miner_input::BaseNodeGrpcClient;
use std::str::FromStr;
use tari_common::configuration::Network;
use tari_common::MAX_GRPC_MESSAGE_SIZE;
use tari_common_types::{grpc_authentication::GrpcAuthentication, tari_address::TariAddress};
use tari_core::{
consensus::ConsensusManager,
transactions::{
generate_coinbase,
tari_amount::MicroMinotari,
transaction_components::{
encrypted_data::{PaymentId, TxType},
CoinBaseExtra, RangeProofType,
},
transaction_key_manager::{create_memory_db_key_manager, MemoryDbKeyManager},
},
};
use tari_utilities::hex::Hex;
2025-06-26 07:22:52 +00:00
use hex::FromHex;
2025-06-25 12:34:00 +00:00
const LOG_TARGET: &str = "gbt::main";
2025-06-26 07:22:52 +00:00
// 自定义的Block结构体用于16进制序列化
#[derive(Debug, Serialize, Deserialize)]
struct HexBlock {
header: Option<HexBlockHeader>,
body: Option<serde_json::Value>, // 保持原有的body结构
}
#[derive(Debug, Serialize, Deserialize)]
struct HexBlockHeader {
#[serde(serialize_with = "serialize_bytes_as_hex")]
hash: Vec<u8>,
version: u32,
height: u64,
#[serde(serialize_with = "serialize_bytes_as_hex")]
prev_hash: Vec<u8>,
timestamp: u64,
#[serde(serialize_with = "serialize_bytes_as_hex")]
output_mr: Vec<u8>,
#[serde(serialize_with = "serialize_bytes_as_hex")]
block_output_mr: Vec<u8>,
#[serde(serialize_with = "serialize_bytes_as_hex")]
kernel_mr: Vec<u8>,
#[serde(serialize_with = "serialize_bytes_as_hex")]
input_mr: Vec<u8>,
#[serde(serialize_with = "serialize_bytes_as_hex")]
total_kernel_offset: Vec<u8>,
nonce: u64,
pow: HexProofOfWork,
kernel_mmr_size: u64,
output_mmr_size: u64,
#[serde(serialize_with = "serialize_bytes_as_hex")]
total_script_offset: Vec<u8>,
#[serde(serialize_with = "serialize_bytes_as_hex")]
validator_node_mr: Vec<u8>,
validator_node_size: u64,
}
#[derive(Debug, Serialize, Deserialize)]
struct HexProofOfWork {
pow_algo: u64,
#[serde(serialize_with = "serialize_bytes_as_hex")]
pow_data: Vec<u8>,
}
// 自定义序列化函数将字节数组序列化为16进制字符串
fn serialize_bytes_as_hex<S>(bytes: &[u8], serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
let hex_string = hex::encode(bytes);
serializer.serialize_str(&hex_string)
}
// 将Block转换为HexBlock
fn convert_block_to_hex(block: &Block) -> Result<HexBlock> {
let header = if let Some(ref h) = block.header {
Some(HexBlockHeader {
hash: h.hash.clone(),
version: h.version,
height: h.height,
prev_hash: h.prev_hash.clone(),
timestamp: h.timestamp,
output_mr: h.output_mr.clone(),
block_output_mr: h.block_output_mr.clone(),
kernel_mr: h.kernel_mr.clone(),
input_mr: h.input_mr.clone(),
total_kernel_offset: h.total_kernel_offset.clone(),
nonce: h.nonce,
pow: HexProofOfWork {
pow_algo: h.pow.as_ref().map(|p| p.pow_algo).unwrap_or(0),
pow_data: h.pow.as_ref().map(|p| p.pow_data.clone()).unwrap_or_default(),
},
kernel_mmr_size: h.kernel_mmr_size,
output_mmr_size: h.output_mmr_size,
total_script_offset: h.total_script_offset.clone(),
validator_node_mr: h.validator_node_mr.clone(),
validator_node_size: h.validator_node_size,
})
} else {
None
};
// 将body转换为JSON值保持原有结构
let body_json = serde_json::to_value(&block.body).map_err(|e| anyhow!("Body serialization error: {}", e))?;
Ok(HexBlock {
header,
body: Some(body_json),
})
}
// 自定义反序列化函数将16进制字符串反序列化为字节数组
fn deserialize_hex_to_bytes<'de, D>(deserializer: D) -> Result<Vec<u8>, D::Error>
where
D: serde::Deserializer<'de>,
{
let hex_string = String::deserialize(deserializer)?;
hex::FromHex::from_hex(&hex_string).map_err(|e: hex::FromHexError| serde::de::Error::custom(e.to_string()))
}
// 用于反序列化的结构体
#[derive(Debug, Deserialize)]
struct HexBlockDeserialize {
header: Option<HexBlockHeaderDeserialize>,
body: Option<serde_json::Value>,
}
#[derive(Debug, Deserialize)]
struct HexBlockHeaderDeserialize {
#[serde(deserialize_with = "deserialize_hex_to_bytes")]
hash: Vec<u8>,
version: u32,
height: u64,
#[serde(deserialize_with = "deserialize_hex_to_bytes")]
prev_hash: Vec<u8>,
timestamp: u64,
#[serde(deserialize_with = "deserialize_hex_to_bytes")]
output_mr: Vec<u8>,
#[serde(deserialize_with = "deserialize_hex_to_bytes")]
block_output_mr: Vec<u8>,
#[serde(deserialize_with = "deserialize_hex_to_bytes")]
kernel_mr: Vec<u8>,
#[serde(deserialize_with = "deserialize_hex_to_bytes")]
input_mr: Vec<u8>,
#[serde(deserialize_with = "deserialize_hex_to_bytes")]
total_kernel_offset: Vec<u8>,
nonce: u64,
pow: HexProofOfWorkDeserialize,
kernel_mmr_size: u64,
output_mmr_size: u64,
#[serde(deserialize_with = "deserialize_hex_to_bytes")]
total_script_offset: Vec<u8>,
#[serde(deserialize_with = "deserialize_hex_to_bytes")]
validator_node_mr: Vec<u8>,
validator_node_size: u64,
}
#[derive(Debug, Deserialize)]
struct HexProofOfWorkDeserialize {
pow_algo: u64,
#[serde(deserialize_with = "deserialize_hex_to_bytes")]
pow_data: Vec<u8>,
}
// 将16进制JSON转换回Block
fn convert_hex_to_block(hex_block: &HexBlockDeserialize) -> Result<Block> {
let header = if let Some(ref h) = hex_block.header {
Some(minotari_app_grpc::tari_rpc::BlockHeader {
hash: h.hash.clone(),
version: h.version,
height: h.height,
prev_hash: h.prev_hash.clone(),
timestamp: h.timestamp,
output_mr: h.output_mr.clone(),
block_output_mr: h.block_output_mr.clone(),
kernel_mr: h.kernel_mr.clone(),
input_mr: h.input_mr.clone(),
total_kernel_offset: h.total_kernel_offset.clone(),
nonce: h.nonce,
pow: Some(minotari_app_grpc::tari_rpc::ProofOfWork {
pow_algo: h.pow.pow_algo,
pow_data: h.pow.pow_data.clone(),
}),
kernel_mmr_size: h.kernel_mmr_size,
output_mmr_size: h.output_mmr_size,
total_script_offset: h.total_script_offset.clone(),
validator_node_mr: h.validator_node_mr.clone(),
validator_node_size: h.validator_node_size,
})
} else {
None
};
// 将body从JSON值转换回原始结构
let body = if let Some(ref body_json) = hex_block.body {
serde_json::from_value(body_json.clone()).map_err(|e| anyhow!("Body deserialization error: {}", e))?
} else {
None
};
Ok(Block {
header,
body,
})
}
2025-06-25 12:34:00 +00:00
// ZMQ消息结构
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct MiningTask {
pub coinbase_hash: String,
pub height: u64,
pub target: u64,
2025-06-26 07:22:52 +00:00
pub output_smt_size: u64, // 新增output_smt_size
2025-06-25 12:34:00 +00:00
pub block_template: String, // 序列化的区块模板
}
#[derive(Debug, Serialize, Deserialize)]
pub struct SubmitRequest {
pub height: u64,
pub nonce: u64,
pub solution: String,
pub block_data: String, // 序列化的区块数据
}
// 配置结构
#[derive(Debug, Clone)]
pub struct GbtConfig {
pub base_node_grpc_address: String,
pub base_node_grpc_authentication: GrpcAuthentication,
pub base_node_grpc_tls_domain_name: Option<String>,
pub base_node_grpc_ca_cert_filename: Option<String>,
pub config_dir: PathBuf,
pub network: Network,
pub wallet_payment_address: String,
pub coinbase_extra: String,
pub range_proof_type: RangeProofType,
pub zmq_publisher_port: u16,
pub zmq_subscriber_port: u16,
}
// GBT客户端
pub struct GbtClient {
base_node_client: BaseNodeGrpcClient,
key_manager: MemoryDbKeyManager,
consensus_manager: ConsensusManager,
wallet_payment_address: TariAddress,
config: GbtConfig,
// ZMQ相关
#[allow(dead_code)]
zmq_context: Context,
publisher_socket: Socket,
subscriber_socket: Socket,
// 挖矿任务缓存
mining_tasks: Arc<Mutex<HashMap<String, MiningTask>>>,
}
impl GbtClient {
pub async fn new(config: GbtConfig) -> Result<Self> {
// 创建BaseNode客户端
let base_node_client = Self::connect_base_node(&config).await?;
// 创建密钥管理器
let key_manager = create_memory_db_key_manager().map_err(|e| anyhow!("Key manager error: {}", e))?;
// 创建共识管理器
let consensus_manager = ConsensusManager::builder(config.network)
.build()
.map_err(|e| anyhow!("Consensus manager error: {}", e))?;
// 解析钱包地址
let wallet_payment_address = TariAddress::from_str(&config.wallet_payment_address)
.map_err(|e| anyhow!("Invalid wallet address: {}", e))?;
// 创建ZMQ上下文和套接字
let zmq_context = Context::new();
let publisher_socket = zmq_context
.socket(zmq::PUB)
.map_err(|e| anyhow!("ZMQ publisher error: {}", e))?;
let subscriber_socket = zmq_context
.socket(zmq::SUB)
.map_err(|e| anyhow!("ZMQ subscriber error: {}", e))?;
// 绑定ZMQ套接字
let publisher_addr = format!("tcp://*:{}", config.zmq_publisher_port);
let subscriber_addr = format!("tcp://localhost:{}", config.zmq_subscriber_port);
publisher_socket
.bind(&publisher_addr)
.map_err(|e| anyhow!("ZMQ bind error: {}", e))?;
subscriber_socket
.connect(&subscriber_addr)
.map_err(|e| anyhow!("ZMQ connect error: {}", e))?;
subscriber_socket
.set_subscribe(b"submit")
.map_err(|e| anyhow!("ZMQ subscribe error: {}", e))?;
Ok(Self {
base_node_client,
key_manager,
consensus_manager,
wallet_payment_address,
config,
zmq_context,
publisher_socket,
subscriber_socket,
mining_tasks: Arc::new(Mutex::new(HashMap::new())),
})
}
// 连接BaseNode
async fn connect_base_node(config: &GbtConfig) -> Result<BaseNodeGrpcClient> {
info!(target: LOG_TARGET, "Connecting to base node at {}", config.base_node_grpc_address);
let address = format!("http://{}", config.base_node_grpc_address);
let mut endpoint = Endpoint::new(address)?;
// 配置TLS如果需要
if let Some(domain_name) = config.base_node_grpc_tls_domain_name.as_ref() {
if let Some(cert_filename) = config.base_node_grpc_ca_cert_filename.as_ref() {
let cert_path = config.config_dir.join(cert_filename);
let pem = tokio::fs::read(cert_path)
.await
.map_err(|e| anyhow!("TLS certificate read error: {}", e))?;
let ca = Certificate::from_pem(pem);
let tls = ClientTlsConfig::new().ca_certificate(ca).domain_name(domain_name);
endpoint = endpoint
.tls_config(tls)
.map_err(|e| anyhow!("TLS config error: {}", e))?;
}
}
let channel = endpoint
.connect()
.await
.map_err(|e| anyhow!("Connection error: {}", e))?;
let node_conn = BaseNodeClient::with_interceptor(
channel,
ClientAuthenticationInterceptor::create(&config.base_node_grpc_authentication)
.map_err(|e| anyhow!("Authentication error: {}", e))?,
)
.max_encoding_message_size(MAX_GRPC_MESSAGE_SIZE)
.max_decoding_message_size(MAX_GRPC_MESSAGE_SIZE);
Ok(node_conn)
}
pub async fn get_block_template_and_coinbase(&mut self) -> Result<MiningTask> {
info!(target: LOG_TARGET, "Getting new block template");
// 获取区块模板
let pow_algo = PowAlgo {
pow_algo: PowAlgos::Sha3x.into(),
};
let request = NewBlockTemplateRequest {
algo: Some(pow_algo),
max_weight: 0,
};
let template_response = self
.base_node_client
.get_new_block_template(request)
.await?
.into_inner();
let mut block_template = template_response
.new_block_template
.clone()
.ok_or_else(|| anyhow!("No block template received"))?;
let height = block_template
.header
.as_ref()
.ok_or_else(|| anyhow!("No header in block template"))?
.height;
2025-06-26 07:22:52 +00:00
// 获取output_smt_size
let output_smt_size = block_template
.header
.as_ref()
.ok_or_else(|| anyhow!("No header in block template"))?
.output_smt_size;
2025-06-25 12:34:00 +00:00
// 获取挖矿数据
let miner_data = template_response
.miner_data
.ok_or_else(|| anyhow!("No miner data received"))?;
let fee = MicroMinotari::from(miner_data.total_fees);
let reward = MicroMinotari::from(miner_data.reward);
let target_difficulty = miner_data.target_difficulty;
info!(target: LOG_TARGET, "Generating coinbase for height {}", height);
// 生成coinbase
let (coinbase_output, coinbase_kernel) = generate_coinbase(
fee,
reward,
height,
&CoinBaseExtra::try_from(self.config.coinbase_extra.as_bytes().to_vec())?,
&self.key_manager,
&self.wallet_payment_address,
true,
self.consensus_manager.consensus_constants(height),
self.config.range_proof_type,
PaymentId::Open {
user_data: vec![],
tx_type: TxType::Coinbase,
},
)
.await
.map_err(|e| anyhow!("Coinbase generation error: {}", e))?;
// 将coinbase添加到区块模板
let body = block_template
.body
.as_mut()
.ok_or_else(|| anyhow!("No body in block template"))?;
let grpc_output = grpc_output_with_payref(coinbase_output.clone(), None)
.map_err(|e| anyhow!("Output conversion error: {}", e))?;
body.outputs.push(grpc_output);
body.kernels.push(coinbase_kernel.into());
// 获取完整的区块
let block_result = self.base_node_client.get_new_block(block_template).await?.into_inner();
let block = block_result.block.ok_or_else(|| anyhow!("No block in response"))?;
// 计算coinbase哈希
let coinbase_hash = coinbase_output.hash().to_hex();
2025-06-26 07:22:52 +00:00
// 使用自定义的16进制序列化
let hex_block = convert_block_to_hex(&block)?;
let block_template_json = serde_json::to_string(&hex_block).map_err(|e| anyhow!("Serialization error: {}", e))?;
2025-06-25 12:34:00 +00:00
let mining_task = MiningTask {
coinbase_hash,
height,
target: target_difficulty,
2025-06-26 07:22:52 +00:00
output_smt_size,
2025-06-25 12:34:00 +00:00
block_template: block_template_json,
};
// 缓存挖矿任务
{
let mut tasks = self.mining_tasks.lock().await;
tasks.insert(mining_task.coinbase_hash.clone(), mining_task.clone());
}
Ok(mining_task)
}
// 通过ZMQ发送挖矿任务
pub fn send_mining_task(&self, task: &MiningTask) -> Result<()> {
let task_json = serde_json::to_string(task).map_err(|e| anyhow!("Serialization error: {}", e))?;
self.publisher_socket
.send_multipart(&["mining_task".as_bytes(), task_json.as_bytes()], 0)
.map_err(|e| anyhow!("ZMQ send error: {}", e))?;
2025-06-26 07:22:52 +00:00
info!(target: LOG_TARGET, "Sent mining task for height {} with target {} and output_smt_size {}",
task.height, task.target, task.output_smt_size);
2025-06-25 12:34:00 +00:00
Ok(())
}
// 接收外部提交的挖矿结果
pub async fn receive_submit(&mut self) -> Result<Option<SubmitRequest>> {
let mut message = Message::new();
// 非阻塞接收
match self.subscriber_socket.recv(&mut message, zmq::DONTWAIT) {
Ok(_) => {
let message_str = message.as_str().ok_or_else(|| anyhow!("Message decode error"))?;
if message_str.starts_with("submit ") {
let submit_json = &message_str[7..]; // 去掉"submit "前缀
let submit_request: SubmitRequest =
serde_json::from_str(submit_json).map_err(|e| anyhow!("Deserialization error: {}", e))?;
info!(target: LOG_TARGET, "Received submit for height {} with nonce {}",
submit_request.height, submit_request.nonce);
Ok(Some(submit_request))
} else {
Ok(None)
}
},
Err(zmq::Error::EAGAIN) => {
// 没有消息可读
Ok(None)
},
Err(e) => Err(anyhow!("ZMQ receive error: {}", e)),
}
}
// 提交区块到BaseNode
pub async fn submit_block_to_base_node(&mut self, submit_request: &SubmitRequest) -> Result<SubmitBlockResponse> {
2025-06-26 07:22:52 +00:00
// 反序列化区块数据支持16进制格式
let block: Block = if submit_request.block_data.contains("\"hash\":") {
// 尝试解析为16进制格式
let hex_block: HexBlockDeserialize = serde_json::from_str(&submit_request.block_data)
.map_err(|e| anyhow!("Hex block deserialization error: {}", e))?;
convert_hex_to_block(&hex_block)?
} else {
// 尝试解析为原始Base64格式向后兼容
serde_json::from_str(&submit_request.block_data)
.map_err(|e| anyhow!("Block deserialization error: {}", e))?
};
2025-06-25 12:34:00 +00:00
info!(target: LOG_TARGET, "Submitting block to base node for height {}", submit_request.height);
// 提交区块
let response = self.base_node_client.submit_block(block).await?;
info!(target: LOG_TARGET, "Block submitted successfully for height {}", submit_request.height);
Ok(response.into_inner())
}
// 主循环
pub async fn run(&mut self) -> Result<()> {
info!(target: LOG_TARGET, "Starting GBT client");
loop {
// 1. 获取区块模板和构造coinbase
match self.get_block_template_and_coinbase().await {
Ok(mining_task) => {
// 2. 通过ZMQ发送挖矿任务
if let Err(e) = self.send_mining_task(&mining_task) {
error!(target: LOG_TARGET, "Failed to send mining task: {}", e);
}
},
Err(e) => {
error!(target: LOG_TARGET, "Failed to get block template: {}", e);
sleep(Duration::from_secs(5)).await;
continue;
},
}
// 3. 接收外部提交
match self.receive_submit().await {
Ok(Some(submit_request)) => {
// 4. 提交区块到BaseNode
match self.submit_block_to_base_node(&submit_request).await {
Ok(_) => {
info!(target: LOG_TARGET, "Successfully submitted block for height {}", submit_request.height);
},
Err(e) => {
error!(target: LOG_TARGET, "Failed to submit block: {}", e);
},
}
},
Ok(None) => {
// 没有提交,继续循环
},
Err(e) => {
error!(target: LOG_TARGET, "Failed to receive submit: {}", e);
},
}
// 等待一段时间再获取下一个区块模板
sleep(Duration::from_secs(1)).await;
}
}
}
impl Drop for GbtClient {
fn drop(&mut self) {
info!(target: LOG_TARGET, "GBT client shutting down");
// ZMQ套接字会在Context销毁时自动关闭
}
}
#[derive(Parser)]
#[command(author, version, about, long_about = None)]
struct Args {
/// BaseNode gRPC address
#[arg(short, long, default_value = "127.0.0.1:18102")]
base_node: String,
/// Network (mainnet, nextnet, testnet)
#[arg(short, long, default_value = "mainnet")]
network: String,
/// Wallet payment address
#[arg(
short,
long,
default_value = "14H4atSbXqSLFHDvhjx83ASCJDv3iCDu4T6DotCiCVCYq67koEJbgcbmYpeBpRjcZdRYtJ5CDw9gWRNXpe8chfnQSVU"
)]
wallet_address: String,
/// Coinbase extra data
#[arg(short, long, default_value = "m2pool.com")]
coinbase_extra: String,
/// ZMQ publisher port
#[arg(long, default_value = "5555")]
zmq_pub_port: u16,
/// ZMQ subscriber port
#[arg(long, default_value = "5556")]
zmq_sub_port: u16,
/// Enable TLS
#[arg(long)]
tls: bool,
/// TLS domain name
#[arg(long)]
tls_domain: Option<String>,
/// TLS CA certificate file
#[arg(long)]
tls_ca_cert: Option<String>,
/// Config directory
#[arg(long, default_value = ".")]
config_dir: String,
}
#[tokio::main]
async fn main() -> Result<()> {
2025-06-26 07:22:52 +00:00
// 初始化日志系统
let log_config_path = PathBuf::from("log4rs_gbt.yml");
if log_config_path.exists() {
// 使用log4rs配置文件
let base_path = std::env::current_dir().unwrap_or_else(|_| PathBuf::from("."));
tari_common::initialize_logging(&log_config_path, &base_path, "")
.map_err(|e| anyhow!("Failed to initialize logging: {}", e))?;
} else {
// 回退到env_logger
env_logger::init();
}
2025-06-25 12:34:00 +00:00
let args = Args::parse();
// 解析网络
let network = match args.network.as_str() {
"mainnet" => Network::MainNet,
"nextnet" => Network::NextNet,
"testnet" => Network::NextNet, // 使用NextNet作为testnet
_ => return Err(anyhow!("Invalid network: {}", args.network)),
};
// 创建配置
let config = GbtConfig {
base_node_grpc_address: args.base_node,
base_node_grpc_authentication: GrpcAuthentication::None,
base_node_grpc_tls_domain_name: args.tls_domain,
base_node_grpc_ca_cert_filename: args.tls_ca_cert,
config_dir: PathBuf::from(args.config_dir),
network,
wallet_payment_address: args.wallet_address,
coinbase_extra: args.coinbase_extra,
range_proof_type: RangeProofType::BulletProofPlus,
zmq_publisher_port: args.zmq_pub_port,
zmq_subscriber_port: args.zmq_sub_port,
};
info!(target: LOG_TARGET, "Starting GBT client with network: {:?}", network);
// 创建GBT客户端
let mut client = GbtClient::new(config).await?;
// 运行客户端
client.run().await?;
Ok(())
}