cleanup: remove error from function that doesn't error

This commit is contained in:
William Banfield
2022-10-24 15:27:25 -04:00
parent 63a6058e97
commit c5abbe6ab4

View File

@@ -409,10 +409,9 @@ FOR_LOOP:
}
// BroadcastStatusRequest broadcasts `BlockStore` base and height.
func (bcR *Reactor) BroadcastStatusRequest() error {
func (bcR *Reactor) BroadcastStatusRequest() {
bcR.Switch.Broadcast(p2p.Envelope{
ChannelID: BlocksyncChannel,
Message: &bcproto.StatusRequest{},
})
return nil
}