f3c1283ac6
They're a part of the regular protocol now. Signed-off-by: Anna Shaleva <shaleva.ann@nspcc.ru> Signed-off-by: Roman Khimov <roman@nspcc.ru>
14 lines
277 B
Go
14 lines
277 B
Go
package mempool
|
|
|
|
import (
|
|
"math/big"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
)
|
|
|
|
// Feer is an interface that abstracts the implementation of the fee calculation.
|
|
type Feer interface {
|
|
FeePerByte() int64
|
|
GetUtilityTokenBalance(util.Uint160) *big.Int
|
|
BlockHeight() uint32
|
|
}
|