カウンターがどのように成長するか
1 回答
- 投票
カウンターは、操作ごとに常に1ずつ増加します.違いは、カウンターが「開始」する場所です.
暗黙の(tz *)アカウントがアクティブになると(残高が0から0を超える)、「グローバル」カウンターが採用されます.これは、暗黙のアカウントがアクティブでなくなったときにカウンターを追跡する必要がなくなるため、ストレージスペースを節約するためです.暗黙のアカウントは非アクティブからアクティブになり、何度も元に戻る可能性があることに注意することが重要です.
作成されたアカウントは、作成された1から始まります.
The counter always increases by 1 for every operation - the difference is where the counter "starts".
When an implicit (tz*) account becomes active (goes from 0 balance to more than 0), it adopts the "global" counter. This is to save storage space, as when an implicit account is no longer active we don't need to track the counter anymore. It's important to note that an implicit account can go from inactive to active and back again many times.
Originated accounts start from 1 when they are originated.
いくつかのアカウントでカウンターを見たことがあります.彼らはほんの少しの取引をしました、しかしカウンターは非常に大きいです.カウンターの初期値は?トランザクションを送信した後、カウンターはどのくらい増加しますか?