Skip to content

Commit

Permalink
feat: display hex tx and updated max fee
Browse files Browse the repository at this point in the history
  • Loading branch information
Th0rgal committed Dec 29, 2023
1 parent d760576 commit 33c78b1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bot/src/bot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -450,8 +450,8 @@ pub async fn renew_domains(
{
Ok(tx_hash) => {
logger.info(format!(
"Sent a tx {} to renew {:x} domains",
FieldElement::to_string(&tx_hash),
"Sent a tx {:x} to renew {:x} domains",
&tx_hash,
domains_to_renew.len()
));
}
Expand Down Expand Up @@ -532,6 +532,7 @@ pub async fn send_transaction(
selector: selector!("batch_renew"),
calldata,
}])
.max_fee(FieldElement::from_dec_str("10360501002400840").unwrap())
.send()
.await;

Expand Down

0 comments on commit 33c78b1

Please sign in to comment.