8 lines
182 B
Go
8 lines
182 B
Go
|
package config
|
||
|
|
||
|
// P2PNotary stores configuration for Notary node service.
|
||
|
type P2PNotary struct {
|
||
|
Enabled bool `yaml:"Enabled"`
|
||
|
UnlockWallet Wallet `yaml:"UnlockWallet"`
|
||
|
}
|