![]() |
PIVX Core
5.6.99
P2P Digital Currency
|
Go to the source code of this file.
Macros | |
| #define | EXPORT_SYMBOL |
| #define | BITCOINCONSENSUS_API_VER 0 |
Typedefs | |
| typedef enum bitcoinconsensus_error_t | bitcoinconsensus_error |
Enumerations | |
| enum | bitcoinconsensus_error_t { bitcoinconsensus_ERR_OK = 0 , bitcoinconsensus_ERR_TX_INDEX , bitcoinconsensus_ERR_TX_SIZE_MISMATCH , bitcoinconsensus_ERR_TX_DESERIALIZE } |
| enum | { bitcoinconsensus_SCRIPT_FLAGS_VERIFY_NONE = 0 , bitcoinconsensus_SCRIPT_FLAGS_VERIFY_P2SH = (1U << 0) , bitcoinconsensus_SCRIPT_FLAGS_VERIFY_DERSIG = (1U << 2) } |
| Script verification flags. More... | |
Functions | |
| EXPORT_SYMBOL int | bitcoinconsensus_verify_script (const unsigned char *scriptPubKey, unsigned int scriptPubKeyLen, const unsigned char *txTo, unsigned int txToLen, unsigned int nIn, unsigned int flags, bitcoinconsensus_error *err) |
| Returns 1 if the input nIn of the serialized transaction pointed to by txTo correctly spends the scriptPubKey pointed to by scriptPubKey under the additional constraints specified by flags. More... | |
| EXPORT_SYMBOL unsigned int | bitcoinconsensus_version () |
| #define BITCOINCONSENSUS_API_VER 0 |
Definition at line 34 of file bitcoinconsensus.h.
| #define EXPORT_SYMBOL |
Definition at line 27 of file bitcoinconsensus.h.
| typedef enum bitcoinconsensus_error_t bitcoinconsensus_error |
| anonymous enum |
Script verification flags.
| Enumerator | |
|---|---|
| bitcoinconsensus_SCRIPT_FLAGS_VERIFY_NONE | |
| bitcoinconsensus_SCRIPT_FLAGS_VERIFY_P2SH | |
| bitcoinconsensus_SCRIPT_FLAGS_VERIFY_DERSIG | |
Definition at line 45 of file bitcoinconsensus.h.
| Enumerator | |
|---|---|
| bitcoinconsensus_ERR_OK | |
| bitcoinconsensus_ERR_TX_INDEX | |
| bitcoinconsensus_ERR_TX_SIZE_MISMATCH | |
| bitcoinconsensus_ERR_TX_DESERIALIZE | |
Definition at line 36 of file bitcoinconsensus.h.
| EXPORT_SYMBOL int bitcoinconsensus_verify_script | ( | const unsigned char * | scriptPubKey, |
| unsigned int | scriptPubKeyLen, | ||
| const unsigned char * | txTo, | ||
| unsigned int | txToLen, | ||
| unsigned int | nIn, | ||
| unsigned int | flags, | ||
| bitcoinconsensus_error * | err | ||
| ) |
Returns 1 if the input nIn of the serialized transaction pointed to by txTo correctly spends the scriptPubKey pointed to by scriptPubKey under the additional constraints specified by flags.
If not nullptr, err will contain an error/success code for the operation
Definition at line 75 of file bitcoinconsensus.cpp.
| EXPORT_SYMBOL unsigned int bitcoinconsensus_version | ( | ) |
Definition at line 97 of file bitcoinconsensus.cpp.