monero-blocks/pool/pool.go

10 lines
165 B
Go
Raw Normal View History

2023-01-02 18:11:48 +00:00
package pool
type Pool interface {
Name() string
GetBlocks(token Token) ([]Block, Token)
}
// Token Used to pass paging information between calls
type Token any