You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: use reflect to automatically register all the eth aliases
.
Currently we manually assign JSON-RPC operation aliases to every Eth method. Instead, specify method alises through annotations of some kind (we seem to use comments, yuck, and Go tags are only supported on structs).
Apparently some codegen magic does turn these comments into struct tags, but those are implementation details.
The text was updated successfully, but these errors were encountered:
See
lotus/node/rpc.go
Line 76 in 9a29841
Currently we manually assign JSON-RPC operation aliases to every Eth method. Instead, specify method alises through annotations of some kind (we seem to use comments, yuck, and Go tags are only supported on structs).
Apparently some codegen magic does turn these comments into struct tags, but those are implementation details.
The text was updated successfully, but these errors were encountered: