Skip to content

Commit 53799cd

Browse files
chore: run clang format
1 parent a6e5d35 commit 53799cd

File tree

1 file changed

+35
-30
lines changed

1 file changed

+35
-30
lines changed

src/test/evo_islock_tests.cpp

+35-30
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// instantsend_tests.cpp
22
#include <boost/test/unit_test.hpp>
3-
#include <llmq/instantsend.h>
43
#include <hash.h>
5-
#include <uint256.h>
4+
#include <llmq/instantsend.h>
65
#include <primitives/transaction.h>
76
#include <streams.h>
87
#include <string_view>
8+
#include <uint256.h>
99

1010
// For constructing dummy outpoints using uint256S.
1111
#include <util/strencodings.h>
@@ -22,43 +22,48 @@ uint256 CalculateRequestId(const std::vector<COutPoint>& inputs)
2222

2323
BOOST_AUTO_TEST_CASE(getrequestid)
2424
{
25-
// Create an empty InstantSendLock
26-
llmq::CInstantSendLock islock;
25+
// Create an empty InstantSendLock
26+
llmq::CInstantSendLock islock;
2727

28-
// Compute expected hash for an empty inputs vector.
29-
// Note: CInstantSendLock::GetRequestId() serializes the prefix "islock"
30-
// followed by the 'inputs' vector.
31-
{
32-
const uint256 expected = CalculateRequestId(islock.inputs);
28+
// Compute expected hash for an empty inputs vector.
29+
// Note: CInstantSendLock::GetRequestId() serializes the prefix "islock"
30+
// followed by the 'inputs' vector.
31+
{
32+
const uint256 expected = CalculateRequestId(islock.inputs);
3333

34-
BOOST_CHECK(islock.GetRequestId() == expected);
35-
}
34+
BOOST_CHECK(islock.GetRequestId() == expected);
35+
}
3636

37-
// Now add two dummy inputs to the lock
38-
islock.inputs.clear();
39-
// Construct two dummy outpoints (using uint256S for a dummy hash)
40-
COutPoint op1(uint256::ONE, 0);
41-
COutPoint op2(uint256::TWO, 1);
42-
islock.inputs.push_back(op1);
43-
islock.inputs.push_back(op2);
37+
// Now add two dummy inputs to the lock
38+
islock.inputs.clear();
39+
// Construct two dummy outpoints (using uint256S for a dummy hash)
40+
COutPoint op1(uint256::ONE, 0);
41+
COutPoint op2(uint256::TWO, 1);
42+
islock.inputs.push_back(op1);
43+
islock.inputs.push_back(op2);
4444

45-
const uint256 expected = CalculateRequestId(islock.inputs);
45+
const uint256 expected = CalculateRequestId(islock.inputs);
4646

47-
BOOST_CHECK(islock.GetRequestId() == expected);
47+
BOOST_CHECK(islock.GetRequestId() == expected);
4848
}
4949

