You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the bitcoin-cli with verbosity=3 you can get full detailed transactions of inputs
including prevout information for inputs (only for unpruned blocks in the current best chain).
getblock "blockhash" ( verbosity )
If verbosity is 0, returns a string that is serialized, hex-encoded data for block 'hash'.
If verbosity is 1, returns an Object with information about block <hash>.
If verbosity is 2, returns an Object with information about block <hash> and information about each transaction.
If verbosity is 3, returns an Object with information about block <hash> and information about each transaction, including prevout information for inputs (only for unpruned blocks in the current best chain).
Compared the extra data requirements for that additional prevout field using verbose=3 when fetching getblock, we're only talking about **+5% size increase **
Issue
Attempting to extract additional information from
vin
(inputs) which is present inprevout
.Bitcoin RPC poller
Currently uses
GetBlockVerbose
, perhapsGetBlockVerboseTx
or rawgetblock
request with verbose=3firehose-bitcoin/fetch/poller.go
Line 129 in 8bde96e
Context
When using the
bitcoin-cli
withverbosity=3
you can get full detailed transactions of inputsgetblock
800007 using verbose=3The text was updated successfully, but these errors were encountered: