rpc: fix a subscription name (#17345)

This commit is contained in:
Jay 2018-08-09 14:56:35 +09:00 committed by Péter Szilágyi
parent 8051a0768a
commit abbb219933
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ func subscribeBlocks(client *rpc.Client, subch chan Block) {
defer cancel()
// Subscribe to new blocks.
sub, err := client.EthSubscribe(ctx, subch, "newBlocks")
sub, err := client.EthSubscribe(ctx, subch, "newHeads")
if err != nil {
fmt.Println("subscribe error:", err)
return