rpcclient: check network initialisation for blocks subscriptions
StateRootInHeader depends on it, so we better immediately return error if client is not initialised. Signed-off-by: Anna Shaleva <shaleva.ann@nspcc.ru>
This commit is contained in:
parent
441eb8aa86
commit
21ccb1a02a
1 changed files with 3 additions and 0 deletions
|
@ -732,6 +732,9 @@ func (c *WSClient) ReceiveBlocks(flt *neorpc.BlockFilter, rcvr chan<- *block.Blo
|
|||
if rcvr == nil {
|
||||
return "", ErrNilNotificationReceiver
|
||||
}
|
||||
if !c.cache.initDone {
|
||||
return "", errNetworkNotInitialized
|
||||
}
|
||||
params := []any{"block_added"}
|
||||
if flt != nil {
|
||||
flt = flt.Copy()
|
||||
|
|
Loading…
Reference in a new issue