Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update for StartOS 0.3.6 #149

Draft
wants to merge 19 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
manager/target/
**/*.rs.bk
*.s9pk
startos/*.js
node_modules/
.DS_Store
.vscode/
scripts/embassy.js
docker-images/
docker-images
javascript
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "bitcoin"]
path = bitcoin
url = https://github.com/bitcoin/bitcoin
url = https://github.com/bitcoin/bitcoin/
7 changes: 7 additions & 0 deletions Old/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
manager/target/
**/*.rs.bk
*.s9pk
.DS_Store
.vscode/
scripts/embassy.js
docker-images/
3 changes: 3 additions & 0 deletions Old/.gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "bitcoin"]
path = bitcoin
url = https://github.com/bitcoin/bitcoin
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,13 @@ export const getConfig: T.ExpectedExports.getConfig = async (effects) => {
"zmq-enabled": {
type: "boolean",
name: "ZeroMQ Enabled",
description: "The ZeroMQ interface is useful for some applications which might require data related to block and transaction events from Bitcoin Core. For example, LND requires ZeroMQ be enabled for LND to get the latest block data",
description: "The ZeroMQ interface is useful for some applications which might require data related to block and transaction events from Bitcoin. For example, LND requires ZeroMQ be enabled for LND to get the latest block data",
default: true,
},
txindex: {
type: "boolean",
name: "Transaction Index",
description: "By enabling Transaction Index (txindex) Bitcoin Core will build a complete transaction index. This allows Bitcoin Core to access any transaction with commands like `gettransaction`.",
description: "By enabling Transaction Index (txindex) Bitcoin will build a complete transaction index. This allows Bitcoin to access any transaction with commands like `gettransaction`.",
default: allowUnpruned,
},
coinstatsindex: {
Expand Down Expand Up @@ -302,7 +302,7 @@ export const getConfig: T.ExpectedExports.getConfig = async (effects) => {
},
},
},
pruning: {
prune: {
type: "union",
name: "Pruning Settings",
description:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading