File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ class PolykeyAgent {
193193 } ) ) ;
194194 // Remove your own node ID if provided as a seed node
195195 const nodeIdOwn = keyManager . getNodeId ( ) ;
196- const nodeIdEncodedOwn = Object . keys ( seedNodes ) . find ( nodeIdEncoded => {
196+ const nodeIdEncodedOwn = Object . keys ( seedNodes ) . find ( ( nodeIdEncoded ) => {
197197 return nodeIdOwn . equals ( nodesUtils . decodeNodeId ( nodeIdEncoded ) ! ) ;
198198 } ) ;
199199 if ( nodeIdEncodedOwn != null ) {
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ class CommandStart extends CommandPolykey {
8181 // Will be '[{...}, false]' if `--seed-nodes='...'`
8282 const [ seedNodes , defaults ] = options . seedNodes ;
8383 let seedNodes_ = seedNodes ;
84- if ( defaults ) seedNodes_ = { ...options . network , ...seedNodes } ;
84+ if ( defaults ) seedNodes_ = { ...options . network , ...seedNodes } ;
8585 const agentConfig = {
8686 password,
8787 nodePath : options . nodePath ,
You can’t perform that action at this time.
0 commit comments