mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Add missing isBmFullNode
parameter
Signed-off-by: HenrikJannsen <boilingfrog@gmx.com>
This commit is contained in:
parent
5d8641031a
commit
1d46b02a1d
3
Makefile
3
Makefile
@ -195,6 +195,7 @@ seednode: seednode/build
|
|||||||
--useLocalhostForP2P=true \
|
--useLocalhostForP2P=true \
|
||||||
--useDevPrivilegeKeys=true \
|
--useDevPrivilegeKeys=true \
|
||||||
--fullDaoNode=true \
|
--fullDaoNode=true \
|
||||||
|
--isBmFullNode=true \
|
||||||
--rpcUser=bisqdao \
|
--rpcUser=bisqdao \
|
||||||
--rpcPassword=bsq \
|
--rpcPassword=bsq \
|
||||||
--rpcBlockNotificationPort=5120 \
|
--rpcBlockNotificationPort=5120 \
|
||||||
@ -208,6 +209,7 @@ seednode2: seednode/build
|
|||||||
--useLocalhostForP2P=true \
|
--useLocalhostForP2P=true \
|
||||||
--useDevPrivilegeKeys=true \
|
--useDevPrivilegeKeys=true \
|
||||||
--fullDaoNode=true \
|
--fullDaoNode=true \
|
||||||
|
--isBmFullNode=true \
|
||||||
--rpcUser=bisqdao \
|
--rpcUser=bisqdao \
|
||||||
--rpcPassword=bsq \
|
--rpcPassword=bsq \
|
||||||
--rpcBlockNotificationPort=5121 \
|
--rpcBlockNotificationPort=5121 \
|
||||||
@ -231,6 +233,7 @@ alice: setup
|
|||||||
--useDevPrivilegeKeys=true \
|
--useDevPrivilegeKeys=true \
|
||||||
--nodePort=5555 \
|
--nodePort=5555 \
|
||||||
--fullDaoNode=true \
|
--fullDaoNode=true \
|
||||||
|
--isBmFullNode=true \
|
||||||
--rpcUser=bisqdao \
|
--rpcUser=bisqdao \
|
||||||
--rpcPassword=bsq \
|
--rpcPassword=bsq \
|
||||||
--rpcBlockNotificationPort=5122 \
|
--rpcBlockNotificationPort=5122 \
|
||||||
|
@ -106,6 +106,7 @@ class RegtestPlugin @Inject constructor(private val javaToolchainService: JavaTo
|
|||||||
|
|
||||||
val additionalArgs = listOf(
|
val additionalArgs = listOf(
|
||||||
"--fullDaoNode=true",
|
"--fullDaoNode=true",
|
||||||
|
"--isBmFullNode=true",
|
||||||
"--rpcUser=bisqdao",
|
"--rpcUser=bisqdao",
|
||||||
"--rpcPassword=bsq",
|
"--rpcPassword=bsq",
|
||||||
"--rpcBlockNotificationPort=5122",
|
"--rpcBlockNotificationPort=5122",
|
||||||
@ -177,6 +178,7 @@ class RegtestPlugin @Inject constructor(private val javaToolchainService: JavaTo
|
|||||||
createBisqCommonArgs(nodePort) +
|
createBisqCommonArgs(nodePort) +
|
||||||
listOf(
|
listOf(
|
||||||
"--fullDaoNode=true",
|
"--fullDaoNode=true",
|
||||||
|
"--isBmFullNode=true",
|
||||||
|
|
||||||
"--rpcUser=${RPC_USER}",
|
"--rpcUser=${RPC_USER}",
|
||||||
"--rpcPassword=${RPC_PASSWORD}",
|
"--rpcPassword=${RPC_PASSWORD}",
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
. ./config.sh
|
. ./config.sh
|
||||||
~/bin/bisq/bisq-seednode --baseCurrencyNetwork=BTC_REGTEST --useLocalhostForP2P=true --useDevPrivilegeKeys=true --nodePort=2002 --appName=bisq-BTC_REGTEST_Seed_2002 --daoActivated=true --genesisBlockHeight=$genesis_height --genesisTxId=$genesis_tx --fullDaoNode=$dao --rpcUser=$rpcuser --rpcPassword=$rpcpassword --rpcPort=$rpcport --rpcBlockNotificationPort=$blocknotifyport
|
~/bin/bisq/bisq-seednode --baseCurrencyNetwork=BTC_REGTEST --useLocalhostForP2P=true --useDevPrivilegeKeys=true --nodePort=2002 --appName=bisq-BTC_REGTEST_Seed_2002 --daoActivated=true --genesisBlockHeight=$genesis_height --genesisTxId=$genesis_tx --fullDaoNode=$dao --isBmFullNode=$dao --rpcUser=$rpcuser --rpcPassword=$rpcpassword --rpcPort=$rpcport --rpcBlockNotificationPort=$blocknotifyport
|
||||||
|
@ -92,6 +92,7 @@ echo %1 | ncat -w 1 127.0.0.1 5123
|
|||||||
- `--genesisBlockHeight`: If set it overrides the hard coded block height of the genesis tx. Set it to your local genesis tx height.
|
- `--genesisBlockHeight`: If set it overrides the hard coded block height of the genesis tx. Set it to your local genesis tx height.
|
||||||
- `--genesisTxId`: If set it overrides the hard coded genesis tx ID. Set it to your local genesis tx ID.
|
- `--genesisTxId`: If set it overrides the hard coded genesis tx ID. Set it to your local genesis tx ID.
|
||||||
- `--fullDaoNode`: If true it enables full DAO node mode (in contrast to default lite node mode). At least one seed node must be running as a full DAO node to support other lite nodes.
|
- `--fullDaoNode`: If true it enables full DAO node mode (in contrast to default lite node mode). At least one seed node must be running as a full DAO node to support other lite nodes.
|
||||||
|
- `--isBmFullNode`: If true it enables full Burningman node mode which provides accounting data to lite nodes.
|
||||||
- `--rpcUser`: RPC user as defined in bitcoin.conf
|
- `--rpcUser`: RPC user as defined in bitcoin.conf
|
||||||
- `--rpcPassword`: RPC pw as defined in bitcoin.conf
|
- `--rpcPassword`: RPC pw as defined in bitcoin.conf
|
||||||
- `--rpcPort`: RPC port. For regtest 18443
|
- `--rpcPort`: RPC port. For regtest 18443
|
||||||
@ -104,7 +105,7 @@ If you want to run any instance in DAO mode, use the following program arguments
|
|||||||
|
|
||||||
Full node mode:
|
Full node mode:
|
||||||
|
|
||||||
`--daoActivated=true --genesisBlockHeight=111 --genesisTxId=30af0050040befd8af25068cc697e418e09c2d8ebd8d411d2240591b9ec203cf --baseCurrencyNetwork=BTC_REGTEST --useDevPrivilegeKeys=true --useLocalhostForP2P=true --nodePort=7777 --appName=bisq-BTC_REGTEST_Alice_dao --fullDaoNode=true --rpcUser=YOUR_USER_NAME --rpcPassword=YOUR_PW --rpcPort=18443 --rpcBlockNotificationPort=5120`
|
`--daoActivated=true --genesisBlockHeight=111 --genesisTxId=30af0050040befd8af25068cc697e418e09c2d8ebd8d411d2240591b9ec203cf --baseCurrencyNetwork=BTC_REGTEST --useDevPrivilegeKeys=true --useLocalhostForP2P=true --nodePort=7777 --appName=bisq-BTC_REGTEST_Alice_dao --fullDaoNode=true --isBmFullNode=true --rpcUser=YOUR_USER_NAME --rpcPassword=YOUR_PW --rpcPort=18443 --rpcBlockNotificationPort=5120`
|
||||||
|
|
||||||
Lite node mode:
|
Lite node mode:
|
||||||
|
|
||||||
|
@ -12,6 +12,7 @@ EnvironmentFile=/etc/default/bisq.env
|
|||||||
|
|
||||||
ExecStart=/bin/bash __BISQ_HOME__/__BISQ_REPO_NAME__/${BISQ_ENTRYPOINT} \
|
ExecStart=/bin/bash __BISQ_HOME__/__BISQ_REPO_NAME__/${BISQ_ENTRYPOINT} \
|
||||||
--fullDaoNode=${BISQ_DAO_FULLNODE} \
|
--fullDaoNode=${BISQ_DAO_FULLNODE} \
|
||||||
|
--isBmFullNode=${BISQ_DAO_FULLNODE} \
|
||||||
--userDataDir=${BISQ_HOME} \
|
--userDataDir=${BISQ_HOME} \
|
||||||
--appName=${BISQ_APP_NAME} \
|
--appName=${BISQ_APP_NAME} \
|
||||||
--baseCurrencyNetwork=${BISQ_BASE_CURRENCY} \
|
--baseCurrencyNetwork=${BISQ_BASE_CURRENCY} \
|
||||||
|
@ -2,6 +2,7 @@ baseCurrencyNetwork=BTC_REGTEST
|
|||||||
useLocalhostForP2P=true
|
useLocalhostForP2P=true
|
||||||
useDevPrivilegeKeys=true
|
useDevPrivilegeKeys=true
|
||||||
fullDaoNode=true
|
fullDaoNode=true
|
||||||
|
isBmFullNode=true
|
||||||
btcNodes=bisq-bitcoind:18444
|
btcNodes=bisq-bitcoind:18444
|
||||||
rpcHost=bisq-bitcoind
|
rpcHost=bisq-bitcoind
|
||||||
rpcPort=18443
|
rpcPort=18443
|
||||||
|
@ -2,6 +2,7 @@ baseCurrencyNetwork=BTC_REGTEST
|
|||||||
useLocalhostForP2P=true
|
useLocalhostForP2P=true
|
||||||
useDevPrivilegeKeys=true
|
useDevPrivilegeKeys=true
|
||||||
fullDaoNode=true
|
fullDaoNode=true
|
||||||
|
isBmFullNode=true
|
||||||
btcNodes=bisq-bitcoind:18444
|
btcNodes=bisq-bitcoind:18444
|
||||||
rpcHost=bisq-bitcoind
|
rpcHost=bisq-bitcoind
|
||||||
rpcPort=18443
|
rpcPort=18443
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
fullDaoNode=true
|
fullDaoNode=true
|
||||||
|
isBmFullNode=true
|
||||||
userDataDir=/bisq
|
userDataDir=/bisq
|
||||||
appName=bisq-seednode
|
appName=bisq-seednode
|
||||||
baseCurrencyNetwork=btc_mainnet
|
baseCurrencyNetwork=btc_mainnet
|
||||||
|
Loading…
Reference in New Issue
Block a user