Skip to content

Commit

Permalink
fix: fix some headers and relative urls
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomrdias committed Jul 16, 2020
1 parent ba5c325 commit a5469fc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# baseURL = '/'
title = 'Filecoin Spec'
# theme = 'book'
canonifyurls = false
relativeURLs = true

# Book configuration
disablePathToLower = true
Expand Down
3 changes: 3 additions & 0 deletions content/systems/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ bookCollapseSection: true
weight: 2
---

# Systems
---

In this section we are detailing all the system components one by one in increasing level of complexity and/or interdependence to other system components. The interaction of the components between each other is only briefly discussed where appropriate, but the overall workflow is given in the Introduction section. In particular, in this section we discuss:

- Filecoin Nodes: the different types of nodes that participate in the Filecoin Network, as well as important parts and processes that these nodes run, such as the key store and IPLD store, as well as the network interface to libp2p.
Expand Down
3 changes: 3 additions & 0 deletions content/systems/filecoin_blockchain/struct/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@ bookCollapseSection: true
weight: 1
---

# Blocks
---

The Block is the main unit of the Filecoin blockchain, as is also the case with most other blockchains. Block messages are directly linked with Tipsets, which are groups of Block messages as detailed later on in this section. In the following we discuss the main structure of a Block message and the process of validating Block messages in the Filecoin blockchain.
3 changes: 3 additions & 0 deletions content/systems/filecoin_nodes/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ dashboardState: incomplete
dashboardInterface: stable
---

# Filecoin Nodes
---

This section is providing all the details needed in order to implement any of the different Filecoin Nodes. Although node types in the Filecoin blockchain are less strictly defined than in other blockchains, there are still a few different types of nodes each with its own features and characteristics.

In this section we also discuss issues related to storage of system files in Filecoin nodes. Note that by storage in this section we do not refer to the storage that a node is commiting for mining in the network, but rather the local storage that it needs to have available for keys and IPLD data among other things.
Expand Down

0 comments on commit a5469fc

Please sign in to comment.