Updated on 2026-08-14
This commit is contained in:
parent
27e9400b2a
commit
b38ebb3995
16 changed files with 196 additions and 71 deletions
|
|
@ -42,7 +42,8 @@ data class UserTokensResponse(
|
|||
return otherToken.contractAddress == this.contractAddress &&
|
||||
otherToken.networkId == this.networkId &&
|
||||
otherToken.derivationPath == this.derivationPath &&
|
||||
otherToken.decimals == this.decimals
|
||||
otherToken.decimals == this.decimals &&
|
||||
otherToken.dynamicAddressesEnabled == this.dynamicAddressesEnabled
|
||||
}
|
||||
|
||||
override fun hashCode(): Int = calculateHashCode(
|
||||
|
|
@ -50,6 +51,7 @@ data class UserTokensResponse(
|
|||
networkId.hashCode(),
|
||||
derivationPath.hashCode(),
|
||||
decimals.hashCode(),
|
||||
dynamicAddressesEnabled.hashCode(),
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue