-
Notifications
You must be signed in to change notification settings - Fork 979
Open
Labels
I10-unconfirmedIssue might be valid, but it's not yet known.Issue might be valid, but it's not yet known.I2-bugThe node fails to follow expected behavior.The node fails to follow expected behavior.
Description
Is there an existing issue?
- I have searched the existing issues
Experiencing problems? Have you tried our Stack Exchange first?
- This is not a support question.
Description of bug
Hello !
I'm working at Ledger and we are using polkadot-parachain-node (in version 2503-7) to deploy both westend relay chain & asset hub. It works fine but one of the tool we connected to our nodes call the RPC method: system_properties
and it doesn't have the same output for westend asset hub, it miss the ss58Format
field. This field is well defined for westend relay chain & aslo polkadot asset hub & relay chain.
Steps to reproduce
I also reproduced in public nodes:
$ curl -s -H 'Content-Type: application/json' -d '{"id":"test","method":"system_properties", "jsonrpc":"2.0"}' https://westend-asset-hub-rpc.polkadot.io | jq .
{
"jsonrpc": "2.0",
"id": "test",
"result": {
"tokenDecimals": 12,
"tokenSymbol": "WND"
}
}
$ curl -s -H 'Content-Type: application/json' -d '{"id":"test","method":"system_properties", "jsonrpc":"2.0"}' https://westend-rpc.polkadot.io | jq .
{
"jsonrpc": "2.0",
"id": "test",
"result": {
"ss58Format": 42,
"tokenDecimals": 12,
"tokenSymbol": "WND"
}
}
Metadata
Metadata
Assignees
Labels
I10-unconfirmedIssue might be valid, but it's not yet known.Issue might be valid, but it's not yet known.I2-bugThe node fails to follow expected behavior.The node fails to follow expected behavior.