Skip to content

Commit

Permalink
Remove create method from interface
Browse files Browse the repository at this point in the history
  • Loading branch information
Conor Okus committed Nov 11, 2022
1 parent ec29d6c commit c446025
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -21,6 +21,8 @@ import kotlinx.coroutines.launch

@Composable
fun WalletScreen() {
val accessImpl = AccessImpl()

Column(
modifier = Modifier
.padding(top = 48.dp)
Expand Down Expand Up @@ -48,7 +50,7 @@ fun WalletScreen() {
Button(
onClick = {
CoroutineScope(Dispatchers.IO).launch {
Access.create().sync()
accessImpl.sync()
}

Log.i(LDKTAG, "Wallet synced")
Expand Down

0 comments on commit c446025

Please sign in to comment.