Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: actually use masternode with basic bls pubkey in mnauth test #6481

Merged
merged 3 commits into from
Dec 14, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion test/functional/rpc_mnauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ def set_test_params(self):

def run_test(self):
self.activate_v19(expected_activation_height=900)
self.dynamically_add_masternode()
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe we don't need 2 of them:

-self.set_dash_test_params(2, 1)
+self.set_dash_test_params(1, 0)


masternode = self.mninfo[0]
masternode = self.mninfo[1]
masternode.node.add_p2p_connection(P2PInterface())

protx_hash = masternode.proTxHash
Expand Down
Loading