Skip to content

Commit

Permalink
Update Bitcoin Docker image to 25.1
Browse files Browse the repository at this point in the history
Also decreases the Bitcoin dummy fee.
  • Loading branch information
kayabaNerve committed Oct 20, 2023
1 parent 43a182f commit b66203a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion orchestration/coins/bitcoin/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion processor/src/networks/bitcoin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ impl Bitcoin {
let median_fee = || {
// TODO
let _ = block_for_fee;
Fee(20)
Fee(2)
};
let fee = median_fee();

Expand Down

0 comments on commit b66203a

Please sign in to comment.