forked from TrueCloudLab/frostfs-node
Dmitrii Stepanov
81718afb39
Named put fee value used only when notary disabled. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
29 lines
701 B
Go
29 lines
701 B
Go
package config
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neo-go/pkg/encoding/fixedn"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
// FeeConfig is an instance that returns extra fee values for contract
|
|
// invocations without notary support.
|
|
type FeeConfig struct {
|
|
mainchain,
|
|
sidechain fixedn.Fixed8
|
|
}
|
|
|
|
// NewFeeConfig constructs FeeConfig from viper.Viper instance. Latter must not be nil.
|
|
func NewFeeConfig(v *viper.Viper) *FeeConfig {
|
|
return &FeeConfig{
|
|
mainchain: fixedn.Fixed8(v.GetInt64("fee.main_chain")),
|
|
sidechain: fixedn.Fixed8(v.GetInt64("fee.side_chain")),
|
|
}
|
|
}
|
|
|
|
func (f FeeConfig) MainChainFee() fixedn.Fixed8 {
|
|
return f.mainchain
|
|
}
|
|
|
|
func (f FeeConfig) SideChainFee() fixedn.Fixed8 {
|
|
return f.sidechain
|
|
}
|