Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rllola committed Jun 22, 2024
1 parent 7eaa346 commit 2fd4325
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ ledger-zondax-generic = "0.9.1"
thiserror = "1.0.30"

byteorder = "1.4.3"
k256 = { version = "^0.11", features = ["ecdsa-core", "arithmetic", "std"], default-features = false }
k256 = { version = "^0.13", features = ["ecdsa-core", "arithmetic", "std"], default-features = false }

[dev-dependencies]
hex = "0.4.3"
once_cell = "1.10.0"
blake2 = "0.10.4"
k256 = "^0.11"
ecdsa = { version = "0.13.4", features = ["verify"] }
k256 = "^0.13"
ecdsa = { version = "0.16.9", features = ["verifying"] }

tokio = { version = "1", features = ["full"] }
ledger-transport-hid = "0.9.0"
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
extern crate ledger_filecoin;

use blake2::{digest::typenum, Blake2b, Digest};
use ecdsa::{signature::Verifier, VerifyingKey};
use ecdsa::{VerifyingKey, signature::Verifier};
use k256::{elliptic_curve::sec1::ToEncodedPoint, Secp256k1};

use ledger_filecoin::{BIP44Path, FilError, FilecoinApp, LedgerAppError};
Expand Down

0 comments on commit 2fd4325

Please sign in to comment.