mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-02-22 14:33:06 +01:00
Update c-lightning to v0.10.2 (#3857)
This commit is contained in:
parent
d0db9ba633
commit
7933c90741
2 changed files with 3 additions and 3 deletions
|
@ -19,7 +19,7 @@ TaskKeys.downloadCLightning := {
|
||||||
Files.createDirectories(binaryDir)
|
Files.createDirectories(binaryDir)
|
||||||
}
|
}
|
||||||
|
|
||||||
val version = "0.10.1"
|
val version = "0.10.2"
|
||||||
|
|
||||||
val (platform, suffix) =
|
val (platform, suffix) =
|
||||||
if (Properties.isLinux) ("Ubuntu-20.04", "tar.xz")
|
if (Properties.isLinux) ("Ubuntu-20.04", "tar.xz")
|
||||||
|
@ -53,7 +53,7 @@ TaskKeys.downloadCLightning := {
|
||||||
|
|
||||||
val expectedHash =
|
val expectedHash =
|
||||||
if (Properties.isLinux)
|
if (Properties.isLinux)
|
||||||
"c99e1879e36f108e4c7d9bef597a4179e6c6b5b92b1142f2bc9e888cf0cf6ea6"
|
"de61bb1dec0f656e192f896de7dcb08f4b07cf9c2bdaef8c78d860cd80ea6776"
|
||||||
else sys.error(s"Unsupported OS: ${Properties.osName}")
|
else sys.error(s"Unsupported OS: ${Properties.osName}")
|
||||||
|
|
||||||
if (hash.equalsIgnoreCase(expectedHash)) {
|
if (hash.equalsIgnoreCase(expectedHash)) {
|
||||||
|
|
|
@ -346,7 +346,7 @@ class CLightningRpcClient(val instance: CLightningInstanceLocal, binary: File)(
|
||||||
object CLightningRpcClient {
|
object CLightningRpcClient {
|
||||||
|
|
||||||
/** The current version we support of clightning */
|
/** The current version we support of clightning */
|
||||||
val version = "0.10.1"
|
val version = "0.10.2"
|
||||||
|
|
||||||
private[clightning] def feeRateToJson(feeUnit: FeeUnit): JsString = {
|
private[clightning] def feeRateToJson(feeUnit: FeeUnit): JsString = {
|
||||||
// clightning only takes SatoshisPerKiloByte or SatoshisPerKW
|
// clightning only takes SatoshisPerKiloByte or SatoshisPerKW
|
||||||
|
|
Loading…
Add table
Reference in a new issue