Skip to content

Commit

Permalink
wire-mix: remove xxx
Browse files Browse the repository at this point in the history
  • Loading branch information
jrick committed Nov 21, 2023
1 parent 6dd9ce6 commit 5b33984
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions wire/msgmixrs.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,13 @@ func (msg *MsgMixRS) Expires() int64 {
return msg.Expiry
}

// PrevMsgs returns the previous DC messages seen by the peer.
// PrevMsgs returns nil. Previous messages are not needed to perform blame
// assignment, because of the assumption that all previous messages must have
// been received for a blame stage to be necessary. Additionally, a
// commitment to the MixMsgRS hash is included in the KE, and future message
// hashes are not available at that time.
func (msg *MsgMixRS) PrevMsgs() []chainhash.Hash {
return nil // XXX
return nil
}

// Sid returns the session ID.
Expand Down

0 comments on commit 5b33984

Please sign in to comment.