forked from TrueCloudLab/frostfs-node
ca0e3211be
Use morph.Client directly. Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
19 lines
523 B
Go
19 lines
523 B
Go
package invoke
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/fixedn"
|
|
)
|
|
|
|
type (
|
|
// SideFeeProvider is an interface that used by invoker package method to
|
|
// get extra fee for all non notary smart contract invocations in side chain.
|
|
SideFeeProvider interface {
|
|
SideChainFee() fixedn.Fixed8
|
|
}
|
|
|
|
// MainFeeProvider is an interface that used by invoker package method to
|
|
// get extra fee for all non notary smart contract invocations in main chain.
|
|
MainFeeProvider interface {
|
|
MainChainFee() fixedn.Fixed8
|
|
}
|
|
)
|