diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-02-04 06:00:02 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-02-04 06:00:02 +0800 |
commit | e58e2f5ee466f054405b3e90a67720254ea17ead (patch) | |
tree | 292927f3c2b7ac548376b0d42aa5e6ac67ec85c0 /lib/jsonrpc.js | |
parent | 45134de7401b58f0118deb16bf0644495715fbdb (diff) | |
download | dexon-e58e2f5ee466f054405b3e90a67720254ea17ead.tar dexon-e58e2f5ee466f054405b3e90a67720254ea17ead.tar.gz dexon-e58e2f5ee466f054405b3e90a67720254ea17ead.tar.bz2 dexon-e58e2f5ee466f054405b3e90a67720254ea17ead.tar.lz dexon-e58e2f5ee466f054405b3e90a67720254ea17ead.tar.xz dexon-e58e2f5ee466f054405b3e90a67720254ea17ead.tar.zst dexon-e58e2f5ee466f054405b3e90a67720254ea17ead.zip |
jsonrpc.js tests && jsonrpc response validation is more strict
Diffstat (limited to 'lib/jsonrpc.js')
-rw-r--r-- | lib/jsonrpc.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/jsonrpc.js b/lib/jsonrpc.js index 0036d0abf..63afa3229 100644 --- a/lib/jsonrpc.js +++ b/lib/jsonrpc.js @@ -39,9 +39,13 @@ var toPayload = function (method, params) { }; /// Should be called to check if jsonrpc response is valid -/// @returns true if response doesn't have error field +/// @returns true if response is valid, otherwise false var isValidResponse = function (response) { - return response && !response.error; + return !!response && + !response.error && + response.jsonrpc === '2.0' && + typeof response.id === 'number' && + (!!response.result || typeof response.result === 'boolean'); }; /// Should be called to create batch payload object |