Skip to content

Commit 4030235

Browse files
committed
chore(rpc/v10): bump SpecVersion to 0.10.2 (#3573)
1 parent bc6db50 commit 4030235

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

rpc/v10/handlers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,5 +188,5 @@ func (h *Handler) Run(ctx context.Context) error {
188188
}
189189

190190
func (h *Handler) SpecVersion() (string, *jsonrpc.Error) {
191-
return "0.10.1", nil
191+
return "0.10.2", nil
192192
}

rpc/v10/handlers_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func TestSpecVersion(t *testing.T) {
2020
handler := rpcv10.New(nil, nil, nil, nil)
2121
version, rpcErr := handler.SpecVersion()
2222
require.Nil(t, rpcErr)
23-
require.Equal(t, "0.10.1", version)
23+
require.Equal(t, "0.10.2", version)
2424
}
2525

2626
func TestThrottledVMError(t *testing.T) {

0 commit comments

Comments
 (0)