Skip to content

Commit

Permalink
[skyapi] refs fibercrypto#4 Fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
stdevAdrianPaez committed May 9, 2019
1 parent e154a4e commit 56a4a67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/skyapi/src/main/kotlin/skycoin/apis/DefaultApi.kt
Original file line number Diff line number Diff line change
Expand Up @@ -1187,7 +1187,7 @@ class DefaultApi(basePath: kotlin.String = "http://127.0.0.1:6420") : ApiClient(
fun walletCreate(seed: kotlin.String, label: kotlin.String, scan: kotlin.Int, encrypt: kotlin.Boolean, password: kotlin.String) : kotlin.Any {
val localVariableBody: kotlin.Any? = null
val localVariableQuery: MultiValueMap = mapOf()
val localVariableHeaders: kotlin.collections.Map<kotlin.String,kotlin.String> = mapOf("seed" to seed, "label" to label, "scan" to scan, "encrypt" to encrypt, "password" to password)
val localVariableHeaders: kotlin.collections.Map<kotlin.String,kotlin.String> = mapOf("seed" to seed, "label" to label, "scan" to scan.toString(), "encrypt" to encrypt.toString(), "password" to password)
val localVariableConfig = RequestConfig(
RequestMethod.POST,
"/api/v1/wallet/create",
Expand Down

0 comments on commit 56a4a67

Please sign in to comment.