Skip to content

Commit

Permalink
Adding padded quantity
Browse files Browse the repository at this point in the history
Adding padded quantity for new `eth_uninstallFilter`, `eth_getFilterChanges` and `eth_getFilterLogs`.

These are ID's which require frontal zero padding for quantities smaller than 10. Thus frontal padding will be instantiated.
  • Loading branch information
SilentCicero authored Apr 10, 2018
1 parent 30ad99b commit 09b6776
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
"eth_newFilter": [["Filter"], "Q", 1],
"eth_newBlockFilter": [[], "Q"],
"eth_newPendingTransactionFilter": [[], "Q"],
"eth_uninstallFilter": [["Q"], "B", 1],
"eth_getFilterChanges": [["Q"], ["FilterChange"], 1],
"eth_getFilterLogs": [["Q"], ["FilterChange"], 1],
"eth_uninstallFilter": [["QP"], "B", 1],
"eth_getFilterChanges": [["QP"], ["FilterChange"], 1],
"eth_getFilterLogs": [["QP"], ["FilterChange"], 1],
"eth_getLogs": [["Filter"], ["FilterChange"], 1],
"eth_getWork": [[], ["D"]],
"eth_submitWork": [["D", "D32", "D32"], "B", 3],
Expand Down

0 comments on commit 09b6776

Please sign in to comment.