mirror of
https://github.com/monero-project/monero-site.git
synced 2025-01-11 05:15:28 +00:00
Merge pull request #467 from cryptoshrimpi/patch-1
Add doc for sendrawtransaction in daemon-rpc guide
This commit is contained in:
commit
5639238e22
1 changed files with 12 additions and 1 deletions
|
@ -731,7 +731,18 @@ Inputs:
|
|||
|
||||
Outputs:
|
||||
|
||||
* *status* - string; General RPC error code. "OK" means everything looks good.
|
||||
* *status* - string; General RPC error code. "OK" means everything looks good. Any other value means that something went wrong.
|
||||
* *double_spend* - boolean; Transaction is a double spend (`true`) or not (`false`).
|
||||
* *fee_too_low* - boolean; Fee is too low (`true`) or OK (`false`).
|
||||
* *invalid_input* - boolean; Input is invalid (`true`) or valid (`false`).
|
||||
* *invalid_output* - boolean; Output is invalid (`true`) or valid (`false`).
|
||||
* *low_mixin* - boolean; Mixin count is too low (`true`) or OK (`false`).
|
||||
* *not_rct* - boolean; Transaction is not a ring transaction (`true`) or a ring transaction (`false`).
|
||||
* *not_relayed* - boolean; Transaction was not relayed (`true`) or relayed (`false`).
|
||||
* *overspend* - boolean; Transaction uses more money than available (`true`) or not (`false`).
|
||||
* *reason* - string; Additional information. Currently empty or "Not relayed" if transaction was accepted but not relayed.
|
||||
* *too_big* - boolean; Transaction size is too big (`true`) or OK (`false`).
|
||||
|
||||
|
||||
Example (No return information included here.):
|
||||
|
||||
|
|
Loading…
Reference in a new issue