Skip to content

Commit

Permalink
fix: lock to current version
Browse files Browse the repository at this point in the history
  • Loading branch information
chris13524 committed Jan 30, 2024
1 parent 81cc254 commit adbb6c0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions relay_rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ sha3 = { version = "0.10", optional = true }
sha2 = { version = "0.10.6" }
reqwest = { version = "0.11", features = ["default-tls"] }
url = "2"
alloy-providers = { git = "https://github.com/alloy-rs/alloy.git" }
alloy-transport = { git = "https://github.com/alloy-rs/alloy.git" }
alloy-transport-http = { git = "https://github.com/alloy-rs/alloy.git" }
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy.git" }
alloy-json-rpc = { git = "https://github.com/alloy-rs/alloy.git" }
alloy-providers = { git = "https://github.com/alloy-rs/alloy.git", rev = "e6f98e1" }
alloy-transport = { git = "https://github.com/alloy-rs/alloy.git", rev = "e6f98e1" }
alloy-transport-http = { git = "https://github.com/alloy-rs/alloy.git", rev = "e6f98e1" }
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy.git", rev = "e6f98e1" }
alloy-json-rpc = { git = "https://github.com/alloy-rs/alloy.git", rev = "e6f98e1" }
alloy-json-abi = "0.6.2"
alloy-sol-types = "0.6.2"
alloy-primitives = "0.6.2"
Expand Down
3 changes: 2 additions & 1 deletion relay_rpc/src/auth/cacao/signature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ impl Eip1271 {
mod test {
use {super::*, alloy_primitives::address};

// Manual test. Paste address, signature, message, and project ID to verify function
// Manual test. Paste address, signature, message, and project ID to verify
// function
#[tokio::test]
#[ignore]
async fn test_eip1271() {
Expand Down

0 comments on commit adbb6c0

Please sign in to comment.