Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 1 addition & 48 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ members = [
"modules/genesis_bootstrapper", # Genesis bootstrap UTXOs
"modules/mithril_snapshot_fetcher", # Mithril snapshot fetcher
"modules/snapshot_bootstrapper", # Bootstrap state from a ledger snapshot
"modules/upstream_chain_fetcher", # Upstream chain fetcher
"modules/peer_network_interface", # Multi-peer network interface
"modules/block_unpacker", # Block to transaction unpacker
"modules/tx_unpacker", # Tx to UTXO unpacker
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ graph TB

## Modules

- [Upstream Chain Fetcher](modules/upstream_chain_fetcher) -
- [Peer Network Interface](modules/peer_network_interface) -
implementation of the Node-to-Node (N2N) client-side (initiator)
protocol, allowing chain synchronisation and block fetching
- [Mithril Snapshot Fetcher](modules/mithril_snapshot_fetcher) -
Expand Down
2 changes: 1 addition & 1 deletion modules/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This directory holds microservice modules for a Caryatid framework which
compose the Acropolis Architecture

* [Upstream Chain Fetcher](upstream_chain_fetcher) -
* [Peer Network Interface](peer_network_interface) -
implementation of the Node-to-Node (N2N) client-side (initiator)
protocol, allowing chain synchronisation and block fetching
* [Mithril Snapshot Fetcher](mithril_snapshot_fetcher) -
Expand Down
3 changes: 1 addition & 2 deletions modules/block_unpacker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ publish-topic = "cardano.txs"
## Messages

The block unpacker subscribes for RawBlockMessages on
`cardano.block.proposed` (see the [Upstream Chain
Fetcher](../upstream_chain_fetcher) module for details). It unpacks
`cardano.block.proposed` (see the [Consensus](../consensus) module for details). It unpacks
this into transactions, which it publishes as a single RawTxsMessage
on `cardano.txs`, containing the block information and an ordered vector of
raw transaction CBOR. This ensure the transactions are kept in order.
Expand Down
2 changes: 1 addition & 1 deletion modules/mithril_snapshot_fetcher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ a startup event before beginning to allow the

When it has finished it sends a snapshot complete event indicating the
last block fetched, which is used by the
[Upstream Chain Fetcher](../upstream_chain_fetcher) to synchronize ongoing
[Peer Network Interface](../peer_network_interface) to synchronize ongoing
fetches.

## Configuration
Expand Down
25 changes: 0 additions & 25 deletions modules/upstream_chain_fetcher/Cargo.toml

This file was deleted.

40 changes: 0 additions & 40 deletions modules/upstream_chain_fetcher/NOTES.md

This file was deleted.

113 changes: 0 additions & 113 deletions modules/upstream_chain_fetcher/README.md

This file was deleted.

Loading