mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
Set correct ports for Liquid network params
This commit is contained in:
parent
6491b4da5d
commit
ac642808ab
1 changed files with 3 additions and 1 deletions
|
|
@ -62,9 +62,11 @@ std::unique_ptr<CBaseChainParams> CreateBaseChainParams(const std::string& chain
|
|||
return MakeUnique<CBaseChainParams>("testnet3", 18332, 8332);
|
||||
else if (chain == CBaseChainParams::REGTEST)
|
||||
return MakeUnique<CBaseChainParams>("regtest", 18443, 18332);
|
||||
else if (chain == CBaseChainParams::LIQUID1)
|
||||
return MakeUnique<CBaseChainParams>("liquidv1", 7041, 8332);
|
||||
|
||||
// ELEMENTS:
|
||||
return MakeUnique<CBaseChainParams>(chain, 7041, 18332);
|
||||
return MakeUnique<CBaseChainParams>(chain, 7040, 18332);
|
||||
}
|
||||
|
||||
void SelectBaseParams(const std::string& chain)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue