Skip to content
New issue

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

[BUG][CLI] pivx-cli gettxout's error message mentions "btc" instead of "piv" #1654

Closed
kyeno opened this issue May 30, 2020 · 0 comments · Fixed by #1660
Closed

[BUG][CLI] pivx-cli gettxout's error message mentions "btc" instead of "piv" #1654

kyeno opened this issue May 30, 2020 · 0 comments · Fixed by #1660

Comments

@kyeno
Copy link

kyeno commented May 30, 2020

This issue applies to release version 4.1.0

./bin/pivx-cli gettxout mentions "btc" and not "piv" next to "value"

Returns details about an unspent transaction output.

Arguments:
1. "txid"       (string, required) The transaction id
2. n              (numeric, required) vout value
3. includemempool  (boolean, optional) Whether to included the mem pool

Result:
{
  "bestblock" : "hash",    (string) the block hash
  "confirmations" : n,       (numeric) The number of confirmations
  "value" : x.xxx,           (numeric) The transaction value in btc
  "scriptPubKey" : {         (json object)
     "asm" : "code",       (string)
     "hex" : "hex",        (string)
     "reqSigs" : n,          (numeric) Number of required signatures
     "type" : "pubkeyhash", (string) The type, eg pubkeyhash
     "addresses" : [          (array of string) array of pivx addresses
     "pivxaddress"            (string) pivx address
        ,...
     ]
  },
  "version" : n,            (numeric) The version
  "coinbase" : true|false   (boolean) Coinbase or not
}

Examples:

Get unspent transactions
> pivx-cli listunspent

View the details
> pivx-cli gettxout "txid" 1

As a json rpc call
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "gettxout", "params": ["txid", 1] }' -H 'content-type: text/plain;' http://127.0.0.1:51473/
@kyeno kyeno changed the title pivx-cli gettxout's error message mentions "btc" instead of "piv" [BUG][CLI] pivx-cli gettxout's error message mentions "btc" instead of "piv" May 30, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant