Skip to content

Commit

Permalink
Fixes after merging upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
gruve-p committed Mar 30, 2024
1 parent b4a5cb8 commit 3e4361a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wallet/walletutil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ WalletDescriptor GenerateWalletDescriptor(const CExtPubKey& master_key, const Ou
} // no default case, so the compiler can warn about missing cases
assert(!desc_prefix.empty());

// Mainnet derives at 0', testnet and regtest derive at 1'
// Mainnet derives at 17', testnet and regtest derive at 1'
if (Params().IsTestChain()) {
desc_prefix += "/1h";
} else {
desc_prefix += "/0h";
desc_prefix += "/17h";
}

std::string internal_path = internal ? "/1" : "/0";
Expand Down

0 comments on commit 3e4361a

Please sign in to comment.