Skip to content

Commit d630fa1

Browse files
committed
Makefile: update chantools version from v0.13.5 to v0.14.0
Without this, there's a go module mismatch error.
1 parent e2fa490 commit d630fa1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ build-itest:
9090
@if [ ! -f itest/chantools/chantools ]; then \
9191
$(call print, "Building itest chantools."); \
9292
rm -rf itest/chantools; \
93-
git clone --depth 1 --branch v0.13.5 https://github.com/lightninglabs/chantools.git itest/chantools; \
93+
git clone --depth 1 --branch v0.14.0 https://github.com/lightninglabs/chantools.git itest/chantools; \
9494
cd itest/chantools && go build ./cmd/chantools; \
9595
else \
9696
$(call print, "Chantools is already installed and available in itest/chantools."); \

itest/chantools_harness.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func NewChantoolsHarness(t *testing.T) ChantoolsHarness {
6666
require.NoError(t, err, "failed to get chantools version")
6767

6868
versionOutStr := string(versionOut)
69-
if !strings.Contains(versionOutStr, "chantools version v0.13.5") {
69+
if !strings.Contains(versionOutStr, "chantools version v0.14.0") {
7070
t.Fatalf("unexpected chantools version: %v", versionOutStr)
7171
}
7272

0 commit comments

Comments
 (0)