Skip to content

Commit 9b7928c

Browse files
committed
chore: remove lowercase workaround
1 parent 6f60178 commit 9b7928c

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

app/src/main/java/to/bitkit/services/CoreService.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,10 +186,8 @@ class CoreService @Inject constructor(
186186
com.synonym.bitkitcore.isAddressUsed(address = address)
187187
}
188188

189-
@Suppress("ForbiddenComment")
190189
suspend fun decode(input: String): Scanner = ServiceQueue.CORE.background {
191-
// TODO: Remove lowercase workaround when https://github.com/synonymdev/bitkit-core/issues/66 is fixed
192-
com.synonym.bitkitcore.decode(input.lowercase())
190+
com.synonym.bitkitcore.decode(input)
193191
}
194192

195193
companion object {

0 commit comments

Comments
 (0)