github.com/nspcc-dev/neo-go@v0.105.2-0.20240517133400-6be757af3eba/pkg/core/mempool/feer.go (about) 1 package mempool 2 3 import ( 4 "math/big" 5 6 "github.com/nspcc-dev/neo-go/pkg/util" 7 ) 8 9 // Feer is an interface that abstracts the implementation of the fee calculation. 10 type Feer interface { 11 FeePerByte() int64 12 GetUtilityTokenBalance(util.Uint160) *big.Int 13 BlockHeight() uint32 14 }