neotest: check deployed contract hash

This commit is contained in:
Anna Shaleva 2021-11-16 17:35:39 +03:00
parent 4057e635af
commit 1194361826
2 changed files with 13 additions and 5 deletions

View file

@ -20,10 +20,7 @@ func newNSClient(t *testing.T) *neotest.ContractInvoker {
c := neotest.CompileFile(t, e.CommitteeHash, "..", "../nns.yml")
e.DeployContract(t, c, nil)
h, err := e.Chain.GetContractScriptHash(1)
require.NoError(t, err)
require.Equal(t, c.Hash, h)
return e.CommitteeInvoker(h)
return e.CommitteeInvoker(c.Hash)
}
func TestNameService_Price(t *testing.T) {