Fix lnurl module name to have bitcoin-s prefix (#4392)

This commit is contained in:
benthecarman 2022-06-14 12:37:39 -05:00 committed by GitHub
parent 678c29cf81
commit 45ba6ee1e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -145,11 +145,13 @@ lazy val clightningRpc = project
lazy val lnurl = project
.in(file("lnurl"))
.settings(name := "bitcoin-s-lnurl")
.settings(CommonSettings.prodSettings: _*)
.dependsOn(appCommons, asyncUtilsJVM, tor)
lazy val lnurlTest = project
.in(file("lnurl-test"))
.settings(name := "bitcoin-s-lnurl-test")
.settings(CommonSettings.testSettings: _*)
.dependsOn(lnurl, testkit)