Open hinto-janai opened 3 months ago
Built without sensitive environment variables
Name | Link |
---|---|
Latest commit | 80274d1f0b6446cac624dbfecb165b4aeb8dbd29 |
Latest deploy log | https://app.netlify.com/sites/barolo-time-757cf9/deploys/66b174280b4eba0008249a48 |
Deploy Preview | https://deploy-preview-2337--barolo-time-757cf9.netlify.app |
Preview on mobile | Toggle QR Code...Use your smartphone camera to open QR code link. |
To edit notification comments on pull requests, go to your Netlify site configuration.
What
Fixes incorrect documentation for daemon RPC calls; requires review into
monerod
.Fixes
Table of fixes in this PR, originally tracked here: https://github.com/Cuprate/cuprate/issues/159.
get_miner_data
difficulty
field is noted asunsigned int
, although it is actually a JSON string containing an unsigned int in hex form. Other documentation describes these hex int strings asstring
.calc_pow
block_data
isblobdata
. This is amonerod
-specific type alias tostd::string
. Documentation should explain that it is a hex-encoded string of a block./get_outs.bin
amount
/send_raw_transaction
not_rct
/mining_status
int
instead ofunsigned int
. These areunsigned int
both in code and elsewhere in documentation./get_transaction_pool
weight
field, should beunsigned int; <DESCRIPTION>
flush_txpool
""
transaction in example causes errorget_block
tx_hashes
field: "If there are no other transactions, this will be an empty list." This is not true,monerod
's serializer will omit fields completely if the container is empty. Thetx_hashes
in thejson
field will exist, however.Simple proof for
get_block
: