Skip to content

Commit 4b6f949

Browse files
committed
chore: add allow deprecated
Signed-off-by: Gustavo Inacio <[email protected]>
1 parent 911cfa5 commit 4b6f949

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

crates/dips/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pub use alloy_rlp;
99

1010
use alloy::core::primitives::Address;
1111
use alloy::rlp::{RlpDecodable, RlpEncodable};
12-
use alloy::signers::{Signature, SignerSync};
12+
use alloy::{primitives::PrimitiveSignature as Signature, signers::SignerSync};
1313
use alloy_rlp::Encodable;
1414
use thegraph_core::alloy_sol_types::{sol, Eip712Domain, SolStruct};
1515
use thiserror::Error;

crates/tap-agent/src/tap/context/rav.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
use std::str::FromStr;
55

66
use super::{error::AdapterError, TapAgentContext};
7+
#[allow(deprecated)]
78
use alloy::signers::Signature;
89
use alloy::{hex::ToHexExt, primitives::Address};
910
use bigdecimal::num_bigint::{BigInt, ToBigInt};
@@ -36,6 +37,7 @@ impl RAVRead for TapAgentContext {
3637

3738
match row {
3839
Some(row) => {
40+
#[allow(deprecated)]
3941
let signature: Signature =
4042
row.signature
4143
.as_slice()

0 commit comments

Comments
 (0)