Skip to content

Commit

Permalink
do not use default account for individual witnesses
Browse files Browse the repository at this point in the history
  • Loading branch information
jonesmac committed Nov 19, 2024
1 parent 508fc1b commit 8937be9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/src/main/java/network/xyo/client/XyoPanel.kt
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class XyoPanel(
nodes = mutableListOf<NodeClient>().let {
this@XyoPanel.nodeUrlsAndAccounts.forEach { pair ->
val nodeUrl = pair.first
val account = pair.second ?: defaultAccount
val account = pair.second
it.add(NodeClient(nodeUrl, account, context))
}
it
Expand Down

0 comments on commit 8937be9

Please sign in to comment.