fix context error

This commit is contained in:
Peter Zhang 2025-10-02 10:22:51 +08:00
parent 5b071e535a
commit 5d3ef1b5d7

View File

@ -26,6 +26,10 @@ pub type MineContextMessage = Option<PoraPuzzle>;
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))?;