Skip to content

Commit

Permalink
Merge pull request #1272 from lightninglabs/cold-group-key
Browse files Browse the repository at this point in the history
Part 1: Asset Minting with V1 Asset Group Key and Chantools Cold Storage Support
  • Loading branch information
guggero authored Jan 16, 2025
2 parents b5eda45 + 5ca4168 commit b15fc0a
Show file tree
Hide file tree
Showing 34 changed files with 3,892 additions and 1,823 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ cmd/tapd/tapd

/itest/lnd-itest
/itest/btcd-itest
/itest/chantools
/itest/regtest/*
/itest/*.log
/itest/.backendlogs/*
Expand Down
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,15 @@ build:
$(GOBUILD) -tags="$(DEV_TAGS)" -o tapcli-debug $(DEV_GCFLAGS) $(DEV_LDFLAGS) $(PKG)/cmd/tapcli

build-itest:
@if ! command -v chantools > /dev/null; then \
$(call print, "Building itest chantools."); \
rm -rf itest/chantools; \
git clone --depth 1 --branch v0.13.5 https://github.com/lightninglabs/chantools.git itest/chantools; \
cd itest/chantools && make install; \
else \
$(call print, "Chantools is already installed and available in PATH."); \
fi

@$(call print, "Building itest btcd.")
CGO_ENABLED=0 $(GOBUILD) -tags="integration" -o itest/btcd-itest $(BTCD_PKG)

Expand Down
Loading

0 comments on commit b15fc0a

Please sign in to comment.