Skip to content

Commit

Permalink
one more rename
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsutton committed Dec 26, 2023
1 parent 0428502 commit 0534413
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/kaspawallet/daemon/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func Start(params *dagconfig.Params, listen, rpcServer string, keysFilePath stri
if err != nil {
return (errors.Wrapf(err, "Error connecting to RPC server %s", rpcServer))
}
backgroundRpcClient, err := connectToRPC(params, rpcServer, timeout)
backgroundRPCClient, err := connectToRPC(params, rpcServer, timeout)
if err != nil {
return (errors.Wrapf(err, "Error making a second connection to RPC server %s", rpcServer))
}
Expand All @@ -96,7 +96,7 @@ func Start(params *dagconfig.Params, listen, rpcServer string, keysFilePath stri

serverInstance := &server{
rpcClient: rpcClient,
backgroundRPCClient: backgroundRpcClient,
backgroundRPCClient: backgroundRPCClient,
params: params,
utxosSortedByAmount: []*walletUTXO{},
nextSyncStartIndex: 0,
Expand Down

0 comments on commit 0534413

Please sign in to comment.