Skip to content

Commit

Permalink
Added checks stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
scx1332 committed Jul 31, 2024
1 parent ab2a20b commit bdff68d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions crates/erc20_payment_lib/src/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1084,6 +1084,16 @@ impl PaymentRuntime {
}
}

pub async fn check_if_pending_transfers(_account: &SignerAccount) -> Result<bool, PaymentError> {
panic!("Not implemented");
//Ok(true)
}

pub async fn check_if_payments_finished(_account: &SignerAccount) -> Result<bool, PaymentError> {
panic!("Not implemented");
//Ok(true)
}

pub async fn distribute_gas(
&self,
chain_name: &str,
Expand Down

0 comments on commit bdff68d

Please sign in to comment.