计数器如何增长
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.
我在某些帐户上看到过柜台.他们只进行了几笔交易,但柜台却很大.计数器的初始值是多少?我发送交易后柜台的数量会增加多少?