From c908a446655e0ab717b39b2a2147f9f1409c627b Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Mon, 28 Jul 2014 09:38:44 -0500 Subject: [PATCH] Fix typos from my last commit. --- rpcserver.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcserver.go b/rpcserver.go index b424f29..17a8ed6 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -530,7 +530,7 @@ func (s *rpcServer) SetWallet(wallet *Wallet) { // Make sure already connected websocket clients get a notification // if the chain RPC client connection is set and connected. This is - // run as a goroutine since it must aquire the handlerLock, which is + // run as a goroutine since it must acquire the handlerLock, which is // locked here. go s.notifyChainServerConnected(chainSvrConnected) } @@ -558,7 +558,7 @@ func (s *rpcServer) SetChainServer(chainSvr *chain.Client) { // Make sure already connected websocket clients get a notification // if the chain RPC client connection is set and connected. This is - // run as a goroutine since it must aquire the handlerLock, which is + // run as a goroutine since it must acquire the handlerLock, which is // locked here. go s.notifyChainServerConnected(!chainSvr.Disconnected()) }