File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
wallet/src/signer/ledger_signer Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ jobs:
130130 run : sudo apt-get update
131131
132132 - name : Install build dependencies
133- run : sudo apt-get install -yqq --no-install-recommends build-essential python3 python3-toml pkg-config libssl-dev
133+ run : sudo apt-get install -yqq --no-install-recommends build-essential python3 python3-toml pkg-config libssl-dev libdbus-1-dev libusb-1.0-0-dev
134134
135135 - name : Extract required info from Cargo.toml
136136 id : extract_cargo_info
Original file line number Diff line number Diff line change @@ -653,6 +653,13 @@ where
653653
654654 Ok ( ( sig, SignatureStatus :: NotSigned , status) )
655655 }
656+ ( Some ( Destination :: AnyoneCanSpend ) , None ) => {
657+ Ok ( (
658+ Some ( InputWitness :: NoSignature ( None ) ) ,
659+ SignatureStatus :: NotSigned ,
660+ SignatureStatus :: FullySigned ,
661+ ) )
662+ }
656663 ( Some ( destination) , None ) => {
657664 let standalone = match standalone_inputs. get ( & ( input_index as u32 ) ) . map ( |x| x. as_slice ( ) ) {
658665 Some ( [ standalone] ) => standalone,
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ async fn setup(
124124
125125 let opts = Options {
126126 model : Model :: NanoSP ,
127- api_level : Some ( "22 " . to_string ( ) ) ,
127+ api_level : Some ( "24 " . to_string ( ) ) ,
128128 seed : Some ( "abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about" . to_string ( ) ) , // Use a deterministic seed for tests
129129 display : Display :: Headless ,
130130 apdu_port : Some ( 1237 + offset) ,
You can’t perform that action at this time.
0 commit comments