Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F10615268
chainparamsbase.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
chainparamsbase.cpp
View Options
// Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include
<chainparamsbase.h>
#include
<tinyformat.h>
#include
<util.h>
#include
<cassert>
const
std
::
string
CBaseChainParams
::
MAIN
=
"main"
;
const
std
::
string
CBaseChainParams
::
TESTNET
=
"test"
;
const
std
::
string
CBaseChainParams
::
REGTEST
=
"regtest"
;
void
SetupChainParamsBaseOptions
()
{
gArgs
.
AddArg
(
"-regtest"
,
"Enter regression test mode, which uses a special chain in "
"which blocks can be solved instantly. This is intended for "
"regression testing tools and app development."
,
true
,
OptionsCategory
::
CHAINPARAMS
);
gArgs
.
AddArg
(
"-testnet"
,
_
(
"Use the test chain"
),
false
,
OptionsCategory
::
CHAINPARAMS
);
}
/**
* Main network
*/
class
CBaseMainParams
:
public
CBaseChainParams
{
public
:
CBaseMainParams
()
{
nRPCPort
=
8332
;
}
};
/**
* Testnet (v3)
*/
class
CBaseTestNetParams
:
public
CBaseChainParams
{
public
:
CBaseTestNetParams
()
{
nRPCPort
=
18332
;
strDataDir
=
"testnet3"
;
}
};
/*
* Regression test
*/
class
CBaseRegTestParams
:
public
CBaseChainParams
{
public
:
CBaseRegTestParams
()
{
nRPCPort
=
18332
;
strDataDir
=
"regtest"
;
}
};
static
std
::
unique_ptr
<
CBaseChainParams
>
globalChainBaseParams
;
const
CBaseChainParams
&
BaseParams
()
{
assert
(
globalChainBaseParams
);
return
*
globalChainBaseParams
;
}
std
::
unique_ptr
<
CBaseChainParams
>
CreateBaseChainParams
(
const
std
::
string
&
chain
)
{
if
(
chain
==
CBaseChainParams
::
MAIN
)
return
std
::
unique_ptr
<
CBaseChainParams
>
(
new
CBaseMainParams
());
else
if
(
chain
==
CBaseChainParams
::
TESTNET
)
return
std
::
unique_ptr
<
CBaseChainParams
>
(
new
CBaseTestNetParams
());
else
if
(
chain
==
CBaseChainParams
::
REGTEST
)
return
std
::
unique_ptr
<
CBaseChainParams
>
(
new
CBaseRegTestParams
());
else
throw
std
::
runtime_error
(
strprintf
(
"%s: Unknown chain %s."
,
__func__
,
chain
));
}
void
SelectBaseParams
(
const
std
::
string
&
chain
)
{
globalChainBaseParams
=
CreateBaseChainParams
(
chain
);
gArgs
.
SelectConfigNetwork
(
chain
);
}
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Sat, Nov 23, 10:03 (1 d, 21 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4518404
Default Alt Text
chainparamsbase.cpp (2 KB)
Attached To
rSTAGING Bitcoin ABC staging
Event Timeline
Log In to Comment