Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Elixxir dApps SDK Kotlin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile
android
Elixxir dApps SDK Kotlin
Commits
56c059ea
Commit
56c059ea
authored
2 years ago
by
Kamal Bramwell
Browse files
Options
Downloads
Patches
Plain Diff
Change return value of makeLegacyReceptionIdentity
parent
26750845
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
xxclient/src/main/java/io/elixxir/xxclient/cmix/CMix.kt
+3
-6
3 additions, 6 deletions
xxclient/src/main/java/io/elixxir/xxclient/cmix/CMix.kt
with
3 additions
and
6 deletions
xxclient/src/main/java/io/elixxir/xxclient/cmix/CMix.kt
+
3
−
6
View file @
56c059ea
...
...
@@ -6,7 +6,6 @@ import io.elixxir.xxclient.connection.ConnectionAdapter
import
io.elixxir.xxclient.models.BindingsModel.Companion.decode
import
io.elixxir.xxclient.models.NetworkFollowerStatus
import
io.elixxir.xxclient.models.NodeRegistrationReport
import
io.elixxir.xxclient.models.ReceptionIdentity
import
io.elixxir.xxclient.utils.E2eId
import
bindings.Cmix
as
CMixBindings
...
...
@@ -15,7 +14,7 @@ interface CMix {
val
receptionRegistrationValidationSignature
:
ByteArray
fun
makeReceptionIdentity
():
ByteArray
fun
makeLegacyReceptionIdentity
():
ReceptionIdentity
?
fun
makeLegacyReceptionIdentity
():
ByteArray
fun
isNetworkHealthy
():
Boolean
fun
getNodeRegistrationStatus
():
NodeRegistrationReport
?
fun
hasRunningProcesses
():
Boolean
...
...
@@ -49,10 +48,8 @@ open class CMixAdapter(protected val cMix: CMixBindings) : CMix {
return
cMix
.
makeReceptionIdentity
()
}
override
fun
makeLegacyReceptionIdentity
():
ReceptionIdentity
?
{
return
decode
(
cMix
.
makeLegacyReceptionIdentity
()
)
override
fun
makeLegacyReceptionIdentity
():
ByteArray
{
return
cMix
.
makeLegacyReceptionIdentity
()
}
override
fun
isNetworkHealthy
():
Boolean
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment