diff options
author | Andrew Chow <achow101-github@achow101.com> | 2019-08-02 18:04:02 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2019-08-16 19:34:01 -0400 |
commit | c325f619dd071b5489989f645e42cace8eb23fb4 (patch) | |
tree | 25177eef2a597ec4bdfff5abe7782c10be5daf2f /test/functional | |
parent | 7a960ba775a60ebcc2e830356693e3ed702b22f1 (diff) |
Return an error from descriptor Parse that gives more information about what failed
Diffstat (limited to 'test/functional')
-rwxr-xr-x | test/functional/wallet_importmulti.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wallet_importmulti.py b/test/functional/wallet_importmulti.py index e19c7919a9..4a8fcbf6d0 100755 --- a/test/functional/wallet_importmulti.py +++ b/test/functional/wallet_importmulti.py @@ -552,7 +552,7 @@ class ImportMultiTest(BitcoinTestFramework): "keys": [key.privkey]}, success=False, error_code=-5, - error_message="Descriptor is invalid") + error_message="Descriptor is invalid, Missing checksum") # Test importing of a P2SH-P2WPKH address via descriptor + private key key = get_key(self.nodes[0]) |