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 66d11b1 commit fa3ab7bCopy full SHA for fa3ab7b
test/functional/test_framework/wallet.py
@@ -10,6 +10,7 @@
10
from random import choice
11
from typing import Optional
12
from test_framework.address import ADDRESS_BCRT1_P2WSH_OP_TRUE
13
+from test_framework.descriptors import descsum_create
14
from test_framework.key import ECKey
15
from test_framework.messages import (
16
COIN,
@@ -118,7 +119,7 @@ def generate(self, num_blocks):
118
119
return blocks
120
121
def get_descriptor(self):
- return self._test_node.getdescriptorinfo(f'raw({self._scriptPubKey.hex()})')['descriptor']
122
+ return descsum_create(f'raw({self._scriptPubKey.hex()})')
123
124
def get_address(self):
125
return self._address
0 commit comments