forked from TrueCloudLab/frostfs-node
425c1db5c0
This is the first stage requiring running blockchain. Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
21 lines
439 B
Go
21 lines
439 B
Go
package morph
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/rpc/client"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
func getN3Client(v *viper.Viper) (*client.Client, error) {
|
|
ctx := context.Background() // FIXME(@fyrchik): timeout context
|
|
endpoint := v.GetString(endpointFlag)
|
|
c, err := client.New(ctx, endpoint, client.Options{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if err := c.Init(); err != nil {
|
|
return nil, err
|
|
}
|
|
return c, nil
|
|
}
|