We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
验证者需要有keys,我输入以下命令 curl -sH "Content-Type: application/json" -d '{"id":1, "jsonrpc":"2.0", "method": "author_rotateKeys", "params":[]}' http://node:9933 返回 {"jsonrpc":"2.0","error":{"code":-32601,"message":"Method not found"},"id":1} 是否需要对节点额外进行配置启动命令,比如在启动的时候需要设置--key='newkey'的参数?
The text was updated successfully, but these errors were encountered:
rpc.rs
/// Generate new session keys and returns the corresponding public keys. pub async fn rotate_keys(&self) -> Result<Bytes, Error> { self.rpc.rotate_keys().await }
Sorry, something went wrong.
paritytech/polkadot#1082
谢谢。我试一下。
我刚刚试了最新的dev节点,有返回结果了。 谢谢!
No branches or pull requests
验证者需要有keys,我输入以下命令
curl -sH "Content-Type: application/json" -d '{"id":1, "jsonrpc":"2.0", "method": "author_rotateKeys", "params":[]}' http://node:9933
返回
{"jsonrpc":"2.0","error":{"code":-32601,"message":"Method not found"},"id":1}
是否需要对节点额外进行配置启动命令,比如在启动的时候需要设置--key='newkey'的参数?
The text was updated successfully, but these errors were encountered: