From 9b0adcc45f81639282ae89d7a00fc36addc03380 Mon Sep 17 00:00:00 2001 From: Matthew Black Date: Mon, 26 May 2025 19:00:57 -0700 Subject: [PATCH 1/2] feat: use atomic libwally-core fork --- local_resource/external_project_local_setting.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local_resource/external_project_local_setting.config b/local_resource/external_project_local_setting.config index c50e145e..664b266f 100644 --- a/local_resource/external_project_local_setting.config +++ b/local_resource/external_project_local_setting.config @@ -1,3 +1,3 @@ CFDCORE_VERSION=0.3.19 LIBWALLY_TARGET_VERSION=refs/tags/cfd-0.3.8 -LIBWALLY_TARGET_URL=cryptogarageinc/libwally-core.git +LIBWALLY_TARGET_URL=atomicfinance/libwally-core.git From fb8419f603bded3bfd74930c95cbd91f4e920746 Mon Sep 17 00:00:00 2001 From: Matthew Black Date: Mon, 26 May 2025 19:22:36 -0700 Subject: [PATCH 2/2] fix: default libwally-core repo to atomic --- external/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index 48a6fb6b..0336c4ef 100644 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -55,13 +55,13 @@ if(LIBWALLY_TARGET_VERSION) set(LIBWALLY_TARGET_TAG ${LIBWALLY_TARGET_VERSION}) message(STATUS "[external project local] libwally-core target=${LIBWALLY_TARGET_VERSION}") else() -set(LIBWALLY_TARGET_TAG refs/tags/v1.0.0) +set(LIBWALLY_TARGET_TAG refs/tags/cfd-0.3.8) endif() if(LIBWALLY_TARGET_URL) set(LIBWALLY_TARGET_REP ${LIBWALLY_TARGET_URL}) message(STATUS "[external project local] libwally-core url=${LIBWALLY_TARGET_URL}") else() -set(LIBWALLY_TARGET_REP cryptogarageinc/libwally-core.git) +set(LIBWALLY_TARGET_REP atomicfinance/libwally-core.git) endif() if(${USE_GIT_SSH})