5050
BOOST_AUTO_TEST_CASE(deserialize_instantlock_from_realdata2)
5151
{
5252
// Expected values from the provided getislocks output:
53-
const std::string_view expectedTxidStr = "7b33968effa613e8ea9c1b5734c9bbbe467ff4650f8060caf8a5c213c6059d5b";
54-
const std::string_view expectedCycleHashStr = "000000000000000bbd0b1bb95540351e7ee99c5b08efde076b3d712a57ea74d6";
55-
const std::string_view expectedSignature = "997d0b36738a9eef46ceeb4405998ff7235317708f277402799ffe05258015cae9b6bae43683f992b2f50f70f8f0cb9c0f26af340b00903e93995c1345d1b2c5b697ebecdbe5811dd112e11889101dcb4553b2bc206ab304026b96c07dec4f24";
56-
const std::string_view cycleHash = "000000000000000bbd0b1bb95540351e7ee99c5b08efde076b3d712a57ea74d6";
57-
const std::string quorumHash = "0000000000000019756ecc9c9c5f476d3f66876b1dcfa5dde1ea82f0d99334a2";
58-
const std::string_view expectedSignHash = "6a3c37bc610c4efd5babd8941068a8eca9e7bec942fe175b8ca9cae31b67e838";
53+
const std::string_view expectedTxidStr = "7b33968effa613e8ea9c1b5734c9bbbe467ff4650f8060caf8a5c213c6059d5b";
54+
const std::string_view expectedCycleHashStr = "000000000000000bbd0b1bb95540351e7ee99c5b08efde076b3d712a57ea74d6";
55+
const std::string_view expectedSignature = "997d0b36738a9eef46ceeb4405998ff7235317708f277402799ffe05258015cae9b6bae"
56+
"43683f992b2f50f70f8f0cb9c0f26af340b00903e93995c1345d1b2c5b697ebecdbe581"
57+
"1dd112e11889101dcb4553b2bc206ab304026b96c07dec4f24";
58+
const std::string_view cycleHash = "000000000000000bbd0b1bb95540351e7ee99c5b08efde076b3d712a57ea74d6";
59+
const std::string quorumHash = "0000000000000019756ecc9c9c5f476d3f66876b1dcfa5dde1ea82f0d99334a2";
60+
const std::string_view expectedSignHash = "6a3c37bc610c4efd5babd8941068a8eca9e7bec942fe175b8ca9cae31b67e838";
5961
// The serialized InstantSend lock from the "hex" field of getislocks:
6062
const std::string_view islockHex =
61-
"0101497915895c30eebfad0c5fcfb9e0e72308c7e92cd3749be2fd49c8320c4c58b6010000005b9d05c613c2a5f8ca60800f65f47f46bebbc934571b9ceae813a6ff8e96337bd674ea572a713d6b07deef085b9ce97e1e354055b91b0bbd0b00000000000000997d0b36738a9eef46ceeb4405998ff7235317708f277402799ffe05258015cae9b6bae43683f992b2f50f70f8f0cb9c0f26af340b00903e93995c1345d1b2c5b697ebecdbe5811dd112e11889101dcb4553b2bc206ab304026b96c07dec4f24";
63+
"0101497915895c30eebfad0c5fcfb9e0e72308c7e92cd3749be2fd49c8320c4c58b6010000005b9d05c613c2a5f8ca60800f65f47f46be"
64+
"bbc934571b9ceae813a6ff8e96337bd674ea572a713d6b07deef085b9ce97e1e354055b91b0bbd0b00000000000000997d0b36738a9eef"
65+
"46ceeb4405998ff7235317708f277402799ffe05258015cae9b6bae43683f992b2f50f70f8f0cb9c0f26af340b00903e93995c1345d1b2"
66+
"c5b697ebecdbe5811dd112e11889101dcb4553b2bc206ab304026b96c07dec4f24";
6267

6368
// This islock was created with non-legacy. Using legacy will result in the signature being all zeros.
6469
bls::bls_legacy_scheme.store(false);
@@ -70,9 +75,9 @@ BOOST_AUTO_TEST_CASE(deserialize_instantlock_from_realdata2)
7075
ss >> islock;
7176

7277
// Verify the calculated signHash
73-
auto signHash = llmq::BuildSignHash(Consensus::LLMQType::LLMQ_60_75, uint256S(quorumHash), islock.GetRequestId(), islock.txid);
74-
BOOST_CHECK_EQUAL(signHash.ToString(),
75-
expectedSignHash);
78+
auto signHash = llmq::BuildSignHash(Consensus::LLMQType::LLMQ_60_75, uint256S(quorumHash), islock.GetRequestId(),
79+
islock.txid);
80+
BOOST_CHECK_EQUAL(signHash.ToString(), expectedSignHash);
7681

7782
// Verify the txid field.
7883
BOOST_CHECK_EQUAL(islock.txid.ToString(), expectedTxidStr);

0 commit comments

Comments
 (0)