7 lines
179 B
Go
7 lines
179 B
Go
package config
|
|
|
|
// StateRoot contains state root service configuration.
|
|
type StateRoot struct {
|
|
Enabled bool `yaml:"Enabled"`
|
|
UnlockWallet Wallet `yaml:"UnlockWallet"`
|
|
}
|