Browse Source

blockchain/v2: fix missing mutex unlock (#5862)

Fixes #5843.
pull/5893/head
Erik Grinaker 4 years ago
committed by Erik Grinaker
parent
commit
2eba38051a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      blockchain/v2/reactor.go

+ 1
- 1
blockchain/v2/reactor.go View File

@ -500,12 +500,12 @@ func (r *BlockchainReactor) Receive(chID byte, src p2p.Peer, msgBytes []byte) {
r.mtx.RUnlock()
case *bcproto.BlockResponse:
r.mtx.RLock()
bi, err := types.BlockFromProto(msg.Block)
if err != nil {
r.logger.Error("error transitioning block from protobuf", "err", err)
return
}
r.mtx.RLock()
if r.events != nil {
r.events <- bcBlockResponse{
peerID: src.ID(),


Loading…
Cancel
Save