Skip to content

Commit 8848cd8

Browse files
committed
Refer to the "sighash_input_commitments" branch of the trezor repo
1 parent 5f8e92c commit 8848cd8

File tree

4 files changed

+10
-23
lines changed

4 files changed

+10
-23
lines changed

Cargo.lock

Lines changed: 3 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,11 @@ hickory-client = "0.24"
246246
hickory-server = "0.24"
247247
zeroize = "1.5"
248248

249+
[workspace.dependencies.trezor-client]
250+
git = "https://github.com/mintlayer/mintlayer-trezor-firmware"
251+
rev = "967023d82f33984961c8f8fd221672c233b22220" # sighash_input_commitments branch
252+
features = ["bitcoin", "mintlayer"]
253+
249254
[workspace.metadata.dist.dependencies.apt]
250255
"libatk1.0-0" = "*"
251256
"libatk1.0-dev" = "*"

trezor-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ test-utils = { path = "../test-utils" }
1818
common = { path = "../common" }
1919
crypto = { path = "../crypto" }
2020
serialization = { path = "../serialization" }
21-
trezor-client = { git = "https://github.com/mintlayer/mintlayer-trezor-firmware", branch = "feature/mintlayer-pk", features = ["bitcoin", "mintlayer"] }
2221

2322
rstest.workspace = true
23+
trezor-client.workspace = true

wallet/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ utils-networking = { path = "../utils/networking" }
2626
utxo = { path = "../utxo" }
2727
wallet-storage = { path = "./storage" }
2828
wallet-types = { path = "./types" }
29-
trezor-client = { git = "https://github.com/mintlayer/mintlayer-trezor-firmware", branch = "mintlayer-master", features = [
30-
"bitcoin",
31-
"mintlayer",
32-
], optional = true }
3329

3430
bip39 = { workspace = true, default-features = false, features = [
3531
"std",
@@ -40,6 +36,7 @@ itertools.workspace = true
4036
parity-scale-codec.workspace = true
4137
serde.workspace = true
4238
thiserror.workspace = true
39+
trezor-client = { workspace = true, optional = true }
4340
zeroize.workspace = true
4441

4542
[dev-dependencies]

0 commit comments

Comments
 (0)