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
To Reproduce Output format is different :
{ "type": "irishub/bank/Account", "value": { "address":"-",
"coins": [ { "denom": "iris-atto", "amount": "1999933819281858309034979833" } ],
"public_key": { "type":"-", "value": "-", }, "account_number":"-", "sequence":"-" } }
{ "address":"-",
"coins": [ "1999933819.281858309034979833iris" ],
"public_key": { "type": "-", "value": "-" }, "account_number":"-", "sequence": "-" }
Currect version: v0.14.0
The text was updated successfully, but these errors were encountered:
PR the fix to release0.14 and then develop @chengwenxi
Sorry, something went wrong.
confirm fixed
doc/swagger version/version.go
chengwenxi
shilei-wang
No branches or pull requests
To Reproduce
Output format is different :
"iriscli bank account" :
{
"type": "irishub/bank/Account",
"value": {
"address":"-",
"public_key": {
"type":"-",
"value": "-",
},
"account_number":"-",
"sequence":"-"
}
}
/bank/accounts/{address}
{
"address":"-",
"public_key": {
"type": "-",
"value": "-"
},
"account_number":"-",
"sequence": "-"
}
Currect version:
v0.14.0
The text was updated successfully, but these errors were encountered: