Skip to content

Commit

Permalink
updated HostInteractorStub with new implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
giannis-rdx committed Dec 10, 2024
1 parent e7e7427 commit 4262e63
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/src/main/java/rdx/works/core/di/CoreModule.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ package rdx.works.core.di
import android.content.Context
import androidx.datastore.core.DataStore
import androidx.datastore.preferences.core.Preferences
import com.radixdlt.sargon.AuthenticationSigningRequest
import com.radixdlt.sargon.AuthenticationSigningResponse
import com.radixdlt.sargon.Bios
import com.radixdlt.sargon.CommonException
import com.radixdlt.sargon.HostInteractor
Expand Down Expand Up @@ -96,6 +98,10 @@ private class HostInteractorStub : HostInteractor {
throw CommonException.Unknown()
}

override suspend fun signAuth(request: AuthenticationSigningRequest): AuthenticationSigningResponse {
throw CommonException.Unknown()
}

override suspend fun signSubintents(request: SignRequestOfSubintent): SignWithFactorsOutcomeOfSubintentHash {
throw CommonException.Unknown()
}
Expand Down

0 comments on commit 4262e63

Please sign in to comment.