-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #653 from BoltzExchange/rif
RIF relay for claim transactions
- Loading branch information
Showing
62 changed files
with
2,218 additions
and
548 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ tags | |
.idea/ | ||
.vscode/ | ||
|
||
.env | ||
*.log | ||
dist/ | ||
ts-out/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#! /bin/python3 | ||
|
||
import sys | ||
|
||
with open("./src/config.ts", "r") as f: | ||
for line in f: | ||
if "cooperativeDisabled" not in line: | ||
continue | ||
|
||
if "true" in line: | ||
print("Cooperative signatures are disabled in config") | ||
sys.exit(1) | ||
|
||
break | ||
|
||
with open(".env", "r") as f: | ||
data = f.read() | ||
|
||
for var in ["VITE_RSK_LOG_SCAN_ENDPOINT"]: | ||
if var not in data: | ||
print(f"{var} not in .env file") | ||
sys.exit(1) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule regtest
updated
7 files
+1 −0 | .env | |
+3 −1 | README.md | |
+24 −0 | data/backend-nginx/default.conf | |
+5 −0 | data/backend/boltz.conf | |
+1 −1 | data/boltz-client/boltz.toml | |
+33 −5 | docker-compose.yml | |
+2 −2 | images/rif-relay/Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.