Branch: refs/heads/master
Home: https://github.com/btcsuite/btcwallet
Commit: 411eacbeeae6eac169eb2e62b45decbd7924cc0b
https://github.com/btcsuite/btcwallet/commit/411eacbeeae6eac169eb2e62b45decbd7924cc0b
Author: Josh Rickmar <[email protected]>
Date: 2015-06-12 (Fri, 12 Jun 2015)
Changed paths:
M rpcserver.go
M wallet/wallet.go
Log Message:
-----------
Remove data races from switching lock impls.
sync.Locker cannot be safely used to switch a sync.Mutex to a noop
locker since other goroutines that attempt to lock the mutex will race
on the changing interface. Instead, just statically dispatch
sync.Mutex methods.