(msg ConsensusMsg, msgHash common.Uint256)
| 81 | } |
| 82 | |
| 83 | func (self *ConsensusRound) hasMsg(msg ConsensusMsg, msgHash common.Uint256) bool { |
| 84 | if _, present := self.msgHashs[msgHash]; present { |
| 85 | return present |
| 86 | } |
| 87 | return false |
| 88 | } |
| 89 | |
| 90 | type MsgPool struct { |
| 91 | lock sync.RWMutex |