From 5da6633182e83fbaf5baf9becc47312a685a7865 Mon Sep 17 00:00:00 2001 From: Evan Feenstra Date: Thu, 16 Jun 2022 09:57:28 -0700 Subject: [PATCH] point to gitlab std-signer branch --- README.md | 5 ++--- signer/Cargo.toml | 3 ++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e651b3d..952b262 100644 --- a/README.md +++ b/README.md @@ -84,10 +84,9 @@ after pressing the ok button, restart the sphinx key, and wait for a MQTT connec ### espflash notes -espflash save-image esp32-c3 target/riscv32imc-esp-espidf/debug/sphinx-key ./asdf-blah - espflash save-image esp32-c3 target/riscv32imc-esp-espidf/release/sphinx-key ./test-flash espflash board-info -export CC=$PWD/.embuild/espressif/tools/riscv32-esp-elf/esp-2021r2-8.4.0/riscv32-esp-elf/bin/riscv32-esp-elf-gcc \ No newline at end of file +export CC=$PWD/.embuild/espressif/tools/riscv32-esp-elf/esp-2021r2-8.4.0/riscv32-esp-elf/bin/riscv32-esp-elf-gcc + diff --git a/signer/Cargo.toml b/signer/Cargo.toml index 357ba93..3353ec3 100644 --- a/signer/Cargo.toml +++ b/signer/Cargo.toml @@ -7,7 +7,8 @@ edition = "2018" [dependencies] sphinx-key-parser = { path = "../parser" } # vls-protocol-signer = { path = "../../../evanf/validating-lightning-signer/vls-protocol-signer", default-features = false, features = ["secp-lowmemory"] } -vls-protocol-signer = { git = "https://gitlab.com/lightning-signer/validating-lightning-signer", default-features = false, features = ["secp-lowmemory"] } +# vls-protocol-signer = { git = "https://gitlab.com/lightning-signer/validating-lightning-signer", default-features = false, features = ["secp-lowmemory"] } +vls-protocol-signer = { git = "https://gitlab.com/Evanfeenstra/validating-lightning-signer", branch = "std-signer", default-features = false, features = ["secp-lowmemory"] } anyhow = {version = "1", features = ["backtrace"]} log = "0.4"