#42895 [BC-Insight] Misuse of error
Description
Description
async fn submit_transaction(
&mut self,
transaction: SignedTransaction,
) -> Result<SubmissionStatus, Error> {
// Check whether the account is whitelisted
if !self.is_whitelisted(&transaction.sender())? {
return Ok((MempoolStatus::new(MempoolStatusCode::TooManyTransactions), None));
}Impact
Recommendation
Proof of Concept
POC
Previous#42859 [BC-Insight] Pub key format mismatch in `InKnownSignersVerifier`Next#42896 [BC-High] attackers can exploit sequence number tolerance mechanism to to cause movement network da lightnode loose money for submitting failed blocks to celestia
Was this helpful?