• Dmitry Zenovich's avatar
    rpc: add BlockNumber.MarshalText (#23324) · 7c4cad06
    Dmitry Zenovich authored
    Currently rpc.BlockNumber is marshalled to JSON as a numeric value, which is
    wrong because BlockNumber.UnmarshalJSON() wants it to either be hex-encoded
    or string "earliest"/"latest"/"pending". As a result, the call chain
    
        rpc.BlockNumberOrHashWithNumber(123) -> json.Marshal() -> json.Unmarshal()
    
    fails with error "cannot unmarshal object into Go value of type string".
    Unverified
    7c4cad06
Name
Last commit
Last update
..
testdata rpc: fix issue with null JSON-RPC messages (#21497)
client.go rpc: deprecate Client.ShhSubscribe (#22239)
client_example_test.go rpc: make ExampleClientSubscription work with the geth API (#19483)
client_test.go rpc: tighter shutdown synchronization in client subscription (#22597)
constants_unix.go all: add go:build lines (#23468)
constants_unix_nocgo.go all: add go:build lines (#23468)
doc.go rpc: remove 'exported or builtin' restriction for parameters (#20332)
endpoints.go trie, rpc, cmd/geth: fix tests on 32-bit and windows + minor rpc fixes (#21871)
errors.go rpc: add HTTPError type for HTTP error responses (#22677)
handler.go rpc: tighter shutdown synchronization in client subscription (#22597)
http.go rpc: add HTTPError type for HTTP error responses (#22677)
http_test.go rpc: add HTTPError type for HTTP error responses (#22677)
inproc.go rpc, p2p/simulations: use github.com/gorilla/websocket (#20289)
ipc.go rpc, p2p/simulations: use github.com/gorilla/websocket (#20289)
ipc_js.go all: add go:build lines (#23468)
ipc_unix.go all: add go:build lines (#23468)
ipc_windows.go all: add go:build lines (#23468)
json.go rpc: fix issue with null JSON-RPC messages (#21497)
metrics.go rpc: metrics for JSON-RPC method calls (#20847)
server.go all: fix typos in comments (#21118)
server_test.go internal/ethapi: return revert reason for eth_call (#21083)
service.go rpc: remove 'exported or builtin' restriction for parameters (#20332)
stdio.go rpc, p2p/simulations: use github.com/gorilla/websocket (#20289)
subscription.go rpc: tighter shutdown synchronization in client subscription (#22597)
subscription_test.go all: fix a bunch of inconsequential goroutine leaks (#20667)
testservice_test.go rpc: add separate size limit for websocket (#22385)
types.go rpc: add BlockNumber.MarshalText (#23324)
types_test.go rpc: add BlockNumber.MarshalText (#23324)
websocket.go all: remove term "whitelist" in comments and log messages (#23294)
websocket_test.go rpc: tighter shutdown synchronization in client subscription (#22597)