Other fixes

This commit is contained in:
pokkst 2023-12-07 18:16:02 -06:00
parent 384d440fe3
commit 269b910aaf
No known key found for this signature in database
GPG Key ID: EC4FAAA66859FAA4

View File

@ -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