ethclient: fix new block->header subscription endpoint

This commit is contained in:
Péter Szilágyi 2016-09-08 17:17:55 +03:00
parent 6fb8ae2bd6
commit ca37730c9d
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ func (ec *Client) SyncProgress(ctx context.Context) (*ethereum.SyncProgress, err
// SubscribeNewHead subscribes to notifications about the current blockchain head
// on the given channel.
func (ec *Client) SubscribeNewHead(ctx context.Context, ch chan<- *types.Header) (ethereum.Subscription, error) {
return ec.c.EthSubscribe(ctx, ch, "newBlocks", map[string]struct{}{})
return ec.c.EthSubscribe(ctx, ch, "newHeads", map[string]struct{}{})
}
// State Access