diff --git a/testutil/testnodeconf/testnodeconf.go b/testutil/testnodeconf/testnodeconf.go index 2d6b195e..19b62fcb 100644 --- a/testutil/testnodeconf/testnodeconf.go +++ b/testutil/testnodeconf/testnodeconf.go @@ -31,6 +31,10 @@ type Config struct { func (c *Config) Init(a *app.App) (err error) { return } func (c *Config) Name() string { return "config" } +func (c *Config) GetNodesConfId() string { + return "test" +} + func (c *Config) GetNodes() []nodeconf.NodeConfig { return c.nodes } diff --git a/util/strkey/strkey_test.go b/util/strkey/strkey_test.go new file mode 100644 index 00000000..4652134a --- /dev/null +++ b/util/strkey/strkey_test.go @@ -0,0 +1 @@ +package strkey