Skip to content

Commit

Permalink
chore: suggest fix in error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-savu committed Jun 30, 2023
1 parent d3ecfef commit b2e569f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rust/agents/validator/src/validator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,14 +213,14 @@ impl Validator {
hash=?outcome.txid,
gas_used=?outcome.gas_used,
gas_price=?outcome.gas_price,
"Transaction attempting to announce validator reverted"
"Transaction attempting to announce validator reverted. Make sure you have enough ETH in your account to pay for gas."
);
}
}
Err(e) => {
error!(
error=?e,
"Failed to announce validator"
"Failed to announce validator. Make sure you have enough ETH in your account to pay for gas."
);
}
}
Expand Down

0 comments on commit b2e569f

Please sign in to comment.