mirror of
https://codeberg.org/anoncontributorxmr/mysu.git
synced 2024-11-28 18:32:56 +00:00
Other fixes
This commit is contained in:
parent
384d440fe3
commit
269b910aaf
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ class Node {
|
||||||
// Nodes are equal if they are the same host address:port & are on the same network
|
// Nodes are equal if they are the same host address:port & are on the same network
|
||||||
override fun equals(other: Any?): Boolean {
|
override fun equals(other: Any?): Boolean {
|
||||||
if (other !is Node) return false
|
if (other !is Node) return false
|
||||||
return host == other.host && address == other.address && rpcPort == other.rpcPort && networkType == other.networkType && username == other.username && password == other.password
|
return trusted == other.trusted && host == other.host && address == other.address && rpcPort == other.rpcPort && networkType == other.networkType && username == other.username && password == other.password
|
||||||
}
|
}
|
||||||
|
|
||||||
val isOnion: Boolean
|
val isOnion: Boolean
|
||||||
|
|
Loading…
Reference in a new issue