diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-05-30 10:23:21 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-06-21 06:40:33 -0400 |
commit | fa95a694c492b267e4038674fd3f338dd215ab48 (patch) | |
tree | 5e4e4dbb1c6cdbb9760a6b2816cb4398a7532241 /src/test/fuzz | |
parent | fa58469c770d8c935a86462634e4e8cd806aa6e3 (diff) |
doc: Update outdated txnouttype documentation
Also, remove scope of txnouttype in fuzz tests temporarily. The next
commit will add scopes to all txnouttype.
Diffstat (limited to 'src/test/fuzz')
-rw-r--r-- | src/test/fuzz/key.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/fuzz/key.cpp b/src/test/fuzz/key.cpp index 1919a5f881..b8541fd037 100644 --- a/src/test/fuzz/key.cpp +++ b/src/test/fuzz/key.cpp @@ -160,22 +160,22 @@ void test_one_input(const std::vector<uint8_t>& buffer) txnouttype which_type_tx_pubkey; const bool is_standard_tx_pubkey = IsStandard(tx_pubkey_script, which_type_tx_pubkey); assert(is_standard_tx_pubkey); - assert(which_type_tx_pubkey == txnouttype::TX_PUBKEY); + assert(which_type_tx_pubkey == TX_PUBKEY); txnouttype which_type_tx_multisig; const bool is_standard_tx_multisig = IsStandard(tx_multisig_script, which_type_tx_multisig); assert(is_standard_tx_multisig); - assert(which_type_tx_multisig == txnouttype::TX_MULTISIG); + assert(which_type_tx_multisig == TX_MULTISIG); std::vector<std::vector<unsigned char>> v_solutions_ret_tx_pubkey; const txnouttype outtype_tx_pubkey = Solver(tx_pubkey_script, v_solutions_ret_tx_pubkey); - assert(outtype_tx_pubkey == txnouttype::TX_PUBKEY); + assert(outtype_tx_pubkey == TX_PUBKEY); assert(v_solutions_ret_tx_pubkey.size() == 1); assert(v_solutions_ret_tx_pubkey[0].size() == 33); std::vector<std::vector<unsigned char>> v_solutions_ret_tx_multisig; const txnouttype outtype_tx_multisig = Solver(tx_multisig_script, v_solutions_ret_tx_multisig); - assert(outtype_tx_multisig == txnouttype::TX_MULTISIG); + assert(outtype_tx_multisig == TX_MULTISIG); assert(v_solutions_ret_tx_multisig.size() == 3); assert(v_solutions_ret_tx_multisig[0].size() == 1); assert(v_solutions_ret_tx_multisig[1].size() == 33); |