We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c96b9aa commit 739394dCopy full SHA for 739394d
test/functional/test_framework/wallet.py
@@ -8,6 +8,7 @@
8
from decimal import Decimal
9
from enum import Enum
10
from test_framework.address import ADDRESS_BCRT1_P2SH_OP_TRUE
11
+from test_framework.descriptors import descsum_create
12
from test_framework.key import ECKey
13
from random import choice
14
from typing import Optional
@@ -124,7 +125,7 @@ def generate(self, num_blocks):
124
125
return blocks
126
127
def get_descriptor(self):
- return self._test_node.getdescriptorinfo(f'raw({self._scriptPubKey.hex()})')['descriptor']
128
+ return descsum_create(f'raw({self._scriptPubKey.hex()})')
129
130
def get_address(self):
131
return self._address
0 commit comments