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 {
|
if rcvr == nil {
|
||||||
return "", ErrNilNotificationReceiver
|
return "", ErrNilNotificationReceiver
|
||||||
}
|
}
|
||||||
|
if !c.cache.initDone {
|
||||||
|
return "", errNetworkNotInitialized
|
||||||
|
}
|
||||||
params := []any{"block_added"}
|
params := []any{"block_added"}
|
||||||
if flt != nil {
|
if flt != nil {
|
||||||
flt = flt.Copy()
|
flt = flt.Copy()
|
||||||
|
|
Loading…
Reference in a new issue