Update Bitcoin Docker image to 25.1

Also decreases the Bitcoin dummy fee.
This commit is contained in:
Luke Parker 2023-10-20 18:52:43 -04:00
parent 43a182fc4c
commit b66203ae3f
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
# Configure Environment
FROM alpine:latest as builder
ENV BITCOIN_VERSION=25.0
ENV BITCOIN_VERSION=25.1
ENV GLIBC_VERSION=2.28-r0
ENV BITCOIN_DATA=/home/bitcoin/.bitcoin

View file

@ -328,7 +328,7 @@ impl Bitcoin {
let median_fee = || {
// TODO
let _ = block_for_fee;
Fee(20)
Fee(2)
};
let fee = median_fee();