forked from TrueCloudLab/neoneo-go
8 lines
179 B
Go
8 lines
179 B
Go
|
package config
|
||
|
|
||
|
// StateRoot contains state root service configuration.
|
||
|
type StateRoot struct {
|
||
|
Enabled bool `yaml:"Enabled"`
|
||
|
UnlockWallet Wallet `yaml:"UnlockWallet"`
|
||
|
}
|