Skip to content

Commit

Permalink
Allow unused functions
Browse files Browse the repository at this point in the history
  • Loading branch information
ilitteri committed Sep 19, 2023
1 parent c0eebed commit fa69fb1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/tests/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,20 +63,23 @@ pub async fn call(
}
}

#[allow(unused)]
pub async fn eth_raw_call(
precompile_address: Address,
data: Bytes,
) -> Result<Bytes, ProviderError> {
raw_call(precompile_address, data, &eth_provider()).await
}

#[allow(unused)]
pub async fn era_raw_call(
precompile_address: Address,
data: Bytes,
) -> Result<Bytes, ProviderError> {
raw_call(precompile_address, data, &era_provider()).await
}

#[allow(unused)]
pub async fn raw_call(
precompile_address: Address,
data: Bytes,
Expand Down

0 comments on commit fa69fb1

Please sign in to comment.