Skip to content

Commit

Permalink
md: Fix pydoc export
Browse files Browse the repository at this point in the history
  • Loading branch information
real-or-random committed Jul 5, 2024
1 parent 5f015c8 commit fc5f310
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ all participants run the identical code and send messages at the same steps.
The first of two phases "Generation of host public keys" involves the participant invokes the function hostpubkey with parameter seed and sends the returned hostpubkey to the coordinator.
The second phase "Session" is initiated by the coordinator sending hostpubkeys and t to the participant.
The participant invokes participant_step1 and sends the returned pmsg1 to the coordinator.
The coordinator invokes coordinator_step and sends the returned cmsg1 to the participant.
The coordinator invokes coordinator_step1 and sends the returned cmsg1 to the participant.
The participant invokes participant_step2 and sends the returned pmsg2 to the coordinator.
The coordinator invokes coordinator_finalize and sends the returned cmsg2 to the participant.
The participant invokes participant_finalizes, which ends the second phase.
Expand Down Expand Up @@ -742,10 +742,10 @@ us recovery data.
- `SessionNotFinalizedError` - If finalizing the DKG session was not
successful from this participant's point of view (see above).

#### coordinator\_step
#### coordinator\_step1

```python
def coordinator_step(
def coordinator_step1(
pmsgs1: List[ParticipantMsg1],
params: SessionParams) -> Tuple[CoordinatorState, CoordinatorMsg1]
```
Expand Down

0 comments on commit fc5f310

Please sign in to comment.