テゾスで最大のブロックサイズ?
1 回答
- 投票
Tezos Alphaでは、トランザクションリストのサイズが制限されています:
Tezosはブロックを一度にダウンロードするのではなく、ヘッダーとさまざまな操作のリストを別々に検討します. Tezos.alphaでは、バイト単位の最大サイズがトランザクションのリストに適用されますMAX_TRANSACTION_LIST_SIZE=500kB(最大で10分ごとに5MB).
その他の操作のリスト(承認、非難、公開)は、操作の数に関して制限されています(ただし、防御的なプログラミングスタイルでは、予想される操作のサイズにも制限があります). [1]
約1年前、ブロック間の目標は1分で、これまでのところサイズ制限は設定されていませんでした:
ブロック間の1分を目標としています.ブロックサイズはまだ設定していませんが、最初は注意が必要です.ネットワークのスループットに自信がついたら、修正メカニズムを使用してブロックサイズを大きくすることをお勧めします. [2]
私の出典:
[1] https://tezos.gitlab.io/mainnet/whitedoc/proof_of_stake .html
[2] https://www.reddit.com/r/tezos/comments/6a803e/tezos_blocksize_blockchain_growth/
In Tezos Alpha the Transaction List size is limited:
Tezos does not download blocks all at once, but rather considers headers and various lists of operations separately. In Tezos.alpha, a maximum size in bytes is applied to the list of transactions MAX_TRANSACTION_LIST_SIZE = 500kB (that’s 5MB every 10 minutes at most).
Other lists of operations (endorsements, denunciations, reveals) are limited in terms of number of operations (though the defensive programming style also puts limits on the size of operations it expects). [1]
About year ago they had a target of 1 minute between blocks and no size limit set so far:
We're targeting 1 minute between blocks. We haven't set a blocksize yet, but we'll her on the side of caution at first. It's better to raise the blocksize through the amendment mechanism once we are confident in the network's throughput. [2]
My source:
[1] https://tezos.gitlab.io/mainnet/whitedoc/proof_of_stake.html
[2] https://www.reddit.com/r/tezos/comments/6a803e/tezos_blocksize_blockchain_growth/
tezosのブロックサイズに制限はありますか?
もしそうなら、それは最大トランザクション数で表されますか?または最大バイトサイズ?または何か他のもの?