수수료와 가스 한도의 차이점은 무엇입니까?
-
-
proto 003의 수수료에 대한 일부 정보는 여기 https://tezos.stackexchange.com/q/106/118에서 확인할 수 있습니다.Some information about fees in proto 003 is available here https://tezos.stackexchange.com/q/106/118
- 0
- 2019-02-12
- Ezy
-
2 대답
- 투표
-
- 2019-02-12
테 조스에서 요금은 가스와 무관합니다. 가스를 소비하는 것과 상관없이 항상 요금 전액을 지불해야합니다.
그러나 제빵사는 아마도 요금/가스 비율을 계산하고 더 높은 요금/가스로 거래하는 것을 선호합니다.
In Tezos, the fee is independant from the gas : whatever the gas consumed, you always pay the full fee.
However, bakers will probably compute the ratio fee/gas, and prefer transactions with higher fee/gas, i.e. more reward for less computation.
-
제빵사는 계산하기 쉬운 작업을 선택할 수있는 실질적인 가능성이 있다고 생각하지 않습니다.나는 그들이 현재받는 수수료를 극대화 할 수 있다고 생각합니다. 그렇지 않습니까?I don’t believe that bakers have a practical possibility of choosing operations that are easier to compute. I think they can only maximize fees received currently, can’t they ?
- 0
- 2019-02-12
- Ezy
-
답변이 정확하지 않습니다. 수수료 공식에는gas_limit *price_per_gas라는 용어가 포함되어 있습니다.답변을 명확히 해주시겠습니까?첫 번째 문장이 모호하기 때문입니다.Besides your answer is not correct: the fee formula contains a term gas_limit*price_per_gas. Can you please clarify your answer ? Cause your first sentence is ambiguous.
- 1
- 2019-02-12
- Ezy
-
베이커는 현재 선택하지 않고 높은 수수료/가스로 거래를 선호하는 전략을 구현하는 현재 베이커입니다..ml # L189Bakers don't currently choose, it is the current baker that implements a strategy to favor transactions with high fee/gas:https://gitlab.com/tezos/tezos/blob/mainnet-staging/src/proto_003_PsddFKi3/lib_delegate/client_baking_forge.ml#L189
- 1
- 2019-02-12
- lefessan
-
- 2019-02-12
모든 거래에 대해 항상 전체 수수료가 지불됩니다. 가스 한도는 주어진 거래에서 소비 할 수있는 가스 양의 한도입니다.제빵사는 더 적게 소비하더라도 소비 된 가스 단위당 최소 요금/가스 한도를 지불 받도록 보장 할 수 있습니다.
일부 제빵사는 가스 당 최소 요금을 부과합니다. 현재 가스 단위당 0.1 뮤 테즈 (또는 1 나노 테즈)로 설정되어 있습니다.
The full fee is always paid for every transactions - the gas limit is just that, a cap on the amount of gas a given transaction can consume. A baker can be guaranteed that they are paid at least fee/gas_limit per unit of gas consumed, even if they consume less.
Some bakers will also enforce a minimum per_gas fee, which is currently set to 0.1 mutez (or 1 nanotez) per unit of gas.
이더 리움에서 최대 수수료는 가스에 가스 가격을 곱한 값입니다.하지만 Tezos를 사용하면 작업을 구성 할 때 수수료가 개인적으로 설정되는데 왜
gas_limit
로 계산되지 않습니까?