Check that all specified flags are part of the libconsensus interface. */
| 72 | |
| 73 | /** Check that all specified flags are part of the libconsensus interface. */ |
| 74 | static bool verify_flags(unsigned int flags) |
| 75 | { |
| 76 | return (flags & ~(bitcoinconsensus_SCRIPT_FLAGS_VERIFY_ALL)) == 0; |
| 77 | } |
| 78 | |
| 79 | static int verify_script(const unsigned char *scriptPubKey, unsigned int scriptPubKeyLen, CAmount amount, |
| 80 | const unsigned char *txTo , unsigned int txToLen, |