Skip to content

DynaFed note for con_max_block_sig_size #155

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion elements-code-tutorial/block-creation.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ e1-cli stop
e2-cli stop
~~~~

Define the requirements of block creation (must be valid against our redeemscript) and store in a variable. Note that the value "214" comes from (required_signers * 74) + (number_of_nodes * 33). Also note that the "evbparams=dynafed:0:::" parameter is to prevent dynamic federations from activating which complicates block signing:
Define the requirements of block creation (must be valid against our redeemscript) and store in a variable. Note that the value "214" comes from (required_signers * 74) + (number_of_nodes * 33). Also note that the "evbparams=dynafed:0:::" parameter is to prevent dynamic federations from activating which complicates block signing. NB, If you are using DynaFed then the formula becomes (required_signers * 77) + (number_of_nodes * 33):

~~~~
SIGNBLOCKARGS=("-signblockscript=$(echo $REDEEMSCRIPT)" "-con_max_block_sig_size=214" "-evbparams=dynafed:0:::")
Expand Down