Compare commits

..

No commits in common. "a4dd88f2b8d0a72d271d86b2c56d0e4e24c66c50" and "1d48cb1ea7d24e27dca2b04934e20eaab3605619" have entirely different histories.

2 changed files with 4 additions and 3 deletions

View File

@ -100,7 +100,7 @@ async fn request_miner_id(
.retries(3) .retries(3)
.await .await
.map_err(|e| format!("Fail to execute mine answer transaction: {:?}", e))? .map_err(|e| format!("Fail to execute mine answer transaction: {:?}", e))?
.ok_or("Request miner id transaction dropped after 3 retries")?; .ok_or("Request miner id transaction dropped after 3 retires")?;
let first_log = receipt let first_log = receipt
.logs .logs

View File

@ -167,11 +167,12 @@ impl Submitter {
.await .await
.map_err(|e| format!("Fail to execute mine answer transaction: {:?}", e))? .map_err(|e| format!("Fail to execute mine answer transaction: {:?}", e))?
.ok_or(format!( .ok_or(format!(
"Mine answer transaction dropped after {} retries", "Mine answer transaction dropped after {} retires",
SUBMISSION_RETIES SUBMISSION_RETIES
))?; ))?;
info!("Submit PoRA success, receipt: {:?}", receipt); info!("Submit PoRA success");
debug!("Receipt: {:?}", receipt);
Ok(()) Ok(())
} }