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
| import sys | |
| from collections import defaultdict | |
| from pathlib import Path | |
| from math import log2 | |
| # ========================= | |
| # Consts | |
| # ========================= | |
| FILE_MAGIC = b"UTXO" | |
| FILE_VERSION = 0 |
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 | |
| set -euo pipefail | |
| umask 022 | |
| BITCOINCLI="$HOME/dev/bitcoin/build/bin/bitcoin-cli" | |
| HINT_DIR="$HOME/hints" | |
| NEW_HINT_DIR="$HOME/hints_new" | |
| echo "=== $(date) starting generatetxohints ===" |