|
|
@ -30,12 +30,17 @@ The interface is defined in the C header `bitcoinconsensus.h` located in `src/s |
|
|
|
- `bitcoinconsensus_SCRIPT_FLAGS_VERIFY_NONE` |
|
|
|
- `bitcoinconsensus_SCRIPT_FLAGS_VERIFY_NONE` |
|
|
|
- `bitcoinconsensus_SCRIPT_FLAGS_VERIFY_P2SH` - Evaluate P2SH ([BIP16](https://github.com/bitcoin/bips/blob/master/bip-0016.mediawiki)) subscripts |
|
|
|
- `bitcoinconsensus_SCRIPT_FLAGS_VERIFY_P2SH` - Evaluate P2SH ([BIP16](https://github.com/bitcoin/bips/blob/master/bip-0016.mediawiki)) subscripts |
|
|
|
- `bitcoinconsensus_SCRIPT_FLAGS_VERIFY_DERSIG` - Enforce strict DER ([BIP66](https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki)) compliance |
|
|
|
- `bitcoinconsensus_SCRIPT_FLAGS_VERIFY_DERSIG` - Enforce strict DER ([BIP66](https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki)) compliance |
|
|
|
|
|
|
|
- `bitcoinconsensus_SCRIPT_FLAGS_VERIFY_NULLDUMMY` - Enforce NULLDUMMY ([BIP147](https://github.com/bitcoin/bips/blob/master/bip-0147.mediawiki)) |
|
|
|
|
|
|
|
- `bitcoinconsensus_SCRIPT_FLAGS_VERIFY_CHECKLOCKTIMEVERIFY` - Enable CHECKLOCKTIMEVERIFY ([BIP65](https://github.com/bitcoin/bips/blob/master/bip-0065.mediawiki)) |
|
|
|
|
|
|
|
- `bitcoinconsensus_SCRIPT_FLAGS_VERIFY_CHECKSEQUENCEVERIFY` - Enable CHECKSEQUENCEVERIFY ([BIP112](https://github.com/bitcoin/bips/blob/master/bip-0112.mediawiki)) |
|
|
|
|
|
|
|
- `bitcoinconsensus_SCRIPT_FLAGS_VERIFY_WITNESS` - Enable WITNESS ([BIP141](https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki)) |
|
|
|
|
|
|
|
|
|
|
|
##### Errors |
|
|
|
##### Errors |
|
|
|
- `bitcoinconsensus_ERR_OK` - No errors with input parameters *(see the return value of `bitcoinconsensus_verify_script` for the verification status)* |
|
|
|
- `bitcoinconsensus_ERR_OK` - No errors with input parameters *(see the return value of `bitcoinconsensus_verify_script` for the verification status)* |
|
|
|
- `bitcoinconsensus_ERR_TX_INDEX` - An invalid index for `txTo` |
|
|
|
- `bitcoinconsensus_ERR_TX_INDEX` - An invalid index for `txTo` |
|
|
|
- `bitcoinconsensus_ERR_TX_SIZE_MISMATCH` - `txToLen` did not match with the size of `txTo` |
|
|
|
- `bitcoinconsensus_ERR_TX_SIZE_MISMATCH` - `txToLen` did not match with the size of `txTo` |
|
|
|
- `bitcoinconsensus_ERR_DESERIALIZE` - An error deserializing `txTo` |
|
|
|
- `bitcoinconsensus_ERR_DESERIALIZE` - An error deserializing `txTo` |
|
|
|
|
|
|
|
- `bitcoinconsensus_ERR_AMOUNT_REQUIRED` - Input amount is required if WITNESS is used |
|
|
|
|
|
|
|
|
|
|
|
### Example Implementations |
|
|
|
### Example Implementations |
|
|
|
- [NBitcoin](https://github.com/NicolasDorier/NBitcoin/blob/master/NBitcoin/Script.cs#L814) (.NET Bindings) |
|
|
|
- [NBitcoin](https://github.com/NicolasDorier/NBitcoin/blob/master/NBitcoin/Script.cs#L814) (.NET Bindings) |
|
|
|