diff options
Diffstat (limited to 'rpc/api/debug_js.go')
-rw-r--r-- | rpc/api/debug_js.go | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/rpc/api/debug_js.go b/rpc/api/debug_js.go index 03755ada0..030511add 100644 --- a/rpc/api/debug_js.go +++ b/rpc/api/debug_js.go @@ -62,7 +62,19 @@ web3._extend({ call: 'debug_metrics', params: 1, inputFormatter: [null] - }) + }), + new web3._extend.Method({ + name: 'verbosity', + call: 'debug_verbosity', + params: 1, + inputFormatter: [web3._extend.utils.fromDecimal] + }), + new web3._extend.Method({ + name: 'vmodule', + call: 'debug_vmodule', + params: 1, + inputFormatter: [null] + }), ], properties: [ |