-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Conversation
will review after #995 merged to minimise the clutter. looking at what is generated, there's at least one typo. |
|
--tracing BOOL Indicates if full transaction tracing should be | ||
enabled. Works only if client had been fully synced with | ||
tracing enabled. BOOL may be one of auto, on, off. | ||
auto uses last used value of this option (off it does |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"off if it does"
@@ -115,6 +115,10 @@ pub fn setup_rpc_server( | |||
// not adding to modules, since `ethcore` is not supported in geth | |||
server.add_delegate(EthcoreClient::new(&deps.miner, deps.logger.clone(), deps.settings.clone()).to_delegate()) | |||
}, | |||
"traces" => { | |||
// not adding to modules, since `traces` is not supported in geth | |||
server.add_delegate(TracesClient::new(&deps.client).to_delegate()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be also included in parity/webapps.rs
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have no idea... It's not a part of 'standard' rpc, but it would be useful
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it should be added just for consistency.
What do you mean? Which |
Was thinking of |
this pr should be merged after:
#992 #994 #996
rpc docs
https://gist.github.com/debris/051c131e877affefeab4553509640a43
this pr includes: