Skip to content

Commit

Permalink
update of functional test scripts
Browse files Browse the repository at this point in the history
* Update functional tests

* More updated scripts
  • Loading branch information
bytzck authored and wagerr-builder committed Apr 29, 2022
1 parent 95b80c3 commit 871ae34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/functional/rpc_deprecated.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def run_test(self):
# self.nodes[1].createmultisig(1, [self.nodes[1].getnewaddress()])

self.log.info("Test validateaddress deprecation")
SOME_ADDRESS = "yZNRHJXRPAiSMXd2knNE174gFqYKFbwVvB" # This is just some random address to pass as a parameter to validateaddress
SOME_ADDRESS = "TZMsX7b1FAjJvnP78y7ChjpSMZ1N2zCDGt" # This is just some random address to pass as a parameter to validateaddress
dep_validate_address = self.nodes[0].validateaddress(SOME_ADDRESS)
assert "ismine" not in dep_validate_address
not_dep_val = self.nodes[1].validateaddress(SOME_ADDRESS)
Expand Down
2 changes: 1 addition & 1 deletion test/functional/wallet_encryption.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def run_test(self):
# Make sure the wallet isn't encrypted first
address = self.nodes[0].getnewaddress()
privkey = self.nodes[0].dumpprivkey(address)
assert_equal(privkey[:1], "c")
assert_equal(privkey[:1], "N")
assert_equal(len(privkey), 52)

# Encrypt the wallet
Expand Down

0 comments on commit 871ae34

Please sign in to comment.