Skip to content

Commit d4b25d5

Browse files
authored
Udpate to Bitcoin Core 0.21.1 (#1841)
Update the default version of `bitcoind` to 0.21.1. Deprecate support for version 0.18.1 and 0.19.1.
1 parent a7bb2c2 commit d4b25d5

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ You will find detailed guides and frequently asked questions there.
4141

4242
### Configuring Bitcoin Core
4343

44-
:warning: Eclair requires Bitcoin Core 0.18.1, 0.19.1 or 0.20.1. If you are upgrading an existing wallet, you may need to create a new address and send all your funds to that address.
44+
:warning: Eclair requires Bitcoin Core 0.20.1 or 0.21.1. If you are upgrading an existing wallet, you may need to create a new address and send all your funds to that address.
4545

4646
Eclair needs a _synchronized_, _segwit-ready_, **_zeromq-enabled_**, _wallet-enabled_, _non-pruning_, _tx-indexing_ [Bitcoin Core](https://github.com/bitcoin/bitcoin) node.
4747

eclair-core/pom.xml

+9-9
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@
8888
<activeByDefault>true</activeByDefault>
8989
</activation>
9090
<properties>
91-
<bitcoind.url>https://bitcoincore.org/bin/bitcoin-core-0.20.1/bitcoin-0.20.1-x86_64-linux-gnu.tar.gz</bitcoind.url>
92-
<bitcoind.md5>265d32d3f7645d0a4fe27a698bb8b3b3</bitcoind.md5>
93-
<bitcoind.sha1>5a814f983cd32a0dea67a9c3c36d494130cad7c5</bitcoind.sha1>
91+
<bitcoind.url>https://bitcoincore.org/bin/bitcoin-core-0.21.1/bitcoin-0.21.1-x86_64-linux-gnu.tar.gz</bitcoind.url>
92+
<bitcoind.md5>e283a98b5e9f0b58e625e1dde661201d</bitcoind.md5>
93+
<bitcoind.sha1>5101e29b39c33cc8e40d5f3b46dda37991b037a0</bitcoind.sha1>
9494
</properties>
9595
</profile>
9696
<profile>
@@ -101,9 +101,9 @@
101101
</os>
102102
</activation>
103103
<properties>
104-
<bitcoind.url>https://bitcoincore.org/bin/bitcoin-core-0.20.1/bitcoin-0.20.1-osx64.tar.gz</bitcoind.url>
105-
<bitcoind.md5>765fcc62c3ef470cbc23933c31c2e2f2</bitcoind.md5>
106-
<bitcoind.sha1>2c1ba1a4c05448b81da2161aa3ab94c047681e7b</bitcoind.sha1>
104+
<bitcoind.url>https://bitcoincore.org/bin/bitcoin-core-0.21.1/bitcoin-0.21.1-osx64.tar.gz</bitcoind.url>
105+
<bitcoind.md5>dfd1f323678eede14ae2cf6afb26ff6a</bitcoind.md5>
106+
<bitcoind.sha1>4273696f90a2648f90142438221f5d1ade16afa2</bitcoind.sha1>
107107
</properties>
108108
</profile>
109109
<profile>
@@ -114,9 +114,9 @@
114114
</os>
115115
</activation>
116116
<properties>
117-
<bitcoind.url>https://bitcoincore.org/bin/bitcoin-core-0.20.1/bitcoin-0.20.1-win64.zip</bitcoind.url>
118-
<bitcoind.md5>966568365067add2744ae4030c0d4165</bitcoind.md5>
119-
<bitcoind.sha1>4fe72c5848a2ddc462083db891d6820a6f4ef2ee</bitcoind.sha1>
117+
<bitcoind.url>https://bitcoincore.org/bin/bitcoin-core-0.21.1/bitcoin-0.21.1-win64.zip</bitcoind.url>
118+
<bitcoind.md5>1c6f5081ea68dcec7eddb9e6cdfc508d</bitcoind.md5>
119+
<bitcoind.sha1>a782cd413fc736f05fad3831d6a9f59dde779520</bitcoind.sha1>
120120
</properties>
121121
</profile>
122122
</profiles>

eclair-core/src/test/scala/fr/acinq/eclair/blockchain/bitcoind/BitcoindService.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ trait BitcoindService extends Logging {
5353
val INTEGRATION_TMP_DIR: File = TestUtils.newIntegrationTmpDir()
5454
logger.info(s"using tmp dir: $INTEGRATION_TMP_DIR")
5555

56-
val PATH_BITCOIND = new File(TestUtils.BUILD_DIRECTORY, "bitcoin-0.20.1/bin/bitcoind")
56+
val PATH_BITCOIND = new File(TestUtils.BUILD_DIRECTORY, "bitcoin-0.21.1/bin/bitcoind")
5757
val PATH_BITCOIND_DATADIR = new File(INTEGRATION_TMP_DIR, "datadir-bitcoin")
5858

5959
var bitcoind: Process = _

0 commit comments

Comments
 (0)