From 5d3ef1b5d7bb45f612653fcd4c97086c926f72a0 Mon Sep 17 00:00:00 2001 From: Peter Zhang Date: Thu, 2 Oct 2025 10:22:51 +0800 Subject: [PATCH] fix context error --- node/miner/src/watcher.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/node/miner/src/watcher.rs b/node/miner/src/watcher.rs index 09c41b8..7b43d4f 100644 --- a/node/miner/src/watcher.rs +++ b/node/miner/src/watcher.rs @@ -26,6 +26,10 @@ pub type MineContextMessage = Option; lazy_static! { pub static ref EMPTY_HASH: H256 = H256::from_str("c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470").unwrap(); + pub static ref COMPUTE_WORKER_CONTEXT_CALLER: Address = + "0x000000000000000000000000000000000000000A" + .parse() + .unwrap(); } const PORA_VERSION: u64 = 1; @@ -141,10 +145,6 @@ impl MineContextWatcher { let miner_id = self.miner_id.0; // Use eth_call with specific caller address for read-only access - let compute_caller: Address = "0x000000000000000000000000000000000000000A" - .parse() - .map_err(|e| format!("Invalid compute caller address: {:?}", e))?; - let WorkerContext { context, pora_target, @@ -153,7 +153,7 @@ impl MineContextWatcher { } = self .mine_contract .compute_worker_context(miner_id) - .from(compute_caller) + .from(*COMPUTE_WORKER_CONTEXT_CALLER) .call() .await .map_err(|e| format!("Failed to query mining context: {:?}", e))?;