mempool은 무엇입니까
-
-
mempool에 대한 블로그 게시물은 https://medium.com/simplestaking/the-tezedge-node-a-deep-dive-into-the-mempool-part-1-1a01e3b9de9a에서 찾을 수 있습니다.A blog post on the mempool can be found here: https://medium.com/simplestaking/the-tezedge-node-a-deep-dive-into-the-mempool-part-1-1a01e3b9de9a
- 0
- 2020-06-30
- arvidj
-
1 대답
- 투표
-
- 2019-02-02
mempool 은 shell (자체가 노드의 일부 임)
- 멤풀은 체인에 포함하기 위해 제출되었지만 베이커에 의해 아직 블록에 포함되지 않은 모든 거래로 구성됩니다.
- 베이커는 원칙적으로mempool에서 거래를 선택할 수 있으므로 가스 한도 및 블록 크기 한도의 이중 제약 하에서받는 수수료 금액을 최대화하는 거래를 선택해야합니다.
- 현재는 수령하려는 최소 수수료 및 기타 수수료 매개 변수를 지정할 수있는 노드에서 직접 관리합니다. 수수료에 대한 자세한 정보는 여기에서도 확인할 수 있습니다. proto 003의 수수료
마지막으로 제빵사가mempool에서 트랜잭션을 선택하는 데 사용하는 알고리즘의 세부 정보가 여기 .
The mempool is a part of the shell (it self a part of the node).
- The mempool is made of all transactions which have been submitted for inclusion in the chain but not included in a block yet by bakers.
- Bakers can in principle choose any transaction in the mempool so they should choose those that maximize the amount of fees they receive under the double constraint of the gas limit and block size limit.
- Right now it is managed directly by the node which lets you specify the min amount of fees you wish to receive and other fee parameters. You can also see here for more information on fees: Fees in proto 003?
Finally, details of the algorithm that bakers use to choose transactions in the mempool are given here.
-
이 답변의 마지막 링크는 제빵사가mempool에서 트랜잭션을 선택하는 데 사용하는 알고리즘을 자세히 설명합니다.업데이트 해 주시겠습니까?감사!The last link in this answer, which details the algorithm the baker uses to choose transactions in the mempool, is broken. Can you please update it? Thanks!
- 0
- 2020-02-04
- mikereinhart
-
신경 쓰지 마세요,여기 있습니다-https://gitlab.com/tezos/tezos/-/blob/mainnet-staging/src/proto_006_PsCARTHA/lib_delegate/client_baking_forge.mlNevermind, here it is - https://gitlab.com/tezos/tezos/-/blob/mainnet-staging/src/proto_006_PsCARTHA/lib_delegate/client_baking_forge.ml
- 0
- 2020-02-04
- mikereinhart
테 조스mempool을 언급하는 많은 의견과 질문을 보았지만mempool이 무엇인지에 대한 명확하고 간결한 설명은 보지 못했습니다.
완전한 답변은 다음을 포함해야합니다.