File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
tap-agent/src/tap/context Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ pub use alloy_rlp;
99
1010use alloy:: core:: primitives:: Address ;
1111use alloy:: rlp:: { RlpDecodable , RlpEncodable } ;
12- use alloy:: signers :: { Signature , SignerSync } ;
12+ use alloy:: { primitives :: PrimitiveSignature as Signature , signers :: SignerSync } ;
1313use alloy_rlp:: Encodable ;
1414use thegraph_core:: alloy_sol_types:: { sol, Eip712Domain , SolStruct } ;
1515use thiserror:: Error ;
Original file line number Diff line number Diff line change 44use std:: str:: FromStr ;
55
66use super :: { error:: AdapterError , TapAgentContext } ;
7+ #[ allow( deprecated) ]
78use alloy:: signers:: Signature ;
89use alloy:: { hex:: ToHexExt , primitives:: Address } ;
910use 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 ( )
You can’t perform that action at this time.
0 commit comments