This commit is contained in:
Bryan Stitt 2023-05-12 23:04:56 -07:00
parent c54970da0a
commit a3b97fda9b

@ -7,7 +7,7 @@ use entities::revert_log;
use entities::sea_orm_active_enums::Method; use entities::sea_orm_active_enums::Method;
use ethers::providers::ProviderError; use ethers::providers::ProviderError;
use ethers::types::{Address, Bytes}; use ethers::types::{Address, Bytes};
use log::{debug, error, info, trace, warn, Level}; use log::{debug, error, trace, warn, Level};
use migration::sea_orm::{self, ActiveEnum, ActiveModelTrait}; use migration::sea_orm::{self, ActiveEnum, ActiveModelTrait};
use serde_json::json; use serde_json::json;
use std::fmt; use std::fmt;
@ -123,8 +123,7 @@ impl Authorization {
impl Drop for OpenRequestHandle { impl Drop for OpenRequestHandle {
fn drop(&mut self) { fn drop(&mut self) {
let x = self self.rpc
.rpc
.active_requests .active_requests
.fetch_sub(1, atomic::Ordering::AcqRel); .fetch_sub(1, atomic::Ordering::AcqRel);
} }
@ -366,7 +365,10 @@ impl OpenRequestHandle {
tokio::spawn(f); tokio::spawn(f);
} }
Err(err) => { Err(err) => {
warn!("failed parsing eth_call params. unable to save revert"); warn!(
"failed parsing eth_call params. unable to save revert. {}",
err
);
} }
} }
} }