From 8151b3930213a715212a8ea751ce3f42b892d644 Mon Sep 17 00:00:00 2001 From: SjonHortensius Date: Sat, 15 Jul 2017 17:02:54 +0200 Subject: [PATCH 1/2] eth_syncing Primitive boolean not compressed Seems to me the return values should be compressed `B`, not `Boolean` (which is an undefined object) --- src/schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/schema.json b/src/schema.json index 44f6643..d83cad7 100644 --- a/src/schema.json +++ b/src/schema.json @@ -8,7 +8,7 @@ "personal_sign": [["D20", "D", "S"], "D", 2], "personal_ecRecover": [["D", "D"], "D20", 2], "eth_protocolVersion": [[], "S"], - "eth_syncing": [[], "Boolean|EthSyncing"], + "eth_syncing": [[], "B|EthSyncing"], "eth_coinbase": [[], "D20"], "eth_mining": [[], "B"], "eth_hashrate": [[], "Q"], From 67c3badad07b72649f057a3f7d6039b4d01a03d2 Mon Sep 17 00:00:00 2001 From: SjonHortensius Date: Sun, 16 Jul 2017 10:58:47 +0200 Subject: [PATCH 2/2] Make Data consistently capitalized Conform to list of primitives as documented in README --- src/schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/schema.json b/src/schema.json index d83cad7..a1100ae 100644 --- a/src/schema.json +++ b/src/schema.json @@ -154,7 +154,7 @@ "__required": [], "fromBlock": "Q|T", "toBlock": "Q|T", - "address": "Array|Data", + "address": "Array|DATA", "topics": ["D"] }, "FilterChange": {