mirror of
https://github.com/grassrootseconomics/eth-tracker.git
synced 2025-04-19 07:01:01 +02:00
14 lines
209 B
Go
14 lines
209 B
Go
package queue
|
|
|
|
import (
|
|
"github.com/celo-org/celo-blockchain/core/types"
|
|
"github.com/ef-ds/deque/v2"
|
|
)
|
|
|
|
type (
|
|
Queue struct {
|
|
BlocksQueue *deque.Deque[types.Block]
|
|
BatchQueue *deque.Deque[uint64]
|
|
}
|
|
)
|