Skip to content

Commit 034575e

Browse files
author
MarcoFalke
committed
Merge #16609: descriptor: fix missed m_script_arg arg renaming in #14934
3963856 descriptor: fix missed m_script_arg arg renaming in #14934 (fanquake) Pull request description: Fixes a missed renaming from #14934. ACKs for top commit: Sjors: ACK 3963856 Tree-SHA512: da2972301b2b83556f1f3f3b72758bb69570422cdd57c65aa7657b4e3dcc597dde03e7f1cf8988e8c3b6737737b4c0bee4aefb329376e24e7dedc2cab73fcf88
2 parents e7df1ec + 3963856 commit 034575e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/script/descriptor.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -492,9 +492,9 @@ class DescriptorImpl : public Descriptor
492492
if (!p->GetPrivKey(pos, provider, key)) continue;
493493
out.keys.emplace(key.GetPubKey().GetID(), key);
494494
}
495-
if (m_script_arg) {
495+
if (m_subdescriptor_arg) {
496496
FlatSigningProvider subprovider;
497-
m_script_arg->ExpandPrivate(pos, provider, subprovider);
497+
m_subdescriptor_arg->ExpandPrivate(pos, provider, subprovider);
498498
out = Merge(out, subprovider);
499499
}
500500
}

0 commit comments

Comments
 (0)