mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
83ef1c6c66
* Added GET_SNAPSHOT_INFO message handling * Quorum members by rotation * Quorum utils functions * Handle GET_QUORUM_ROTATION_INFO with baseBlockHash from client * Storing QuorumSnaphots in evoDB when requesting them * Added DIP Enforcement param * quorumIndex cache * Quorum Rotation deployment control * Usage of Bitsets for storing CQuorumSnapshots * Correct handling of early quorum quarters * More asserts * Corrections * Handling of quorumIndex * Refactoring of truncate mechanism * Various fixes * Interface correction * Added template type for indexed cache * Added quorumIndex into commitmenHash * Various changes * Needs to update maqQuorumsCache along with indexedQuorumsCache * Added CFinalCommitment version 2 * Renamed variables * Fixes * Refactoring & correct caching of quorumMembers by rotation * Added assertions * Refactoring * Interface change * Handling of previous DKG session failure * Applied refactoring * Build quarter members improvments * Merge Quorum Rotation and Decreased fee into one deployment (DIP24) * Added new LLMQ Type * Added functional tests + refactoring * Refactoring * Spreaded Quorum creation and Quorum Index adaptation * quorumIndex adaptations * Added quorumIndex in CFinalCommitment * Latest work * Final refactoring * Batch of refactoring * Fixes for tests * Fix for CFinalCommitment * Fix for Quorums * Fix * Small changes * Thread sync fic * Safety changes * Reuse mns when needed * Refactoring * More refactoring * Fixes for rotationinfo handling * Fix for rotation of members * Correct order of MNs lists in Quorum Snapshots * Adding extra logs * Sync rotation quorums + qrinfo changes * Fix + extra logs * Removed redundant field * Fix for null final commitment + refactoring * Added timers in tests * Fix for qrinfo message: quorumdiff and merkleRootQuorums * Small changes for rotation test * Remove reading from scanQuorumCache * Added quorum list output * Crash fix * Experimental commit * apply changes to specialtxman.cpp from specialtx.cpp * all the changes * substancially speed up feature_llmq_rotation.py * reenable asserts, add check for reorgs * Refactoring * Added extra logs * format * trivial * drop extra boost includes * drop ContainsMN * fix ScanQuorums * check quorum hash and index in CFinalCommitment::Verify * fix/tweak tests * IsQuorumRotationEnabled should be aware of the context * Calculating members based on earlier block. * Fix for Quorum Members Cache * Removed duplicate size of baseBlockHashes * Adaptations of qrinfo to -8 mn lists * Introduction of llmqTypeDIP24InstantSend * Adaptation for llmqTypeDIP24InstantSend * Adaptations for IS * bump protocol version * Added feature_llmq_is_migration test * Various cleanups * use unordered_lru_cache for quorumSnapshotCache * trivial refactor ComputeQuorumMembersByQuarterRotation * Reduced CFinalCommitment::quorumIndex from 32 to 16 bits * Keep verified LLMQ relay connections * Experimental Relay connection fix * Fix for EnsureQuorumConnections rotation * Using only valid Mns for checking * Override of nPowTargetSpacing (devnet only) * Show penalty score in masternode rpc * fixups * Rotation refactoring * Update src/chainparams.cpp * Replaced LogPrintf with LogPrint * IS locking fix once DIP24 activation * Various cleanup * Updated MIN_MASTERNODE_PROTO_VERSION * Introduce LLMQ_TEST_INSTANTSEND reg-test only quorum and actually test switching to dip0024 quorums * Renamed field lastQuorumHashPerIndex * Renamed to DIP0024 * chore: update nStartTime and nTimeout for mainnet / testnet for DEPLOYMENT_DIP0024 Co-authored-by: Kittywhiskers Van Gogh <63189531+kittywhiskers@users.noreply.github.com> Co-authored-by: pasta <pasta@dashboost.org> Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
99 lines
4.3 KiB
Python
Executable File
99 lines
4.3 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) 2020-2021 The Dash Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
from test_framework.messages import CTransaction, FromHex, hash256, ser_compact_size, ser_string
|
|
from test_framework.test_framework import DashTestFramework
|
|
from test_framework.util import assert_raises_rpc_error, satoshi_round, wait_until
|
|
|
|
'''
|
|
rpc_verifyislock.py
|
|
|
|
Test verifyislock rpc
|
|
|
|
'''
|
|
|
|
class RPCVerifyISLockTest(DashTestFramework):
|
|
def set_test_params(self):
|
|
# -whitelist is needed to avoid the trickling logic on node0
|
|
self.set_dash_test_params(6, 5, [["-whitelist=127.0.0.1"], [], [], [], [], []], fast_dip3_enforcement=True)
|
|
self.set_dash_llmq_test_params(5, 3)
|
|
|
|
def get_request_id(self, tx_hex):
|
|
tx = FromHex(CTransaction(), tx_hex)
|
|
|
|
request_id_buf = ser_string(b"islock") + ser_compact_size(len(tx.vin))
|
|
for txin in tx.vin:
|
|
request_id_buf += txin.prevout.serialize()
|
|
return hash256(request_id_buf)[::-1].hex()
|
|
|
|
def run_test(self):
|
|
|
|
node = self.nodes[0]
|
|
node.spork("SPORK_17_QUORUM_DKG_ENABLED", 0)
|
|
self.wait_for_sporks_same()
|
|
|
|
self.mine_quorum()
|
|
|
|
txid = node.sendtoaddress(node.getnewaddress(), 1)
|
|
self.wait_for_instantlock(txid, node)
|
|
|
|
request_id = self.get_request_id(self.nodes[0].getrawtransaction(txid))
|
|
wait_until(lambda: node.quorum("hasrecsig", 104, request_id, txid))
|
|
|
|
rec_sig = node.quorum("getrecsig", 104, request_id, txid)['sig']
|
|
assert node.verifyislock(request_id, txid, rec_sig)
|
|
# Not mined, should use maxHeight
|
|
assert not node.verifyislock(request_id, txid, rec_sig, 1)
|
|
node.generate(1)
|
|
assert txid not in node.getrawmempool()
|
|
# Mined but at higher height, should use maxHeight
|
|
assert not node.verifyislock(request_id, txid, rec_sig, 1)
|
|
# Mined, should ignore higher maxHeight
|
|
assert node.verifyislock(request_id, txid, rec_sig, node.getblockcount() + 100)
|
|
|
|
# Mine one more quorum to have a full active set
|
|
self.mine_quorum()
|
|
# Create an ISLOCK for the oldest quorum i.e. the active quorum which will be moved
|
|
# out of the active set when a new quorum appears
|
|
selected_hash = None
|
|
request_id = None
|
|
oldest_quorum_hash = node.quorum("list")["llmq_test_instantsend"][-1]
|
|
utxos = node.listunspent()
|
|
fee = 0.001
|
|
amount = 1
|
|
# Try all available utxo's until we have one resulting in a request id which selects the
|
|
# last active quorum
|
|
for utxo in utxos:
|
|
in_amount = float(utxo['amount'])
|
|
if in_amount < amount + fee:
|
|
continue
|
|
outputs = dict()
|
|
outputs[node.getnewaddress()] = satoshi_round(amount)
|
|
change = in_amount - amount - fee
|
|
if change > 0:
|
|
outputs[node.getnewaddress()] = satoshi_round(change)
|
|
rawtx = node.createrawtransaction([utxo], outputs)
|
|
rawtx = node.signrawtransactionwithwallet(rawtx)["hex"]
|
|
request_id = self.get_request_id(rawtx)
|
|
selected_hash = node.quorum('selectquorum', 104, request_id)["quorumHash"]
|
|
if selected_hash == oldest_quorum_hash:
|
|
break
|
|
assert selected_hash == oldest_quorum_hash
|
|
# Create the ISLOCK, then mine a quorum to move the signing quorum out of the active set
|
|
islock = self.create_islock(rawtx, True)
|
|
# Mine one block to trigger the "signHeight + dkgInterval" verification for the ISLOCK
|
|
self.mine_quorum()
|
|
# Verify the ISLOCK for a transaction that is not yet known by the node
|
|
rawtx_txid = node.decoderawtransaction(rawtx)["txid"]
|
|
assert_raises_rpc_error(-5, "No such mempool or blockchain transaction", node.getrawtransaction, rawtx_txid)
|
|
assert node.verifyislock(request_id, rawtx_txid, islock.sig.hex(), node.getblockcount())
|
|
# Send the tx and verify the ISLOCK for a now known transaction
|
|
assert rawtx_txid == node.sendrawtransaction(rawtx)
|
|
assert node.verifyislock(request_id, rawtx_txid, islock.sig.hex(), node.getblockcount())
|
|
|
|
|
|
if __name__ == '__main__':
|
|
RPCVerifyISLockTest().main()
|