Remove compiler option for experimental unsigned types

This commit is contained in:
thunderbiscuit 2022-02-28 10:28:44 -05:00
parent 95ef8eb3de
commit 74f6d2bb9e
No known key found for this signature in database
GPG Key ID: 88253696EB836462
2 changed files with 1 additions and 3 deletions

View File

@ -54,6 +54,7 @@ val newAddress = wallet.getNewAddress()
* [Tatooine Faucet](https://github.com/thunderbiscuit/tatooine)
### How to build
_Note that Kotlin version `1.6.10` or later is required to build the library._
1. Clone this repository and init and update it's [`bdk-ffi`] submodule.
```shell

View File

@ -46,7 +46,4 @@ allprojects {
google()
mavenCentral()
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
kotlinOptions.freeCompilerArgs += "-opt-in=kotlin.ExperimentalUnsignedTypes"
}
}