Update contracts and get verifiersLen from SC

This commit is contained in:
Eduard S
2021-01-29 17:46:14 +01:00
parent 8cc23b9fb2
commit 90fe98d15c
11 changed files with 453 additions and 428 deletions

View File

@@ -3,15 +3,12 @@ package eth
import (
"testing"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/stretchr/testify/require"
)
func TestClientInterface(t *testing.T) {
ethClient, err := ethclient.Dial(ethClientDialURL)
require.Nil(t, err)
var c ClientInterface
client, _ := NewClient(ethClient, nil, nil, &ClientConfig{})
client := &Client{}
c = client
require.NotNil(t, c)
}