Skip to content

Commit ac229c2

Browse files
authored
chore: bump rpcv9 spec ver 0.9.0-rc2 to 0.9.0 (#3060)
bum rpcv9 specVer
1 parent 5d572d0 commit ac229c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rpc/v9/handlers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ func (h *Handler) Version() (string, *jsonrpc.Error) {
158158
}
159159

160160
func (h *Handler) SpecVersion() (string, *jsonrpc.Error) {
161-
return "0.9.0-rc2", nil
161+
return "0.9.0", nil
162162
}
163163

164164
// Currently only used for testing

rpc/v9/handlers_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func TestSpecVersion(t *testing.T) {
2121
handler := rpcv9.New(nil, nil, nil, nil)
2222
version, rpcErr := handler.SpecVersion()
2323
require.Nil(t, rpcErr)
24-
require.Equal(t, "0.9.0-rc2", version)
24+
require.Equal(t, "0.9.0", version)
2525
}
2626

2727
func TestThrottledVMError(t *testing.T) {

0 commit comments

Comments
 (0)