Skip to content

Commit

Permalink
Rename method
Browse files Browse the repository at this point in the history
  • Loading branch information
abdrasulov committed Mar 28, 2024
1 parent 22fd005 commit c134291
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ abstract class ISendTransactionService: ServiceState<SendTransactionServiceState
abstract fun start(coroutineScope: CoroutineScope)
abstract fun setSendTransactionData(data: SendTransactionData)
@Composable
abstract fun GetContent(navController: NavController)
abstract fun GetSettingsContent(navController: NavController)
abstract suspend fun sendTransaction()
abstract val sendTransactionSettingsFlow: StateFlow<SendTransactionSettings>
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ class SendTransactionServiceEvm(blockchainType: BlockchainType) : ISendTransacti
}

@Composable
override fun GetContent(navController: NavController) {
override fun GetSettingsContent(navController: NavController) {
val nonceViewModel = viewModel<SendEvmNonceViewModel>(initializer = {
SendEvmNonceViewModel(nonceService)
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ fun SwapTransactionSettingsScreen(navController: NavController) {

val sendTransactionService = viewModel.sendTransactionService

sendTransactionService.GetContent(navController)
sendTransactionService.GetSettingsContent(navController)
}

0 comments on commit c134291

Please sign in to comment.