FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sidecoin/src/sidecoin-cli.cpp at master · superstacked/sidecoin · GitHub
superstacked
/
sidecoin
Public
forked from
glaspe/sidecoin
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
sidecoin
/
src
/
sidecoin-cli.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
81 lines (73 loc) · 2.51 KB
Breadcrumbs
sidecoin
/
src
/
sidecoin-cli.cpp
Copy path
File metadata and controls
81 lines (73 loc) · 2.51 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
//
Copyright (c) 2009-2010 Satoshi Nakamoto
//
Copyright (c) 2009-2013 The Bitcoin developers
//
Copyright (c) 2014 Joey Krug and Jack Peterson
//
Distributed under the MIT/X11 software license, see the accompanying
//
file COPYING or http://www.opensource.org/licenses/mit-license.php.
#
include
"
util.h
"
#
include
"
init.h
"
#
include
"
rpcclient.h
"
#
include
"
rpcprotocol.h
"
#
include
"
ui_interface.h
"
/*
for _(...)
*/
#
include
"
chainparams.h
"
#
include
<
boost/filesystem/operations.hpp
>
//
////////////////////////////////////////////////////////////////////////////
//
//
Start
//
static
bool
AppInitRPC
(
int
argc,
char
* argv[])
{
//
//
Parameters
//
ParseParameters
(argc, argv);
if
(!
boost::filesystem::is_directory
(
GetDataDir
(
false
)))
{
fprintf
(stderr,
"
Error: Specified data directory
\"
%s
\"
does not exist.
\n
"
, mapArgs[
"
-datadir
"
].
c_str
());
return
false
;
}
ReadConfigFile
(mapArgs, mapMultiArgs);
//
Check for -testnet or -regtest parameter (TestNet() calls are only valid after this clause)
if
(!
SelectParamsFromCommandLine
()) {
fprintf
(stderr,
"
Error: Invalid combination of -regtest and -testnet.
\n
"
);
return
false
;
}
if
(argc<
2
|| mapArgs.
count
(
"
-?
"
) || mapArgs.
count
(
"
--help
"
))
{
//
First part of help message is specific to RPC client
std::string strUsage =
_
(
"
Sidecoin RPC client version
"
) +
"
"
+
FormatFullVersion
() +
"
\n\n
"
+
_
(
"
Usage:
"
) +
"
\n
"
+
"
sidecoin-cli [options] <command> [params]
"
+
_
(
"
Send command to Sidecoin server
"
) +
"
\n
"
+
"
sidecoin-cli [options] help
"
+
_
(
"
List commands
"
) +
"
\n
"
+
"
sidecoin-cli [options] help <command>
"
+
_
(
"
Get help for a command
"
) +
"
\n
"
;
strUsage +=
"
\n
"
+
HelpMessageCli
(
true
);
fprintf
(stdout,
"
%s
"
, strUsage.
c_str
());
return
false
;
}
return
true
;
}
int
main
(
int
argc,
char
* argv[])
{
try
{
if
(!
AppInitRPC
(argc, argv))
return
abs
(
RPC_MISC_ERROR
);
}
catch
(std::exception& e) {
PrintExceptionContinue
(&e,
"
AppInitRPC()
"
);
return
abs
(
RPC_MISC_ERROR
);
}
catch
(...) {
PrintExceptionContinue
(
NULL
,
"
AppInitRPC()
"
);
return
abs
(
RPC_MISC_ERROR
);
}
int
ret =
abs
(
RPC_MISC_ERROR
);
try
{
ret =
CommandLineRPC
(argc, argv);
}
catch
(std::exception& e) {
PrintExceptionContinue
(&e,
"
CommandLineRPC()
"
);
}
catch
(...) {
PrintExceptionContinue
(
NULL
,
"
CommandLineRPC()
"
);
}
return
ret;
}
Back
|
FazBrowse Home
|
New Git URL