This file contains hidden or 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
| FROM php:8.4-fpm AS build | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| libfreetype-dev \ | |
| libjpeg62-turbo-dev \ | |
| libmemcached-dev \ | |
| libpng-dev \ | |
| libpq-dev \ | |
| libsqlite3-dev \ | |
| zlib1g-dev \ |
This file contains hidden or 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
| FROM alpine:3.21 AS builder | |
| WORKDIR /tmp | |
| RUN apk add --no-cache \ | |
| git \ | |
| && git clone https://github.com/bitcoin/bitcoin | |
| WORKDIR /tmp/bitcoin |
This file contains hidden or 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
| option "title" "Experiments traspassant fons d'inversió" | |
| option "operating_currency" "EUR" | |
| option "booking_method" "FIFO" | |
| plugin "beancount.plugins.implicit_prices" | |
| 2020-01-01 open Assets:Efectiu EUR | |
| 2020-01-01 open Assets:BrokerX:FonsABC ABC.FI | |
| 2022-01-01 open Assets:BrokerY:FonsDEF DEF.FI |
This file contains hidden or 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
| :80 { | |
| root /var/www/mempool/browser | |
| handle /api/v1/* { | |
| reverse_proxy 127.0.0.1:8999 | |
| } | |
| handle /api/* { | |
| uri replace /api/ /api/v1/ | |
| reverse_proxy 127.0.0.1:8999 |
This file contains hidden or 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
| const fs = require('fs'); | |
| const SAMPLE_CONFIG_FILE_NAME = 'mempool-config.sample.json'; | |
| const CONFIG_FILE_NAME = 'mempool-config.json'; | |
| const settings = {}; | |
| const args = process.argv.slice(2); | |
| let sourcePath = SAMPLE_CONFIG_FILE_NAME; | |
| let destinationPath = CONFIG_FILE_NAME; |
This file contains hidden or 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
| -----BEGIN PGP PUBLIC KEY BLOCK----- | |
| mQINBFU32dgBEACcXtiSiNI2nsDnfVmyZ+Kwpp7Pk2P51M1116E1DH5Nbn5PqalG | |
| ALWrK8ZhQpJev75G0Ufee6SmLp/eYPdWLNVL0ZBpDZXwzj7Dpp4qlb31XKhJ0hiO | |
| CzjudUiI1JOLfd4VLCHJdOI5CQhSvkypQZHvRzMyowALa0Aej0sHKdTHkyX9I90b | |
| ThQZka6HSLpptiCs4+XtwTzbbc8/m6FNB1Oe2qvXz57eh4It9XU6C3b/8udQWp0f | |
| RP77PAsylIQ/voBorZMEqityjWx3PJLd8iZTGzYxnXU02QpG2f7Ud5xTxf/b30Zp | |
| GrpS8kiidgjUop4T+5R9t2rJqsNBNwpyN8lu2vFukQI8CMAFLnDQyRmlspmZIvb6 | |
| IOtBfZe41YNIrRrDT7GR382hEzXDujntEJentuXhEvHp1FhYModtUfxp9szrOeQX | |
| 5jKnqHKLAfYYHezFkOZCoxM7uPEDAr+juzxXN9K2KZXNaDfnQ/POXJp7yo0qsKDh |
This file contains hidden or 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
| ## | |
| ## bitcoin.conf configuration file. | |
| ## Generated by contrib/devtools/gen-bitcoin-conf.sh. | |
| ## | |
| ## Lines beginning with # are comments. | |
| ## All possible configuration options are provided. To use, copy this file | |
| ## to your data directory (default or specified by -datadir), uncomment | |
| ## options you would like to change, and save the file. | |
| ## |
This file contains hidden or 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
| diff --git a/src/init.cpp b/src/init.cpp | |
| index af39e8078..c0b5e09dc 100644 | |
| --- a/src/init.cpp | |
| +++ b/src/init.cpp | |
| @@ -553,6 +553,7 @@ void SetupServerArgs(ArgsManager& argsman) | |
| argsman.AddArg("-dustrelayfee=<amt>", strprintf("Fee rate (in %s/kvB) used to define dust, the value of an output such that it will cost more than its value in fees at this fee rate to spend it. (default: %s)", CURRENCY_UNIT, FormatMoney(DUST_RELAY_TX_FEE)), ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::NODE_RELAY); | |
| argsman.AddArg("-bytespersigop", strprintf("Equivalent bytes per sigop in transactions for relay and mining (default: %u)", DEFAULT_BYTES_PER_SIGOP), ArgsManager::ALLOW_ANY, OptionsCategory::NODE_RELAY); | |
| argsman.AddArg("-datacarrier", strprintf("Relay and mine data carrier transactions (default: %u)", DEFAULT_ACCEPT_DATACARRIER), ArgsManager::ALLOW_ANY, OptionsCategory::NODE_RELAY); | |
| + argsman.AddArg("-relayopfalseopif", strprintf("Relay and mine transactions containing the OP_FALSE OP_I |
This file contains hidden or 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
| ## | |
| ## bitcoin.conf configuration file. | |
| ## Generated by contrib/devtools/gen-bitcoin-conf.sh. | |
| ## | |
| ## Lines beginning with # are comments. | |
| ## All possible configuration options are provided. To use, copy this file | |
| ## to your data directory (default or specified by -datadir), uncomment | |
| ## options you would like to change, and save the file. | |
| ## |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| # Requirements: curl, jq (sudo apt install curl jq) | |
| # First, create an A record manually with a TTL of 120 (2 minutes, the minimum) | |
| # The API key is generated from Vultr's user dashboard. | |
| # The Record ID is a UUID, fetch it from here: | |
| # curl -H "Authorization: Bearer ${VULTR_API_KEY}" https://api.vultr.com/v2/domains/${VULTR_DOMAIN}/records |
NewerOlder