From b01df0f7955bacc46cf1ac8978c82b4b5f49f90d Mon Sep 17 00:00:00 2001
From: ledgerwatch <akhounov@gmail.com>
Date: Thu, 2 Dec 2021 13:40:48 +0000
Subject: [PATCH] Bump EthBackend API to 3.0.0 in `devel` branch only to make
 it explicitly incompatible with `stable` (#3077)

---
 ethdb/privateapi/ethbackend.go | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ethdb/privateapi/ethbackend.go b/ethdb/privateapi/ethbackend.go
index cc43fdf7c0..1de5754e67 100644
--- a/ethdb/privateapi/ethbackend.go
+++ b/ethdb/privateapi/ethbackend.go
@@ -33,7 +33,8 @@ const (
 // 2.0.0 - move all mining-related methods to 'txpool/mining' server
 // 2.1.0 - add NetPeerCount function
 // 2.2.0 - add NodesInfo function
-var EthBackendAPIVersion = &types2.VersionReply{Major: 2, Minor: 1, Patch: 0}
+// 3.0.0 - adding PoS interfaces
+var EthBackendAPIVersion = &types2.VersionReply{Major: 3, Minor: 0, Patch: 0}
 
 type EthBackendServer struct {
 	remote.UnimplementedETHBACKENDServer // must be embedded to have forward compatible implementations.
-- 
GitLab