@@ -201,22 +201,23 @@ Following these initial Gatekeeper configuration variables, the file contains MD
201201
202202WARNING: Changes to these variables are likely to ** break** the Docker Compose functionality.
203203
204- | Variable | Default Value | Description |
205- | -----------------------------| ---------------| ----------------------------------------------------------------------------|
206- | # Bitcoin testnet4 mediator | | |
207- | ` KC_TBTC_HOST ` | ` localhost ` | Host name for the Bitcoin Testnet node |
208- | ` KC_TBTC_CHAIN ` | ` TBTC ` | MDIP registry name for the Bitcoin Testnet network |
209- | ` KC_TBTC_NETWORK ` | ` testnet ` | |
210- | ` KC_TBTC_START_BLOCK ` | ` 38000 ` | |
211- | ` KC_TBTC_PORT ` | ` 48332 ` | Bitcoin Testnet node RPC port |
212- | ` KC_TBTC_USER ` | ` testnet4 ` | Bitcoin Testnet node RPC user |
213- | ` KC_TBTC_PASS ` | ` testnet4 ` | Bitcoin Testnet node RPC password |
214- | ` KC_TBTC_WALLET ` | ` mdip ` | Name of the Bitcoin Testnet wallet to draw funds from for transaction fees |
215- | ` KC_TBTC_IMPORT_INTERVAL ` | ` 1 ` | MDIP Satoshi Mediator import loop wait interval (in minutes) |
216- | ` KC_TBTC_EXPORT_INTERVAL ` | ` 1 ` | MDIP Satoshi Mediator export loop wait interval (in minutes) |
217- | ` KC_TBTC_FEE_MIN ` | ` 0.00000200 ` | Bitcoin Testnet transaction minimum fee |
218- | ` KC_TBTC_FEE_MAX ` | ` 0.00000600 ` | Bitcoin Testnet transaction maximum fee |
219- | ` KC_TBTC_FEE_INC ` | ` 0 ` | |
204+ | Variable | Default Value | Description |
205+ | ---------------------------------| ---------------| ----------------------------------------------------------------------------|
206+ | # Bitcoin testnet4 mediator | | |
207+ | ` KC_TBTC_HOST ` | ` localhost ` | Host name for the Bitcoin Testnet node |
208+ | ` KC_TBTC_CHAIN ` | ` TBTC ` | MDIP registry name for the Bitcoin Testnet network |
209+ | ` KC_TBTC_NETWORK ` | ` testnet ` | |
210+ | ` KC_TBTC_START_BLOCK ` | ` 38000 ` | |
211+ | ` KC_TBTC_PORT ` | ` 48332 ` | Bitcoin Testnet node RPC port |
212+ | ` KC_TBTC_USER ` | ` testnet4 ` | Bitcoin Testnet node RPC user |
213+ | ` KC_TBTC_PASS ` | ` testnet4 ` | Bitcoin Testnet node RPC password |
214+ | ` KC_TBTC_WALLET ` | ` mdip ` | Name of the Bitcoin Testnet wallet to draw funds from for transaction fees |
215+ | ` KC_TBTC_IMPORT_INTERVAL ` | ` 1 ` | MDIP Satoshi Mediator import loop wait interval (in minutes) |
216+ | ` KC_TBTC_EXPORT_INTERVAL ` | ` 1 ` | MDIP Satoshi Mediator export loop wait interval (in minutes) |
217+ | ` KC_TBTC_FEE_BLOCK_TARGET ` | ` 1 ` | Number of blocks to pass before Replace-By-Fee is used if enabled |
218+ | ` KC_TBTC_FEE_FALLBACK_SAT_BYTE ` | ` 10 ` | Fallback Sat/Byte if estimatesmartfee does not have enough data |
219+ | ` KC_TBTC_FEE_MAX ` | ` 0.00000600 ` | Bitcoin Testnet transaction maximum fee |
220+ | ` KC_TBTC_RBF_ENABLED ` | false | Whether Replace-By-Fee is enabled |
220221
221222### Customizing the docker-compose.yml services
222223
@@ -322,9 +323,10 @@ In the example below, we use a generic bitcoin-code node configured to operate o
322323 - KC_SAT_WALLET=${KC_TBTC_WALLET}
323324 - KC_SAT_IMPORT_INTERVAL=${KC_TBTC_IMPORT_INTERVAL}
324325 - KC_SAT_EXPORT_INTERVAL=${KC_TBTC_EXPORT_INTERVAL}
325- - KC_SAT_FEE_MIN=${KC_TBTC_FEE_MIN}
326+ - KC_SAT_FEE_BLOCK_TARGET=${KC_TBTC_FEE_BLOCK_TARGET}
327+ - KC_SAT_FEE_FALLBACK_SAT_BYTE=${KC_TBTC_FEE_FALLBACK_SAT_BYTE}
326328 - KC_SAT_FEE_MAX=${KC_TBTC_FEE_MAX}
327- - KC_SAT_FEE_INC =${KC_TBTC_FEE_INC }
329+ - KC_SAT_RBF_ENABLED =${KC_TBTC_RBF_ENABLED }
328330 volumes:
329331 - ./data:/app/satoshi/data
330332 user: "${KC_UID}:${KC_GID}"
0 commit comments