From 49c7b6fa43317e74dfdb1c09f94a8fc51b8619e0 Mon Sep 17 00:00:00 2001 From: Nic Volanschi Date: Tue, 12 Jul 2022 15:25:19 +0200 Subject: [PATCH 01/14] doc: add section Installation in the Readme.md template --- docs/developer/guidelines.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/developer/guidelines.rst b/docs/developer/guidelines.rst index 98f49f67fa98..16bc3f782788 100644 --- a/docs/developer/guidelines.rst +++ b/docs/developer/guidelines.rst @@ -155,9 +155,10 @@ You must instantiate the ``README.md`` file with the following template:: ## API Documentation - + + + ## Installation + ## Overview @@ -236,7 +242,7 @@ Code formatting To ensure that your OCaml code is well formatted, set up correctly your editor: -+ automatically run `ocamlformat` when saving a file ++ automatically run ``ocamlformat`` when saving a file + no tabs, use whitespaces + no trailing whitespaces + indent correctly (e.g. use lisp-mode for dune files) @@ -246,7 +252,7 @@ Many of these checks can be run with ``make check-python-linting``. Some of these checks can be executed with a `pre-commit `_ which is installed with ``ln -sr scripts/pre_commit/pre_commit.py .git/hooks/pre-commit`` -(see the header of `./scripts/pre_commit/pre_commit.py` and its `--help` +(see the header of :src:`./scripts/pre_commit/pre_commit.py` and its ``--help`` for additional options). Exposing internals @@ -590,7 +596,7 @@ Lwt-, Result-, and Lwt-Result-specific variants of all the traversal functions (``map``, ``iter``, ``for_all``, ``exists``, etc.) Check the -`online documentation for a full list of the content of the ``List`` module `_. +:package-api:`online documentation ` for a full list of the content of the ``List`` module. .. _chaining_concat_map: @@ -608,7 +614,7 @@ Lwtreslib provides additional combinators ``List.concat_map_s``, ``List.concat_map_e``, and ``List.concat_map_es`` to replace the non-vanilla compositions. -Check the `online documentation `_. +Check the :package-api:`online documentation `. Coding conventions ------------------ -- GitLab From 06fc8c0c2ffbe9ffd6fbdfdcdf2147f5b60deb71 Mon Sep 17 00:00:00 2001 From: Eugen Zalinescu Date: Mon, 18 Jul 2022 14:43:50 +0200 Subject: [PATCH 05/14] docs: rename 'util' to 'tool' --- docs/developer/rpc.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer/rpc.rst b/docs/developer/rpc.rst index 054e10adc5e8..efbffee28376 100644 --- a/docs/developer/rpc.rst +++ b/docs/developer/rpc.rst @@ -68,7 +68,7 @@ If you want to learn more about the exchange of RPCs between node and client you can pass the option `-l` and the client will print all the calls with their input/output. -A useful util to manipulate JSON is `jq `_. +A useful tool to manipulate JSON is `jq `_. RPC versions ------------ -- GitLab From 05455f2dd1b697b0e71b77c3d511ff461138565c Mon Sep 17 00:00:00 2001 From: Nic Volanschi Date: Tue, 26 Jul 2022 15:43:15 +0200 Subject: [PATCH 06/14] doc: fix formula for computing the vote participation quorum --- docs/alpha/voting.rst | 14 ++++++++------ docs/jakarta/voting.rst | 14 ++++++++------ docs/kathmandu/voting.rst | 15 +++++++++------ 3 files changed, 25 insertions(+), 18 deletions(-) diff --git a/docs/alpha/voting.rst b/docs/alpha/voting.rst index a8f38be8ef49..b58706d2a9d1 100644 --- a/docs/alpha/voting.rst +++ b/docs/alpha/voting.rst @@ -127,15 +127,17 @@ The *vote participation* is the ratio of all the cumulated stake of cast ballots For the first vote, the *quorum* started at 80% of stake. The quorum is adjusted after each vote as detailed below. This adjustment is necessary to ensure that the amendment process can continue even if some delegates stop -participating. After each vote the new quorum is updated based on the old quorum -and the **vote participation** with the following coefficients:: +participating. After each vote the new quorum is updated based on the exponential moving average of the **vote participation**:: - new-quorum = 0.8 × old-quorum + 0.2 × participation + new_participation_ema = 0.8 * old_participation_ema + 0.2 * participation -However, in order to avoid establishing quorums close to 100% that would be +with the following formula:: + + new_quorum = 0.2 + (0.7 - 0.2) * old_participation_ema + +This formula avoids establishing quorums close to 100% that would be very difficult to attain, or, conversely, low quorums close to 0% making -little participation chronicle, the quorums are lower- and upper-bounded by -:ref:`quorum_caps`. +little participation chronicle, ensuring that the quorums are lower- and upper-bounded by :ref:`quorum_caps` (0.2 and 0.7, respectively). The *super-majority* is reached if the cumulated stake of Yay ballots is greater than 8/10 of the cumulated stake of Yay and Nay ballots. diff --git a/docs/jakarta/voting.rst b/docs/jakarta/voting.rst index 368ca7ecb74c..58ded646197f 100644 --- a/docs/jakarta/voting.rst +++ b/docs/jakarta/voting.rst @@ -127,15 +127,17 @@ The *vote participation* is the ratio of all the cumulated stake of cast ballots For the first vote, the *quorum* started at 80% of stake. The quorum is adjusted after each vote as detailed below. This adjustment is necessary to ensure that the amendment process can continue even if some delegates stop -participating. After each vote the new quorum is updated based on the old quorum -and the **vote participation** with the following coefficients:: +participating. After each vote the new quorum is updated based on the exponential moving average of the **vote participation**:: - new-quorum = 0.8 × old-quorum + 0.2 × participation + new_participation_ema = 0.8 * old_participation_ema + 0.2 * participation -However, in order to avoid establishing quorums close to 100% that would be +with the following formula:: + + new_quorum = 0.2 + (0.7 - 0.2) * old_participation_ema + +This formula avoids establishing quorums close to 100% that would be very difficult to attain, or, conversely, low quorums close to 0% making -little participation chronicle, the quorums are lower- and upper-bounded by -:ref:`quorum_caps`. +little participation chronicle, ensuring that the quorums are lower- and upper-bounded by :ref:`quorum_caps` (0.2 and 0.7, respectively). The *super-majority* is reached if the cumulated stake of Yay ballots is greater than 8/10 of the cumulated stake of Yay and Nay ballots. diff --git a/docs/kathmandu/voting.rst b/docs/kathmandu/voting.rst index 1511ac387b62..d48b5b90731c 100644 --- a/docs/kathmandu/voting.rst +++ b/docs/kathmandu/voting.rst @@ -127,15 +127,18 @@ The *vote participation* is the ratio of all the cumulated stake of cast ballots For the first vote, the *quorum* started at 80% of stake. The quorum is adjusted after each vote as detailed below. This adjustment is necessary to ensure that the amendment process can continue even if some delegates stop -participating. After each vote the new quorum is updated based on the old quorum -and the **vote participation** with the following coefficients:: +participating. After each vote the new quorum is updated based on the +exponential moving average of the **vote participation**:: - new-quorum = 0.8 × old-quorum + 0.2 × participation + new_participation_ema = 0.8 * old_participation_ema + 0.2 * participation -However, in order to avoid establishing quorums close to 100% that would be +with the following formula:: + + new_quorum = 0.2 + (0.7 - 0.2) * old_participation_ema + +This formula avoids establishing quorums close to 100% that would be very difficult to attain, or, conversely, low quorums close to 0% making -little participation chronicle, the quorums are lower- and upper-bounded by -:ref:`quorum_caps`. +little participation chronicle, ensuring that the quorums are lower- and upper-bounded by :ref:`quorum_caps` (0.2 and 0.7, respectively). The *super-majority* is reached if the cumulated stake of Yay ballots is greater than 8/10 of the cumulated stake of Yay and Nay ballots. -- GitLab From 56b62e5cebc990dec0eb9226776ec88826f597e3 Mon Sep 17 00:00:00 2001 From: Nic Volanschi Date: Tue, 30 Aug 2022 09:58:43 +0200 Subject: [PATCH 07/14] doc: fix typo in voting.rst --- docs/alpha/voting.rst | 2 +- docs/jakarta/voting.rst | 2 +- docs/kathmandu/voting.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/alpha/voting.rst b/docs/alpha/voting.rst index b58706d2a9d1..3d4dc8cf44af 100644 --- a/docs/alpha/voting.rst +++ b/docs/alpha/voting.rst @@ -137,7 +137,7 @@ with the following formula:: This formula avoids establishing quorums close to 100% that would be very difficult to attain, or, conversely, low quorums close to 0% making -little participation chronicle, ensuring that the quorums are lower- and upper-bounded by :ref:`quorum_caps` (0.2 and 0.7, respectively). +little participation chronic, ensuring that the quorums are lower- and upper-bounded by :ref:`quorum_caps` (0.2 and 0.7, respectively). The *super-majority* is reached if the cumulated stake of Yay ballots is greater than 8/10 of the cumulated stake of Yay and Nay ballots. diff --git a/docs/jakarta/voting.rst b/docs/jakarta/voting.rst index 58ded646197f..dad26a95f9e4 100644 --- a/docs/jakarta/voting.rst +++ b/docs/jakarta/voting.rst @@ -137,7 +137,7 @@ with the following formula:: This formula avoids establishing quorums close to 100% that would be very difficult to attain, or, conversely, low quorums close to 0% making -little participation chronicle, ensuring that the quorums are lower- and upper-bounded by :ref:`quorum_caps` (0.2 and 0.7, respectively). +little participation chronic, ensuring that the quorums are lower- and upper-bounded by :ref:`quorum_caps` (0.2 and 0.7, respectively). The *super-majority* is reached if the cumulated stake of Yay ballots is greater than 8/10 of the cumulated stake of Yay and Nay ballots. diff --git a/docs/kathmandu/voting.rst b/docs/kathmandu/voting.rst index d48b5b90731c..59167edf388e 100644 --- a/docs/kathmandu/voting.rst +++ b/docs/kathmandu/voting.rst @@ -138,7 +138,7 @@ with the following formula:: This formula avoids establishing quorums close to 100% that would be very difficult to attain, or, conversely, low quorums close to 0% making -little participation chronicle, ensuring that the quorums are lower- and upper-bounded by :ref:`quorum_caps` (0.2 and 0.7, respectively). +little participation chronic, ensuring that the quorums are lower- and upper-bounded by :ref:`quorum_caps` (0.2 and 0.7, respectively). The *super-majority* is reached if the cumulated stake of Yay ballots is greater than 8/10 of the cumulated stake of Yay and Nay ballots. -- GitLab From 729650389c0e1ae09969e08bcf3ca9f9de693fa6 Mon Sep 17 00:00:00 2001 From: Nic Volanschi Date: Tue, 26 Jul 2022 15:49:47 +0200 Subject: [PATCH 08/14] doc: fix link to git-scm signaled by linkcheck --- docs/shell/storage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/shell/storage.rst b/docs/shell/storage.rst index 1889b0745954..59aeb4bc015c 100644 --- a/docs/shell/storage.rst +++ b/docs/shell/storage.rst @@ -138,7 +138,7 @@ Context The context is a versioned key/value store that associates for each block a view of its ledger state. The versioning uses concepts similar -to `Git `_. The current implementation is using +to `Git `_. The current implementation is using `irmin `_ as backend and abstracted by the ``lib_context`` library. -- GitLab From ed632abf826f2fbf3cdf9b1892061eaa0a44fc4a Mon Sep 17 00:00:00 2001 From: Nic Volanschi Date: Tue, 26 Jul 2022 16:49:13 +0200 Subject: [PATCH 09/14] doc: clarify recursive dependencies in installing Python&Co --- docs/developer/python_testing_framework.rst | 4 +++- docs/introduction/howtoget.rst | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/developer/python_testing_framework.rst b/docs/developer/python_testing_framework.rst index 98c8161eeb74..2d8db57e5546 100644 --- a/docs/developer/python_testing_framework.rst +++ b/docs/developer/python_testing_framework.rst @@ -28,6 +28,8 @@ They are organized in four layers. 3. ``launchers``, 4. ``tests``, ``examples``, ``tools``. +.. _install_python: + Installation ------------ @@ -58,7 +60,7 @@ Prerequisites: All subsequent poetry commands are to be run in ``tests_python/``. -Summing up, a typical installation proceeds as follows:: +A typical installation of the above prerequisites (including their own prerequisites) proceeds as follows, see below for full details:: # 1. install pyenv # 2. restart shell, to ensure "pyenv init -" has been evaluated diff --git a/docs/introduction/howtoget.rst b/docs/introduction/howtoget.rst index 14b6d5350e32..fd20bb3fdc19 100644 --- a/docs/introduction/howtoget.rst +++ b/docs/introduction/howtoget.rst @@ -360,6 +360,10 @@ and then do: The following sections describe the individual steps above in more detail. +.. note:: + + Besides compiling the sources, it is recommended to also :ref:`install Python and some related tools `, which are needed, among others, to build the documentation and execute some of the tests. + .. _setup_rust: Install Rust -- GitLab From 9db97e36b6f3ad8c0ba2820a545643d49c1b99e3 Mon Sep 17 00:00:00 2001 From: Nic Volanschi Date: Wed, 27 Jul 2022 10:27:04 +0200 Subject: [PATCH 10/14] doc: cross-reference protocol constants subsets --- docs/alpha/consensus.rst | 1 + docs/alpha/proof_of_stake.rst | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/alpha/consensus.rst b/docs/alpha/consensus.rst index 6b972a00eb33..a63d3977f964 100644 --- a/docs/alpha/consensus.rst +++ b/docs/alpha/consensus.rst @@ -434,6 +434,7 @@ Consensus related protocol parameters * - ``ENDORSING_REWARD_PER_SLOT`` - ``endorsing_reward / CONSENSUS_COMMITTEE_SIZE`` = 0.002857 tez +These are a subset of the :ref:`protocol constants `. .. _shell_proto_revisit_alpha: diff --git a/docs/alpha/proof_of_stake.rst b/docs/alpha/proof_of_stake.rst index a1fdef70dc02..6f2a68e99ccf 100644 --- a/docs/alpha/proof_of_stake.rst +++ b/docs/alpha/proof_of_stake.rst @@ -147,7 +147,8 @@ The list of protocol constants can be found in the API of the `Constants module The values of protocol constants can be found using a :ref:`specific RPC call `, as shown in :ref:`this example `. -In particular, the protocol constants related to the proof-of-stake mechanism are detailed below. +In particular, the protocol constants related to the proof-of-stake mechanism are detailed :ref:`below `. +Other important subsystems of the protocol have their own list of protocol constants, such as the :ref:`consensus-related parameters ` and the :ref:`randomness generation parameters `. .. _ps_constants_alpha: -- GitLab From 80d34195146ac48a475bfe43a15b0fa7d5608ada Mon Sep 17 00:00:00 2001 From: Nic Volanschi Date: Thu, 11 Aug 2022 16:56:21 +0200 Subject: [PATCH 11/14] doc: remove doc of :package-src: which no longer exists --- docs/README.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/README.rst b/docs/README.rst index a550a07bc4da..8ee14ff16e40 100644 --- a/docs/README.rst +++ b/docs/README.rst @@ -82,9 +82,6 @@ Sphinx extensions Some ad-hoc reference kinds are supported. -- ``:package-src:`name``` or ``:package-src:`text``` points - to the gitlab source tree viewer where the `.opam` for the package - is located - ``:package:`name``` or ``:package:`text``` points to the ``odoc`` page of the package, checking that the page exists - ``:package-name:`name``` or ``:package-name:`text``` just -- GitLab From d4d8e050842c7b916a6e07212b96a0148210a9a1 Mon Sep 17 00:00:00 2001 From: Arvid Jakobsson Date: Mon, 22 Aug 2022 17:33:36 +0200 Subject: [PATCH 12/14] doc: update broken links --- docs/alpha/consensus.rst | 4 ++-- docs/developer/guidelines.rst | 2 +- docs/jakarta/consensus.rst | 4 ++-- docs/kathmandu/consensus.rst | 4 ++-- docs/protocols/009_florence.rst | 2 +- docs/protocols/010_granada.rst | 4 ++-- docs/protocols/011_hangzhou.rst | 2 +- docs/user/logging.rst | 2 +- .../lib_protocol/test/helpers/liquidity_baking_generator.mli | 2 +- 9 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/alpha/consensus.rst b/docs/alpha/consensus.rst index a63d3977f964..ae465af8ff85 100644 --- a/docs/alpha/consensus.rst +++ b/docs/alpha/consensus.rst @@ -8,7 +8,7 @@ History ------- Before Tenderbake, there was -`Emmy* `_, +`Emmy* `_, a Nakamoto-style consensus consisting of a series of improvements of the one in the `Tezos whitepaper `_. @@ -497,4 +497,4 @@ Further External Resources * Tenderbake `report `_ * Tenderbake `blog post `_. -* Tenderbake `tzip `_. +* Tenderbake `tzip `_. diff --git a/docs/developer/guidelines.rst b/docs/developer/guidelines.rst index 19edad0d6a5f..2ef5c923b2b3 100644 --- a/docs/developer/guidelines.rst +++ b/docs/developer/guidelines.rst @@ -252,7 +252,7 @@ Many of these checks can be run with ``make check-python-linting``. Some of these checks can be executed with a `pre-commit `_ which is installed with ``ln -sr scripts/pre_commit/pre_commit.py .git/hooks/pre-commit`` -(see the header of :src:`./scripts/pre_commit/pre_commit.py` and its ``--help`` +(see the header of :src:`scripts/pre_commit/pre_commit.py` and its ``--help`` for additional options). Exposing internals diff --git a/docs/jakarta/consensus.rst b/docs/jakarta/consensus.rst index 78d8495a5743..1c3860c9ec50 100644 --- a/docs/jakarta/consensus.rst +++ b/docs/jakarta/consensus.rst @@ -8,7 +8,7 @@ History ------- Before Tenderbake, there was -`Emmy* `_, +`Emmy* `_, a Nakamoto-style consensus consisting of a series of improvements of the one in the `Tezos whitepaper `_. @@ -505,4 +505,4 @@ Further External Resources * Tenderbake `report `_ * Tenderbake `blog post `_. -* Tenderbake `tzip `_. +* Tenderbake `tzip `_. diff --git a/docs/kathmandu/consensus.rst b/docs/kathmandu/consensus.rst index 643caff955f6..7abe4fbb7cbb 100644 --- a/docs/kathmandu/consensus.rst +++ b/docs/kathmandu/consensus.rst @@ -8,7 +8,7 @@ History ------- Before Tenderbake, there was -`Emmy* `_, +`Emmy* `_, a Nakamoto-style consensus consisting of a series of improvements of the one in the `Tezos whitepaper `_. @@ -496,4 +496,4 @@ Further External Resources * Tenderbake `report `_ * Tenderbake `blog post `_. -* Tenderbake `tzip `_. +* Tenderbake `tzip `_. diff --git a/docs/protocols/009_florence.rst b/docs/protocols/009_florence.rst index 8992fda8d6c3..3c528f0e7dc2 100644 --- a/docs/protocols/009_florence.rst +++ b/docs/protocols/009_florence.rst @@ -26,7 +26,7 @@ contract. - Commit: :gl:`tezos@3ff6bc8d` - TZIP: - `increase_operation_size_limit `__ + `increase_operation_size_limit `__ Fixed a discrepancy between ``CONTRACT`` and ``PACK`` in addresses without entrypoints ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/docs/protocols/010_granada.rst b/docs/protocols/010_granada.rst index 7447a8bada14..dba58c788470 100644 --- a/docs/protocols/010_granada.rst +++ b/docs/protocols/010_granada.rst @@ -49,7 +49,7 @@ match the reduced block times, as follows: ``blocks_per_cycle = The constant ``time_between_blocks`` is left unchanged at ``[60; 40]`` but the new constant ``minimal_block_delay = 30`` is added. -- `TZIP `__ +- `TZIP `__ - MRs: :gl:`!2386` :gl:`!2531` :gl:`!2881` - Issue: :gl:`#1027` @@ -62,7 +62,7 @@ The liquidity baking subsidy shuts off automatically at a fixed level if not ren At any time bakers can vote to shut off the liquidity baking subsidy by setting a boolean flag in protocol_data. An exponential moving average (ema) of this escape flag is calculated with a window size of 2000 blocks and the subsidy permanently shuts off if the ema is ever over a threshold included in constants (half the window size with precision of 1000 added for integer computation). -- `TZIP `__ +- `TZIP `__ - MRs: :gl:`!2765` :gl:`!2897` :gl:`!2920` :gl:`!2929` :gl:`!2946` - Issue: :gl:`#1238` diff --git a/docs/protocols/011_hangzhou.rst b/docs/protocols/011_hangzhou.rst index b621ae9b292d..9165a7169ba6 100644 --- a/docs/protocols/011_hangzhou.rst +++ b/docs/protocols/011_hangzhou.rst @@ -208,7 +208,7 @@ Minor Changes delays in proposal injection and/or a restarted voting process, while still making sure it won't extend to two protocols after this one without a more significant increase. This follows the spirit of - `the liquidity baking TZIP `_ in that it is still roughly six months + `the liquidity baking TZIP `_ in that it is still roughly six months from Granada activation and requires a referendum on the subsidy in the protocol after this one. (MR :gl:`!3425` :gl:`!3464`) diff --git a/docs/user/logging.rst b/docs/user/logging.rst index 5fd400ce42b3..ef97b14f1e9f 100644 --- a/docs/user/logging.rst +++ b/docs/user/logging.rst @@ -92,7 +92,7 @@ Common options: separate JSON records, - ``pp`` to output the events pretty-printed, one per line, using a format compatible with - `RFC-5424 `__ (or + `RFC-5424 `__ (or Syslog). Options available only for the ``file-descriptor-path://`` case: diff --git a/src/proto_alpha/lib_protocol/test/helpers/liquidity_baking_generator.mli b/src/proto_alpha/lib_protocol/test/helpers/liquidity_baking_generator.mli index 1f57114240bd..02a0a12ebc93 100644 --- a/src/proto_alpha/lib_protocol/test/helpers/liquidity_baking_generator.mli +++ b/src/proto_alpha/lib_protocol/test/helpers/liquidity_baking_generator.mli @@ -26,7 +26,7 @@ (** This module provides a set of abstractions to reason about the so-called “liquidity baking” feature[1]. - [1]: https://gitlab.com/tezos/tzip/-/blob/master/drafts/current/draft-liquidity_baking.md + [1]: https://gitlab.com/tezos/tzip/-/blob/367628e1a576c3926bedc1d6107b2945607c2605/drafts/current/draft-liquidity_baking.md We remind that this feature is built upon three smart contracts: (1) a CPMM contract initially based on Dexter 2, and (2) two -- GitLab From 0863f0eb99a78be64a623d5bdd3874240bb5516f Mon Sep 17 00:00:00 2001 From: Nic Volanschi Date: Mon, 29 Aug 2022 11:27:31 +0200 Subject: [PATCH 13/14] doc: fix reference and option in section Baker of howtoget.rst --- docs/introduction/howtorun.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/introduction/howtorun.rst b/docs/introduction/howtorun.rst index e58c3788a564..b48f875b0e88 100644 --- a/docs/introduction/howtorun.rst +++ b/docs/introduction/howtorun.rst @@ -157,7 +157,7 @@ Alternatively, you may use the baking rights RPC and the endorsing rights RPC (s Baker ~~~~~ -The baker is a daemon that executes Tezos' :ref:. +The baker is a daemon that executes Tezos' :doc:`consensus algorithm<../active/consensus>`. The baker runs on behalf of one or more specified accounts or, if none is specified, on behalf of all accounts whose secret keys are known. @@ -169,7 +169,7 @@ accounts have the necessary rights. Let's launch the daemon pointing to the standard node directory and baking for user *bob*:: - tezos-baker-alpha run with local node ~/.tezos-node bob + tezos-baker-alpha run with local node ~/.tezos-node bob --liquidity-baking-toggle-vote pass Note that the baker needs direct access to the node data directory for performance reasons (to reduce the number of RPC calls to the node). -- GitLab From 424a494ef5a59c1b843ef9c8c280ec8463844755 Mon Sep 17 00:00:00 2001 From: Nic Volanschi Date: Mon, 29 Aug 2022 11:59:00 +0200 Subject: [PATCH 14/14] doc: fix redirected link tzkt.io --- docs/index.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index 772d2a60f92a..bf1225dafdcd 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -49,7 +49,6 @@ The Community - Several community-built block explorers are available: - https://tzstats.com - - https://tezblock.io - https://tzkt.io (Baking focused explorer) - https://arronax.io (Analytics-oriented explorer) - https://mininax.io -- GitLab