one more rename

This commit is contained in:
Michael Sutton 2023-12-27 00:03:25 +02:00
parent 0428502c44
commit 0534413213

View File

@ -78,7 +78,7 @@ func Start(params *dagconfig.Params, listen, rpcServer string, keysFilePath stri
if err != nil { if err != nil {
return (errors.Wrapf(err, "Error connecting to RPC server %s", rpcServer)) 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 { if err != nil {
return (errors.Wrapf(err, "Error making a second connection to RPC server %s", rpcServer)) return (errors.Wrapf(err, "Error making a second connection to RPC server %s", rpcServer))
} }
@ -96,7 +96,7 @@ func Start(params *dagconfig.Params, listen, rpcServer string, keysFilePath stri
serverInstance := &server{ serverInstance := &server{
rpcClient: rpcClient, rpcClient: rpcClient,
backgroundRPCClient: backgroundRpcClient, backgroundRPCClient: backgroundRPCClient,
params: params, params: params,
utxosSortedByAmount: []*walletUTXO{}, utxosSortedByAmount: []*walletUTXO{},
nextSyncStartIndex: 0, nextSyncStartIndex: 0,