Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • bindings-update
  • development
  • master
  • project_setup
  • xxclient
5 results

Target

Select target project
  • mobile/android/elixxir-dapps-sdk-kotlin
1 result
Select Git revision
  • bindings-update
  • development
  • master
  • project_setup
  • xxclient
5 results
Show changes

Commits on Source 2

...@@ -10,7 +10,7 @@ interface E2e { ...@@ -10,7 +10,7 @@ interface E2e {
val id: E2eId val id: E2eId
val payloadSize: Long val payloadSize: Long
val receptionIdentity: ReceptionId val receptionIdentity: ReceptionId
val contact: Contact val userProfile: Contact
fun setPartitionSize(bytes: Long): Long fun setPartitionSize(bytes: Long): Long
......
...@@ -16,7 +16,7 @@ open class E2eAdapter(protected val e2e: E2eBindings) : E2e{ ...@@ -16,7 +16,7 @@ open class E2eAdapter(protected val e2e: E2eBindings) : E2e{
get() = e2e.payloadSize() get() = e2e.payloadSize()
override val receptionIdentity: ReceptionId override val receptionIdentity: ReceptionId
get() = e2e.receptionID get() = e2e.receptionID
override val contact: Contact override val userProfile: Contact
get() = ContactAdapter(e2e.contact) get() = ContactAdapter(e2e.contact)
override fun setPartitionSize(bytes: Long): Long { override fun setPartitionSize(bytes: Long): Long {
......
...@@ -11,7 +11,7 @@ import bindings.UserDiscovery as UdBindings ...@@ -11,7 +11,7 @@ import bindings.UserDiscovery as UdBindings
interface UserDiscovery { interface UserDiscovery {
val id: Long val id: Long
val contact: Contact val contactModel: Contact
val facts: List<Fact> val facts: List<Fact>
fun sendRegisterFact(fact: Fact): ConfirmationId fun sendRegisterFact(fact: Fact): ConfirmationId
...@@ -23,7 +23,7 @@ interface UserDiscovery { ...@@ -23,7 +23,7 @@ interface UserDiscovery {
open class UserDiscoveryAdapter(protected val ud: UdBindings) : UserDiscovery { open class UserDiscoveryAdapter(protected val ud: UdBindings) : UserDiscovery {
override val id: Long override val id: Long
get() = ud.id get() = ud.id
override val contact: Contact override val contactModel: Contact
get() = ContactAdapter(ud.contact) get() = ContactAdapter(ud.contact)
override val facts: List<Fact> override val facts: List<Fact>
get() = decodeArray(ud.facts) get() = decodeArray(ud.facts)
......