mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 13:38:35 +00:00
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"`
|
||
|
}
|