mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2024-11-19 09:52:09 +01:00
4055de7690
* Inital LND rpc with some tests * Fix ZMQ test * Correct datadirs * Most tests * Fix eclair tests * Make tests less flaky * Have CI download lnd * Respond to some review * Fix ZMQ tests * Cached bitcoind for lnd tests * Fix fixtures, bump timeout * InstanceFactory & ConfigFactory * Fix compile issue for 2.12.12 * Move factories to core.api.commons
17 lines
355 B
Scala
17 lines
355 B
Scala
import sbt._
|
|
|
|
object TaskKeys {
|
|
|
|
lazy val downloadBitcoind = taskKey[Unit] {
|
|
"Download bitcoind binaries, extract to ./binaries/bitcoind"
|
|
}
|
|
|
|
lazy val downloadEclair = taskKey[Unit] {
|
|
"Download Eclair binaries, extract ./binaries/eclair"
|
|
}
|
|
|
|
lazy val downloadLnd = taskKey[Unit] {
|
|
"Download lnd binaries, extract ./binaries/lnd"
|
|
}
|
|
}
|