github.com/aergoio/aergo@v1.3.1/polaris/server/actormsg.go (about) 1 /* 2 * @file 3 * @copyright defined in aergo/LICENSE.txt 4 */ 5 6 package server 7 8 const PolarisSvc = "polarisSvc" 9 10 type PaginationMsg struct { 11 ReferenceHash []byte 12 Size uint32 13 } 14 15 type CurrentListMsg PaginationMsg 16 type WhiteListMsg PaginationMsg 17 type BlackListMsg PaginationMsg 18 19 type ListEntriesMsg struct { 20 }