We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a77a78a commit c52f584Copy full SHA for c52f584
crates/sdk/src/network/tee/api.rs
@@ -1,5 +1,5 @@
1
use crate::SP1Stdin;
2
-use alloy_primitives::{Address, PrimitiveSignature};
+use alloy_primitives::{Address, Signature as AlloySignature};
3
use alloy_signer::SignerSync;
4
use serde::{Deserialize, Serialize};
5
@@ -17,7 +17,7 @@ pub struct TEERequest {
17
/// The stdin for the program.
18
pub stdin: SP1Stdin,
19
/// The signature of the request id.
20
- pub signature: PrimitiveSignature,
+ pub signature: AlloySignature,
21
}
22
23
impl TEERequest {
0 commit comments