forked from TrueCloudLab/neoneo-go
73b630db9b
Follow C# implementation, we have to marshall JSON Fixed8 fields without taking into account decimals.
11 lines
238 B
Go
11 lines
238 B
Go
package mempool
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
|
)
|
|
|
|
// Feer is an interface that abstract the implementation of the fee calculation.
|
|
type Feer interface {
|
|
FeePerByte() int64
|
|
GetUtilityTokenBalance(util.Uint160) int64
|
|
}
|