Skip to content

Commit a5a4828

Browse files
committed
app: revert temporary lnd version pinning
1 parent 3297fa7 commit a5a4828

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/scripts/build-protos.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const protoSources = async () => {
2121
const goModPath = join(appPath, '..', 'go.mod');
2222
const goModSource = (await fs.readFile(goModPath)).toString();
2323

24-
const lndVersion = ['', 'v0.13.0-beta.rc3']; // TODO revert: goModSource.match(LND_VERSION_PATTERN);
24+
const lndVersion = goModSource.match(LND_VERSION_PATTERN);
2525
if (!lndVersion || lndVersion.length !== 2) {
2626
throw new Error(`go.mod did not match pattern ${LND_VERSION_PATTERN}`);
2727
}

0 commit comments

Comments
 (0)