Skip to content

Commit

Permalink
fix(content): delete listings section (#1149)
Browse files Browse the repository at this point in the history
  • Loading branch information
yiannisbot committed Sep 10, 2020
1 parent 1e0403d commit 4d74206
Show file tree
Hide file tree
Showing 9 changed files with 2 additions and 123 deletions.
9 changes: 0 additions & 9 deletions content/listings/_index.md

This file was deleted.

12 changes: 0 additions & 12 deletions content/listings/actors.md

This file was deleted.

8 changes: 0 additions & 8 deletions content/listings/libp2p_protocols/_index.md

This file was deleted.

39 changes: 0 additions & 39 deletions content/listings/libp2p_protocols/data_transfer_protocol.md

This file was deleted.

38 changes: 0 additions & 38 deletions content/listings/reserved_ranges.md

This file was deleted.

13 changes: 0 additions & 13 deletions content/listings/system_map.md

This file was deleted.

Expand Up @@ -224,8 +224,6 @@ ValidateBeaconEntries(blockHeader, priorBlockHeader) error {

Filecoin block headers also contain a single "ticket" generated from its epoch's beacon entry. Tickets are used to break ties in the Fork Choice Rule, for forks of equal weight.

You can find the Ticket data structure [here](data_structures)

Whenever comparing tickets in Filecoin, the comparison is that of the ticket's VRFDigest's bytes.

### Randomness Ticket generation
Expand Down
2 changes: 1 addition & 1 deletion content/systems/filecoin_files/data_transfer/_index.md
Expand Up @@ -81,7 +81,7 @@ once the provider indicates their intent to accept and publish the client's deal

## Protocol

A data transfer CAN be negotiated over the network via the [Data Transfer Protocol](data_transfer_protocol), a libp2p protocol type.
A data transfer CAN be negotiated over the network via the Data Transfer Protocol, a libp2p protocol type.

Using the Data Transfer Protocol as an independent libp2p communciation mechanism is not a hard requirement -- as long as both parties have an implementation of the Data Transfer Subsystem that can talk to the other, any
transport mechanism (including offline mechanisms) is acceptable.
Expand Down
Expand Up @@ -28,7 +28,7 @@ This second route for creating an actor is allowed to avoid the necessity of an

## Execution (Calling a method on an Actor)

Message execution currently relies entirely on 'built-in' code, with a common external interface. The method and actor to call it on are specified in the `Method` and `To` fields of a message, respectively. Method parameters are encoded and put into the `Params` field of a message. The encoding is technically actor dependent, but for all built-in Filecoin actors it is the dag-cbor ipld encoding of the parameters struct for each method defined in [the actors doc](actors.md).
Message execution currently relies entirely on 'built-in' code, with a common external interface. The method and actor to call it on are specified in the `Method` and `To` fields of a message, respectively. Method parameters are encoded and put into the `Params` field of a message. The encoding is technically actor dependent, but for all built-in Filecoin actors it is the dag-cbor ipld encoding of the parameters struct for each method defined in actors.

### Storage

Expand Down

0 comments on commit 4d74206

Please sign in to comment.