netsync: revert base/segwit encoding hack

This commit is contained in:
Roy Lee 2022-08-12 02:07:30 -07:00
parent 78bed14956
commit fcfb2af76f

View file

@ -1294,16 +1294,9 @@ func (sm *SyncManager) handleInvMsg(imsg *invMsg) {
break
}
}
e := wire.BaseEncoding
// we think that the iv.Type set above is sufficient. If not:
// if peer.IsWitnessEnabled() {
// e = wire.WitnessEncoding
//}
state.requestQueue = requestQueue
if len(gdmsg.InvList) > 0 {
peer.QueueMessageWithEncoding(gdmsg, nil, e)
peer.QueueMessage(gdmsg, nil)
}
}