mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-13 03:25:20 +00:00
21 lines
432 B
Markdown
21 lines
432 B
Markdown
|
<!--
|
||
|
order: 6
|
||
|
-->
|
||
|
|
||
|
At the beginning of each block, auctions that have reached `EndTime` are closed. The logic to close auctions is as follows:
|
||
|
|
||
|
```go
|
||
|
var expiredAuctions []uint64
|
||
|
k.IterateAuctionsByTime(ctx, ctx.BlockTime(), func(id uint64) bool {
|
||
|
expiredAuctions = append(expiredAuctions, id)
|
||
|
return false
|
||
|
})
|
||
|
|
||
|
for _, id := range expiredAuctions {
|
||
|
err := k.CloseAuction(ctx, id)
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
}
|
||
|
```
|