diff options
author | MacroFake <falke.marco@gmail.com> | 2022-08-03 11:23:11 +0200 |
---|---|---|
committer | MacroFake <falke.marco@gmail.com> | 2022-08-03 11:19:53 +0200 |
commit | fad5bc432b4e96aaf14bb1e02c1f6f3355a31441 (patch) | |
tree | f31cec67fde25605f30960cb4acb540bde15fa24 /src/test | |
parent | 9155f9b7af22a9c97cbeee461f5bbd9217adb56d (diff) |
test: Add missing static to IsStandardTx helper
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/script_p2sh_tests.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/test/script_p2sh_tests.cpp b/src/test/script_p2sh_tests.cpp index 6e810faa0a..a02d51eecc 100644 --- a/src/test/script_p2sh_tests.cpp +++ b/src/test/script_p2sh_tests.cpp @@ -18,20 +18,18 @@ #include <boost/test/unit_test.hpp> // Helpers: -bool IsStandardTx(const CTransaction& tx, std::string& reason) +static bool IsStandardTx(const CTransaction& tx, std::string& reason) { return IsStandardTx(tx, std::nullopt, DEFAULT_PERMIT_BAREMULTISIG, CFeeRate{DUST_RELAY_TX_FEE}, reason); } -static std::vector<unsigned char> -Serialize(const CScript& s) +static std::vector<unsigned char> Serialize(const CScript& s) { std::vector<unsigned char> sSerialized(s.begin(), s.end()); return sSerialized; } -static bool -Verify(const CScript& scriptSig, const CScript& scriptPubKey, bool fStrict, ScriptError& err) +static bool Verify(const CScript& scriptSig, const CScript& scriptPubKey, bool fStrict, ScriptError& err) { // Create dummy to/from transactions: CMutableTransaction txFrom; |