forked from TrueCloudLab/neoneo-go
interop: improve error message on native cache initialization error
Signed-off-by: Anna Shaleva <shaleva.ann@nspcc.ru>
This commit is contained in:
parent
71d504765f
commit
261816d7a5
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ func (c *ContractMD) HFSpecificContractMD(hf *config.Hardfork) *HFSpecificContra
|
||||||
}
|
}
|
||||||
md, ok := c.mdCache[key]
|
md, ok := c.mdCache[key]
|
||||||
if !ok {
|
if !ok {
|
||||||
panic(fmt.Errorf("native contract descriptor cache is not initialized: contract %s, hardfork %s", c.Hash.StringLE(), key))
|
panic(fmt.Errorf("native contract descriptor cache is not initialized: contract %s (%s), hardfork %s", c.Hash.StringLE(), c.Name, key))
|
||||||
}
|
}
|
||||||
if md == nil {
|
if md == nil {
|
||||||
panic(fmt.Errorf("native contract descriptor cache is nil: contract %s, hardfork %s", c.Hash.StringLE(), key))
|
panic(fmt.Errorf("native contract descriptor cache is nil: contract %s, hardfork %s", c.Hash.StringLE(), key))
|
||||||
|
|
Loading…
Reference in a new issue