Branch data Line data Source code
1 : : // Copyright (c) 2009-2022 The Bitcoin Core developers
2 : : // Distributed under the MIT software license, see the accompanying
3 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 : :
5 : : #include <bitcoin-build-config.h> // IWYU pragma: keep
6 : :
7 : : #include <chainparamsbase.h>
8 : : #include <clientversion.h>
9 : : #include <coins.h>
10 : : #include <common/args.h>
11 : : #include <common/system.h>
12 : : #include <compat/compat.h>
13 : : #include <consensus/amount.h>
14 : : #include <consensus/consensus.h>
15 : : #include <core_io.h>
16 : : #include <key_io.h>
17 : : #include <policy/policy.h>
18 : : #include <primitives/transaction.h>
19 : : #include <script/script.h>
20 : : #include <script/sign.h>
21 : : #include <script/signingprovider.h>
22 : : #include <univalue.h>
23 : : #include <util/exception.h>
24 : : #include <util/fs.h>
25 : : #include <util/moneystr.h>
26 : : #include <util/rbf.h>
27 : : #include <util/strencodings.h>
28 : : #include <util/string.h>
29 : : #include <util/translation.h>
30 : :
31 : : #include <cstdio>
32 : : #include <functional>
33 : : #include <memory>
34 : :
35 : : using util::SplitString;
36 : : using util::ToString;
37 : : using util::TrimString;
38 : : using util::TrimStringView;
39 : :
40 : : static bool fCreateBlank;
41 : : static std::map<std::string,UniValue> registers;
42 : : static const int CONTINUE_EXECUTION=-1;
43 : :
44 : : const TranslateFn G_TRANSLATION_FUN{nullptr};
45 : :
46 : 98 : static void SetupBitcoinTxArgs(ArgsManager &argsman)
47 : : {
48 : 98 : SetupHelpOptions(argsman);
49 : :
50 [ + - + - ]: 196 : argsman.AddArg("-version", "Print version and exit", ArgsManager::ALLOW_ANY, OptionsCategory::OPTIONS);
51 [ + - + - ]: 196 : argsman.AddArg("-create", "Create new, empty TX.", ArgsManager::ALLOW_ANY, OptionsCategory::OPTIONS);
52 [ + - + - ]: 196 : argsman.AddArg("-json", "Select JSON output", ArgsManager::ALLOW_ANY, OptionsCategory::OPTIONS);
53 [ + - + - ]: 196 : argsman.AddArg("-txid", "Output only the hex-encoded transaction id of the resultant transaction.", ArgsManager::ALLOW_ANY, OptionsCategory::OPTIONS);
54 : 98 : SetupChainParamsBaseOptions(argsman);
55 : :
56 [ + - + - ]: 196 : argsman.AddArg("delin=N", "Delete input N from TX", ArgsManager::ALLOW_ANY, OptionsCategory::COMMANDS);
57 [ + - + - ]: 196 : argsman.AddArg("delout=N", "Delete output N from TX", ArgsManager::ALLOW_ANY, OptionsCategory::COMMANDS);
58 [ + - + - ]: 196 : argsman.AddArg("in=TXID:VOUT(:SEQUENCE_NUMBER)", "Add input to TX", ArgsManager::ALLOW_ANY, OptionsCategory::COMMANDS);
59 [ + - + - ]: 196 : argsman.AddArg("locktime=N", "Set TX lock time to N", ArgsManager::ALLOW_ANY, OptionsCategory::COMMANDS);
60 [ + - + - ]: 196 : argsman.AddArg("nversion=N", "Set TX version to N", ArgsManager::ALLOW_ANY, OptionsCategory::COMMANDS);
61 [ + - + - ]: 196 : argsman.AddArg("outaddr=VALUE:ADDRESS", "Add address-based output to TX", ArgsManager::ALLOW_ANY, OptionsCategory::COMMANDS);
62 [ + - + - ]: 196 : argsman.AddArg("outdata=[VALUE:]DATA", "Add data-based output to TX", ArgsManager::ALLOW_ANY, OptionsCategory::COMMANDS);
63 [ + - + - ]: 196 : argsman.AddArg("outmultisig=VALUE:REQUIRED:PUBKEYS:PUBKEY1:PUBKEY2:....[:FLAGS]", "Add Pay To n-of-m Multi-sig output to TX. n = REQUIRED, m = PUBKEYS. "
64 : : "Optionally add the \"W\" flag to produce a pay-to-witness-script-hash output. "
65 : 98 : "Optionally add the \"S\" flag to wrap the output in a pay-to-script-hash.", ArgsManager::ALLOW_ANY, OptionsCategory::COMMANDS);
66 [ + - + - ]: 196 : argsman.AddArg("outpubkey=VALUE:PUBKEY[:FLAGS]", "Add pay-to-pubkey output to TX. "
67 : : "Optionally add the \"W\" flag to produce a pay-to-witness-pubkey-hash output. "
68 : 98 : "Optionally add the \"S\" flag to wrap the output in a pay-to-script-hash.", ArgsManager::ALLOW_ANY, OptionsCategory::COMMANDS);
69 [ + - + - ]: 196 : argsman.AddArg("outscript=VALUE:SCRIPT[:FLAGS]", "Add raw script output to TX. "
70 : : "Optionally add the \"W\" flag to produce a pay-to-witness-script-hash output. "
71 : 98 : "Optionally add the \"S\" flag to wrap the output in a pay-to-script-hash.", ArgsManager::ALLOW_ANY, OptionsCategory::COMMANDS);
72 [ + - + - ]: 196 : argsman.AddArg("replaceable(=N)", "Sets Replace-By-Fee (RBF) opt-in sequence number for input N. "
73 : : "If N is not provided, the command attempts to opt-in all available inputs for RBF. "
74 : 98 : "If the transaction has no inputs, this option is ignored.", ArgsManager::ALLOW_ANY, OptionsCategory::COMMANDS);
75 [ + - + - ]: 196 : argsman.AddArg("sign=SIGHASH-FLAGS", "Add zero or more signatures to transaction. "
76 : : "This command requires JSON registers:"
77 : : "prevtxs=JSON object, "
78 : : "privatekeys=JSON object. "
79 : 98 : "See signrawtransactionwithkey docs for format of sighash flags, JSON objects.", ArgsManager::ALLOW_ANY, OptionsCategory::COMMANDS);
80 : :
81 [ + - + - ]: 196 : argsman.AddArg("load=NAME:FILENAME", "Load JSON file FILENAME into register NAME", ArgsManager::ALLOW_ANY, OptionsCategory::REGISTER_COMMANDS);
82 [ + - + - ]: 196 : argsman.AddArg("set=NAME:JSON-STRING", "Set register NAME to given JSON-STRING", ArgsManager::ALLOW_ANY, OptionsCategory::REGISTER_COMMANDS);
83 : 98 : }
84 : :
85 : : //
86 : : // This function returns either one of EXIT_ codes when it's expected to stop the process or
87 : : // CONTINUE_EXECUTION when it's expected to continue further.
88 : : //
89 : 98 : static int AppInitRawTx(int argc, char* argv[])
90 : : {
91 : 98 : SetupBitcoinTxArgs(gArgs);
92 [ + - ]: 98 : std::string error;
93 [ + - - + ]: 98 : if (!gArgs.ParseParameters(argc, argv, error)) {
94 [ # # ]: 0 : tfm::format(std::cerr, "Error parsing command line arguments: %s\n", error);
95 : : return EXIT_FAILURE;
96 : : }
97 : :
98 : : // Check for chain settings (Params() calls are only valid after this clause)
99 : 98 : try {
100 [ + - + - ]: 98 : SelectParams(gArgs.GetChainType());
101 [ - - ]: 0 : } catch (const std::exception& e) {
102 [ - - ]: 0 : tfm::format(std::cerr, "Error: %s\n", e.what());
103 : 0 : return EXIT_FAILURE;
104 : 0 : }
105 : :
106 [ + - + - ]: 98 : fCreateBlank = gArgs.GetBoolArg("-create", false);
107 : :
108 [ + - + - : 196 : if (argc < 2 || HelpRequested(gArgs) || gArgs.GetBoolArg("-version", false)) {
+ - + - +
- + - -
+ ]
109 : : // First part of help message is specific to this utility
110 [ # # # # ]: 0 : std::string strUsage = CLIENT_NAME " bitcoin-tx utility version " + FormatFullVersion() + "\n";
111 : :
112 [ # # # # : 0 : if (gArgs.GetBoolArg("-version", false)) {
# # ]
113 [ # # # # ]: 0 : strUsage += FormatParagraph(LicenseInfo());
114 : : } else {
115 [ # # ]: 0 : strUsage += "\n"
116 : : "The bitcoin-tx tool is used for creating and modifying bitcoin transactions.\n\n"
117 : : "bitcoin-tx can be used with \"<hex-tx> [commands]\" to update a hex-encoded bitcoin transaction, or with \"-create [commands]\" to create a hex-encoded bitcoin transaction.\n"
118 : : "\n"
119 : : "Usage: bitcoin-tx [options] <hex-tx> [commands]\n"
120 : : "or: bitcoin-tx [options] -create [commands]\n"
121 : 0 : "\n";
122 [ # # ]: 0 : strUsage += gArgs.GetHelpMessage();
123 : : }
124 : :
125 [ # # ]: 0 : tfm::format(std::cout, "%s", strUsage);
126 : :
127 [ # # ]: 0 : if (argc < 2) {
128 [ # # ]: 0 : tfm::format(std::cerr, "Error: too few parameters\n");
129 : : return EXIT_FAILURE;
130 : : }
131 : : return EXIT_SUCCESS;
132 : 0 : }
133 : : return CONTINUE_EXECUTION;
134 : 98 : }
135 : :
136 : 18 : static void RegisterSetJson(const std::string& key, const std::string& rawJson)
137 : : {
138 [ + - ]: 18 : UniValue val;
139 [ + - - + ]: 18 : if (!val.read(rawJson)) {
140 [ # # ]: 0 : std::string strErr = "Cannot parse JSON for key " + key;
141 [ # # ]: 0 : throw std::runtime_error(strErr);
142 : 0 : }
143 : :
144 [ + - + - ]: 18 : registers[key] = val;
145 : 18 : }
146 : :
147 : 18 : static void RegisterSet(const std::string& strInput)
148 : : {
149 : : // separate NAME:VALUE in string
150 : 18 : size_t pos = strInput.find(':');
151 : 18 : if ((pos == std::string::npos) ||
152 [ + - ]: 18 : (pos == 0) ||
153 [ - + ]: 18 : (pos == (strInput.size() - 1)))
154 [ # # ]: 0 : throw std::runtime_error("Register input requires NAME:VALUE");
155 : :
156 : 18 : std::string key = strInput.substr(0, pos);
157 [ + - ]: 18 : std::string valStr = strInput.substr(pos + 1, std::string::npos);
158 : :
159 [ + - ]: 18 : RegisterSetJson(key, valStr);
160 : 18 : }
161 : :
162 : 0 : static void RegisterLoad(const std::string& strInput)
163 : : {
164 : : // separate NAME:FILENAME in string
165 : 0 : size_t pos = strInput.find(':');
166 : 0 : if ((pos == std::string::npos) ||
167 [ # # ]: 0 : (pos == 0) ||
168 [ # # ]: 0 : (pos == (strInput.size() - 1)))
169 [ # # ]: 0 : throw std::runtime_error("Register load requires NAME:FILENAME");
170 : :
171 : 0 : std::string key = strInput.substr(0, pos);
172 [ # # ]: 0 : std::string filename = strInput.substr(pos + 1, std::string::npos);
173 : :
174 [ # # # # ]: 0 : FILE *f = fsbridge::fopen(filename.c_str(), "r");
175 [ # # ]: 0 : if (!f) {
176 [ # # ]: 0 : std::string strErr = "Cannot open file " + filename;
177 [ # # ]: 0 : throw std::runtime_error(strErr);
178 : 0 : }
179 : :
180 : : // load file chunks into one big buffer
181 : 0 : std::string valStr;
182 [ # # # # ]: 0 : while ((!feof(f)) && (!ferror(f))) {
183 : 0 : char buf[4096];
184 [ # # ]: 0 : int bread = fread(buf, 1, sizeof(buf), f);
185 [ # # ]: 0 : if (bread <= 0)
186 : : break;
187 : :
188 [ # # ]: 0 : valStr.insert(valStr.size(), buf, bread);
189 : : }
190 : :
191 : 0 : int error = ferror(f);
192 [ # # ]: 0 : fclose(f);
193 : :
194 [ # # ]: 0 : if (error) {
195 [ # # ]: 0 : std::string strErr = "Error reading file " + filename;
196 [ # # ]: 0 : throw std::runtime_error(strErr);
197 : 0 : }
198 : :
199 : : // evaluate as JSON buffer register
200 [ # # ]: 0 : RegisterSetJson(key, valStr);
201 : 0 : }
202 : :
203 : 55 : static CAmount ExtractAndValidateValue(const std::string& strValue)
204 : : {
205 [ + - ]: 55 : if (std::optional<CAmount> parsed = ParseMoney(strValue)) {
206 : 55 : return parsed.value();
207 : : } else {
208 [ # # ]: 0 : throw std::runtime_error("invalid TX output value");
209 : : }
210 : : }
211 : :
212 : 28 : static void MutateTxVersion(CMutableTransaction& tx, const std::string& cmdVal)
213 : : {
214 : 28 : uint32_t newVersion;
215 [ + + + - : 28 : if (!ParseUInt32(cmdVal, &newVersion) || newVersion < 1 || newVersion > TX_MAX_STANDARD_VERSION) {
+ - ]
216 [ + - + - ]: 3 : throw std::runtime_error("Invalid TX version requested: '" + cmdVal + "'");
217 : : }
218 : :
219 : 27 : tx.version = newVersion;
220 : 27 : }
221 : :
222 : 3 : static void MutateTxLocktime(CMutableTransaction& tx, const std::string& cmdVal)
223 : : {
224 : 3 : int64_t newLocktime;
225 [ + + + - : 3 : if (!ParseInt64(cmdVal, &newLocktime) || newLocktime < 0LL || newLocktime > 0xffffffffLL)
+ - ]
226 [ + - + - ]: 3 : throw std::runtime_error("Invalid TX locktime requested: '" + cmdVal + "'");
227 : :
228 : 2 : tx.nLockTime = (unsigned int) newLocktime;
229 : 2 : }
230 : :
231 : 8 : static void MutateTxRBFOptIn(CMutableTransaction& tx, const std::string& strInIdx)
232 : : {
233 : : // parse requested index
234 : 8 : int64_t inIdx = -1;
235 [ + + + + : 8 : if (strInIdx != "" && (!ParseInt64(strInIdx, &inIdx) || inIdx < 0 || inIdx >= static_cast<int64_t>(tx.vin.size()))) {
+ + + + ]
236 [ + - + - ]: 9 : throw std::runtime_error("Invalid TX input index '" + strInIdx + "'");
237 : : }
238 : :
239 : : // set the nSequence to MAX_INT - 2 (= RBF opt in flag)
240 : 5 : int cnt = 0;
241 [ + + ]: 13 : for (CTxIn& txin : tx.vin) {
242 [ + + + + ]: 8 : if (strInIdx == "" || cnt == inIdx) {
243 [ + - ]: 6 : if (txin.nSequence > MAX_BIP125_RBF_SEQUENCE) {
244 : 6 : txin.nSequence = MAX_BIP125_RBF_SEQUENCE;
245 : : }
246 : : }
247 : 8 : ++cnt;
248 : : }
249 : 5 : }
250 : :
251 : : template <typename T>
252 : 32 : static T TrimAndParse(const std::string& int_str, const std::string& err)
253 : : {
254 [ + + ]: 32 : const auto parsed{ToIntegral<T>(TrimStringView(int_str))};
255 [ + + ]: 32 : if (!parsed.has_value()) {
256 [ + - + - : 18 : throw std::runtime_error(err + " '" + int_str + "'");
+ - ]
257 : : }
258 : 26 : return parsed.value();
259 : : }
260 : :
261 : 45 : static void MutateTxAddInput(CMutableTransaction& tx, const std::string& strInput)
262 : : {
263 : 45 : std::vector<std::string> vStrInputParts = SplitString(strInput, ':');
264 : :
265 : : // separate TXID:VOUT in string
266 [ - + ]: 45 : if (vStrInputParts.size()<2)
267 [ # # ]: 0 : throw std::runtime_error("TX input missing separator");
268 : :
269 : : // extract and validate TXID
270 [ + - ]: 45 : auto txid{Txid::FromHex(vStrInputParts[0])};
271 [ + + ]: 45 : if (!txid) {
272 [ + - ]: 3 : throw std::runtime_error("invalid TX input txid");
273 : : }
274 : :
275 : 42 : static const unsigned int minTxOutSz = 9;
276 : 42 : static const unsigned int maxVout = MAX_BLOCK_WEIGHT / (WITNESS_SCALE_FACTOR * minTxOutSz);
277 : :
278 : : // extract and validate vout
279 [ + - ]: 42 : const std::string& strVout = vStrInputParts[1];
280 : 42 : int64_t vout;
281 [ + - + + : 42 : if (!ParseInt64(strVout, &vout) || vout < 0 || vout > static_cast<int64_t>(maxVout))
+ - + - ]
282 [ + - + - ]: 3 : throw std::runtime_error("invalid TX input vout '" + strVout + "'");
283 : :
284 : : // extract the optional sequence number
285 : 41 : uint32_t nSequenceIn = CTxIn::SEQUENCE_FINAL;
286 [ + + ]: 41 : if (vStrInputParts.size() > 2) {
287 [ + - + + ]: 22 : nSequenceIn = TrimAndParse<uint32_t>(vStrInputParts.at(2), "invalid TX sequence id");
288 : : }
289 : :
290 : : // append to transaction input list
291 [ + - ]: 37 : CTxIn txin(*txid, vout, CScript(), nSequenceIn);
292 [ + - ]: 37 : tx.vin.push_back(txin);
293 : 45 : }
294 : :
295 : 17 : static void MutateTxAddOutAddr(CMutableTransaction& tx, const std::string& strInput)
296 : : {
297 : : // Separate into VALUE:ADDRESS
298 : 17 : std::vector<std::string> vStrInputParts = SplitString(strInput, ':');
299 : :
300 [ + + ]: 17 : if (vStrInputParts.size() != 2)
301 [ + - ]: 2 : throw std::runtime_error("TX output missing or too many separators");
302 : :
303 : : // Extract and validate VALUE
304 [ + - ]: 15 : CAmount value = ExtractAndValidateValue(vStrInputParts[0]);
305 : :
306 : : // extract and validate ADDRESS
307 [ + - ]: 15 : const std::string& strAddr = vStrInputParts[1];
308 [ + - ]: 15 : CTxDestination destination = DecodeDestination(strAddr);
309 [ + - - + ]: 15 : if (!IsValidDestination(destination)) {
310 [ # # ]: 0 : throw std::runtime_error("invalid TX output address");
311 : : }
312 [ + - ]: 15 : CScript scriptPubKey = GetScriptForDestination(destination);
313 : :
314 : : // construct TxOut, append to transaction output list
315 [ + - ]: 15 : CTxOut txout(value, scriptPubKey);
316 [ + - ]: 15 : tx.vout.push_back(txout);
317 : 17 : }
318 : :
319 : 9 : static void MutateTxAddOutPubKey(CMutableTransaction& tx, const std::string& strInput)
320 : : {
321 : : // Separate into VALUE:PUBKEY[:FLAGS]
322 : 9 : std::vector<std::string> vStrInputParts = SplitString(strInput, ':');
323 : :
324 [ + + + + ]: 9 : if (vStrInputParts.size() < 2 || vStrInputParts.size() > 3)
325 [ + - ]: 2 : throw std::runtime_error("TX output missing or too many separators");
326 : :
327 : : // Extract and validate VALUE
328 [ + - ]: 7 : CAmount value = ExtractAndValidateValue(vStrInputParts[0]);
329 : :
330 : : // Extract and validate PUBKEY
331 [ + - ]: 7 : CPubKey pubkey(ParseHex(vStrInputParts[1]));
332 [ + - - + ]: 7 : if (!pubkey.IsFullyValid())
333 [ # # ]: 0 : throw std::runtime_error("invalid TX output pubkey");
334 [ + - ]: 7 : CScript scriptPubKey = GetScriptForRawPubKey(pubkey);
335 : :
336 : : // Extract and validate FLAGS
337 : 7 : bool bSegWit = false;
338 : 7 : bool bScriptHash = false;
339 [ + + ]: 7 : if (vStrInputParts.size() == 3) {
340 [ + - ]: 5 : const std::string& flags = vStrInputParts[2];
341 : 5 : bSegWit = (flags.find('W') != std::string::npos);
342 : 5 : bScriptHash = (flags.find('S') != std::string::npos);
343 : : }
344 : :
345 [ + - ]: 5 : if (bSegWit) {
346 [ + + ]: 5 : if (!pubkey.IsCompressed()) {
347 [ + - ]: 1 : throw std::runtime_error("Uncompressed pubkeys are not useable for SegWit outputs");
348 : : }
349 : : // Build a P2WPKH script
350 [ + - + - ]: 8 : scriptPubKey = GetScriptForDestination(WitnessV0KeyHash(pubkey));
351 : : }
352 [ + + ]: 6 : if (bScriptHash) {
353 : : // Get the ID for the script, and then construct a P2SH destination for it.
354 [ + - + - ]: 4 : scriptPubKey = GetScriptForDestination(ScriptHash(scriptPubKey));
355 : : }
356 : :
357 : : // construct TxOut, append to transaction output list
358 [ + - ]: 6 : CTxOut txout(value, scriptPubKey);
359 [ + - ]: 6 : tx.vout.push_back(txout);
360 : 9 : }
361 : :
362 : 12 : static void MutateTxAddOutMultiSig(CMutableTransaction& tx, const std::string& strInput)
363 : : {
364 : : // Separate into VALUE:REQUIRED:NUMKEYS:PUBKEY1:PUBKEY2:....[:FLAGS]
365 : 12 : std::vector<std::string> vStrInputParts = SplitString(strInput, ':');
366 : :
367 : : // Check that there are enough parameters
368 [ - + ]: 12 : if (vStrInputParts.size()<3)
369 [ # # ]: 0 : throw std::runtime_error("Not enough multisig parameters");
370 : :
371 : : // Extract and validate VALUE
372 [ + - ]: 12 : CAmount value = ExtractAndValidateValue(vStrInputParts[0]);
373 : :
374 : : // Extract REQUIRED
375 [ + - + + ]: 25 : const uint32_t required{TrimAndParse<uint32_t>(vStrInputParts.at(1), "invalid multisig required number")};
376 : :
377 : : // Extract NUMKEYS
378 [ + - + + ]: 23 : const uint32_t numkeys{TrimAndParse<uint32_t>(vStrInputParts.at(2), "invalid multisig total number")};
379 : :
380 : : // Validate there are the correct number of pubkeys
381 [ - + ]: 10 : if (vStrInputParts.size() < numkeys + 3)
382 [ # # ]: 0 : throw std::runtime_error("incorrect number of multisig pubkeys");
383 : :
384 [ + - + - : 10 : if (required < 1 || required > MAX_PUBKEYS_PER_MULTISIG || numkeys < 1 || numkeys > MAX_PUBKEYS_PER_MULTISIG || numkeys < required)
+ - - + ]
385 : 0 : throw std::runtime_error("multisig parameter mismatch. Required " \
386 [ # # # # : 0 : + ToString(required) + " of " + ToString(numkeys) + "signatures.");
# # # # #
# ]
387 : :
388 : : // extract and validate PUBKEYs
389 : 10 : std::vector<CPubKey> pubkeys;
390 [ + + ]: 40 : for(int pos = 1; pos <= int(numkeys); pos++) {
391 [ + - ]: 30 : CPubKey pubkey(ParseHex(vStrInputParts[pos + 2]));
392 [ + - - + ]: 30 : if (!pubkey.IsFullyValid())
393 [ # # ]: 0 : throw std::runtime_error("invalid TX output pubkey");
394 [ + - ]: 30 : pubkeys.push_back(pubkey);
395 : : }
396 : :
397 : : // Extract FLAGS
398 : 10 : bool bSegWit = false;
399 : 10 : bool bScriptHash = false;
400 [ + + ]: 10 : if (vStrInputParts.size() == numkeys + 4) {
401 : 8 : const std::string& flags = vStrInputParts.back();
402 : 8 : bSegWit = (flags.find('W') != std::string::npos);
403 : 8 : bScriptHash = (flags.find('S') != std::string::npos);
404 : : }
405 [ - + ]: 2 : else if (vStrInputParts.size() > numkeys + 4) {
406 : : // Validate that there were no more parameters passed
407 [ # # ]: 0 : throw std::runtime_error("Too many parameters");
408 : : }
409 : :
410 [ + - ]: 10 : CScript scriptPubKey = GetScriptForMultisig(required, pubkeys);
411 : :
412 [ + + ]: 10 : if (bSegWit) {
413 [ + + ]: 19 : for (const CPubKey& pubkey : pubkeys) {
414 [ + + ]: 15 : if (!pubkey.IsCompressed()) {
415 [ + - ]: 1 : throw std::runtime_error("Uncompressed pubkeys are not useable for SegWit outputs");
416 : : }
417 : : }
418 : : // Build a P2WSH with the multisig script
419 [ + - + - ]: 8 : scriptPubKey = GetScriptForDestination(WitnessV0ScriptHash(scriptPubKey));
420 : : }
421 [ + + ]: 9 : if (bScriptHash) {
422 [ + - - + ]: 5 : if (scriptPubKey.size() > MAX_SCRIPT_ELEMENT_SIZE) {
423 : 0 : throw std::runtime_error(strprintf(
424 [ # # # # : 0 : "redeemScript exceeds size limit: %d > %d", scriptPubKey.size(), MAX_SCRIPT_ELEMENT_SIZE));
# # ]
425 : : }
426 : : // Get the ID for the script, and then construct a P2SH destination for it.
427 [ + - + - ]: 10 : scriptPubKey = GetScriptForDestination(ScriptHash(scriptPubKey));
428 : : }
429 : :
430 : : // construct TxOut, append to transaction output list
431 [ + - ]: 9 : CTxOut txout(value, scriptPubKey);
432 [ + - ]: 9 : tx.vout.push_back(txout);
433 : 13 : }
434 : :
435 : 6 : static void MutateTxAddOutData(CMutableTransaction& tx, const std::string& strInput)
436 : : {
437 : 6 : CAmount value = 0;
438 : :
439 : : // separate [VALUE:]DATA in string
440 : 6 : size_t pos = strInput.find(':');
441 : :
442 [ - + ]: 6 : if (pos==0)
443 [ # # ]: 0 : throw std::runtime_error("TX output value not specified");
444 : :
445 [ + + ]: 6 : if (pos == std::string::npos) {
446 : : pos = 0;
447 : : } else {
448 : : // Extract and validate VALUE
449 [ + - ]: 3 : value = ExtractAndValidateValue(strInput.substr(0, pos));
450 : 3 : ++pos;
451 : : }
452 : :
453 : : // extract and validate DATA
454 : 6 : const std::string strData{strInput.substr(pos, std::string::npos)};
455 : :
456 [ + - + + ]: 6 : if (!IsHex(strData))
457 [ + - ]: 2 : throw std::runtime_error("invalid TX output data");
458 : :
459 [ + - ]: 4 : std::vector<unsigned char> data = ParseHex(strData);
460 : :
461 [ + - + - : 12 : CTxOut txout(value, CScript() << OP_RETURN << data);
+ - ]
462 [ + - ]: 4 : tx.vout.push_back(txout);
463 : 4 : }
464 : :
465 : 18 : static void MutateTxAddOutScript(CMutableTransaction& tx, const std::string& strInput)
466 : : {
467 : : // separate VALUE:SCRIPT[:FLAGS]
468 : 18 : std::vector<std::string> vStrInputParts = SplitString(strInput, ':');
469 [ - + ]: 18 : if (vStrInputParts.size() < 2)
470 [ # # ]: 0 : throw std::runtime_error("TX output missing separator");
471 : :
472 : : // Extract and validate VALUE
473 [ + - ]: 18 : CAmount value = ExtractAndValidateValue(vStrInputParts[0]);
474 : :
475 : : // extract and validate script
476 [ + + ]: 18 : const std::string& strScript = vStrInputParts[1];
477 [ + + ]: 18 : CScript scriptPubKey = ParseScript(strScript);
478 : :
479 : : // Extract FLAGS
480 : 12 : bool bSegWit = false;
481 : 12 : bool bScriptHash = false;
482 [ + + ]: 12 : if (vStrInputParts.size() == 3) {
483 : 6 : const std::string& flags = vStrInputParts.back();
484 : 6 : bSegWit = (flags.find('W') != std::string::npos);
485 : 6 : bScriptHash = (flags.find('S') != std::string::npos);
486 : : }
487 : :
488 [ - + - - ]: 12 : if (scriptPubKey.size() > MAX_SCRIPT_SIZE) {
489 : 0 : throw std::runtime_error(strprintf(
490 [ # # # # : 0 : "script exceeds size limit: %d > %d", scriptPubKey.size(), MAX_SCRIPT_SIZE));
# # ]
491 : : }
492 : :
493 [ + + ]: 12 : if (bSegWit) {
494 [ + - + - ]: 8 : scriptPubKey = GetScriptForDestination(WitnessV0ScriptHash(scriptPubKey));
495 : : }
496 [ + + ]: 12 : if (bScriptHash) {
497 [ + + - + ]: 4 : if (scriptPubKey.size() > MAX_SCRIPT_ELEMENT_SIZE) {
498 : 0 : throw std::runtime_error(strprintf(
499 [ # # # # : 0 : "redeemScript exceeds size limit: %d > %d", scriptPubKey.size(), MAX_SCRIPT_ELEMENT_SIZE));
# # ]
500 : : }
501 [ + - + - ]: 8 : scriptPubKey = GetScriptForDestination(ScriptHash(scriptPubKey));
502 : : }
503 : :
504 : : // construct TxOut, append to transaction output list
505 [ + - ]: 12 : CTxOut txout(value, scriptPubKey);
506 [ + - ]: 12 : tx.vout.push_back(txout);
507 : 18 : }
508 : :
509 : 4 : static void MutateTxDelInput(CMutableTransaction& tx, const std::string& strInIdx)
510 : : {
511 : : // parse requested deletion index
512 : 4 : int64_t inIdx;
513 [ + + + - : 4 : if (!ParseInt64(strInIdx, &inIdx) || inIdx < 0 || inIdx >= static_cast<int64_t>(tx.vin.size())) {
+ + ]
514 [ + - + - ]: 6 : throw std::runtime_error("Invalid TX input index '" + strInIdx + "'");
515 : : }
516 : :
517 : : // delete input from transaction
518 : 2 : tx.vin.erase(tx.vin.begin() + inIdx);
519 : 2 : }
520 : :
521 : 4 : static void MutateTxDelOutput(CMutableTransaction& tx, const std::string& strOutIdx)
522 : : {
523 : : // parse requested deletion index
524 : 4 : int64_t outIdx;
525 [ + + + - : 4 : if (!ParseInt64(strOutIdx, &outIdx) || outIdx < 0 || outIdx >= static_cast<int64_t>(tx.vout.size())) {
+ + ]
526 [ + - + - ]: 6 : throw std::runtime_error("Invalid TX output index '" + strOutIdx + "'");
527 : : }
528 : :
529 : : // delete output from transaction
530 : 2 : tx.vout.erase(tx.vout.begin() + outIdx);
531 : 2 : }
532 : :
533 : : static const unsigned int N_SIGHASH_OPTS = 7;
534 : : static const struct {
535 : : const char *flagStr;
536 : : int flags;
537 : : } sighashOptions[N_SIGHASH_OPTS] = {
538 : : {"DEFAULT", SIGHASH_DEFAULT},
539 : : {"ALL", SIGHASH_ALL},
540 : : {"NONE", SIGHASH_NONE},
541 : : {"SINGLE", SIGHASH_SINGLE},
542 : : {"ALL|ANYONECANPAY", SIGHASH_ALL|SIGHASH_ANYONECANPAY},
543 : : {"NONE|ANYONECANPAY", SIGHASH_NONE|SIGHASH_ANYONECANPAY},
544 : : {"SINGLE|ANYONECANPAY", SIGHASH_SINGLE|SIGHASH_ANYONECANPAY},
545 : : };
546 : :
547 : 9 : static bool findSighashFlags(int& flags, const std::string& flagStr)
548 : : {
549 : 9 : flags = 0;
550 : :
551 [ + - ]: 18 : for (unsigned int i = 0; i < N_SIGHASH_OPTS; i++) {
552 [ + + ]: 18 : if (flagStr == sighashOptions[i].flagStr) {
553 : 9 : flags = sighashOptions[i].flags;
554 : 9 : return true;
555 : : }
556 : : }
557 : :
558 : : return false;
559 : : }
560 : :
561 : 1 : static CAmount AmountFromValue(const UniValue& value)
562 : : {
563 [ + - - + ]: 1 : if (!value.isNum() && !value.isStr())
564 [ # # ]: 0 : throw std::runtime_error("Amount is not a number or string");
565 : 1 : CAmount amount;
566 [ - + ]: 1 : if (!ParseFixedPoint(value.getValStr(), 8, &amount))
567 [ # # ]: 0 : throw std::runtime_error("Invalid amount");
568 [ - + ]: 1 : if (!MoneyRange(amount))
569 [ # # ]: 0 : throw std::runtime_error("Amount out of range");
570 : 1 : return amount;
571 : : }
572 : :
573 : 5 : static std::vector<unsigned char> ParseHexUV(const UniValue& v, const std::string& strName)
574 : : {
575 [ + - ]: 5 : std::string strHex;
576 [ + - ]: 5 : if (v.isStr())
577 [ + - ]: 5 : strHex = v.getValStr();
578 [ + - - + ]: 5 : if (!IsHex(strHex))
579 [ # # # # : 0 : throw std::runtime_error(strName + " must be hexadecimal string (not '" + strHex + "')");
# # ]
580 [ + - ]: 5 : return ParseHex(strHex);
581 : 5 : }
582 : :
583 : 9 : static void MutateTxSign(CMutableTransaction& tx, const std::string& flagStr)
584 : : {
585 : 9 : int nHashType = SIGHASH_ALL;
586 : :
587 [ + - ]: 9 : if (flagStr.size() > 0)
588 [ - + ]: 9 : if (!findSighashFlags(nHashType, flagStr))
589 [ # # ]: 0 : throw std::runtime_error("unknown sighash flag/sign option");
590 : :
591 : : // mergedTx will end up with all the signatures; it
592 : : // starts as a clone of the raw tx:
593 : 9 : CMutableTransaction mergedTx{tx};
594 [ + - ]: 9 : const CMutableTransaction txv{tx};
595 : 9 : CCoinsView viewDummy;
596 [ + - ]: 9 : CCoinsViewCache view(&viewDummy);
597 : :
598 [ + - - + ]: 9 : if (!registers.count("privatekeys"))
599 [ # # ]: 0 : throw std::runtime_error("privatekeys register variable must be set.");
600 : 9 : FillableSigningProvider tempKeystore;
601 [ + - + - : 9 : UniValue keysObj = registers["privatekeys"];
+ - ]
602 : :
603 [ + + ]: 18 : for (unsigned int kidx = 0; kidx < keysObj.size(); kidx++) {
604 [ + - - + ]: 9 : if (!keysObj[kidx].isStr())
605 [ # # ]: 0 : throw std::runtime_error("privatekey not a std::string");
606 [ + - + - ]: 9 : CKey key = DecodeSecret(keysObj[kidx].getValStr());
607 [ - + ]: 9 : if (!key.IsValid()) {
608 [ # # ]: 0 : throw std::runtime_error("privatekey not valid");
609 : : }
610 [ + - ]: 9 : tempKeystore.AddKey(key);
611 : 9 : }
612 : :
613 : : // Add previous txouts given in the RPC call:
614 [ + - - + ]: 9 : if (!registers.count("prevtxs"))
615 [ # # ]: 0 : throw std::runtime_error("prevtxs register variable must be set.");
616 [ + - + - : 9 : UniValue prevtxsObj = registers["prevtxs"];
+ - ]
617 : 9 : {
618 [ + + ]: 14 : for (unsigned int previdx = 0; previdx < prevtxsObj.size(); previdx++) {
619 [ + - ]: 9 : const UniValue& prevOut = prevtxsObj[previdx];
620 [ - + ]: 9 : if (!prevOut.isObject())
621 [ # # ]: 0 : throw std::runtime_error("expected prevtxs internal object");
622 : :
623 : 9 : std::map<std::string, UniValue::VType> types = {
624 [ + - ]: 9 : {"txid", UniValue::VSTR},
625 : 9 : {"vout", UniValue::VNUM},
626 : 9 : {"scriptPubKey", UniValue::VSTR},
627 [ + + - - ]: 36 : };
628 [ + - + + ]: 9 : if (!prevOut.checkObject(types))
629 [ + - ]: 1 : throw std::runtime_error("prevtxs internal object typecheck fail");
630 : :
631 [ + - + - : 8 : auto txid{Txid::FromHex(prevOut["txid"].get_str())};
+ - + - ]
632 [ + + ]: 8 : if (!txid) {
633 [ + - + - : 9 : throw std::runtime_error("txid must be hexadecimal string (not '" + prevOut["txid"].get_str() + "')");
+ - + - +
- ]
634 : : }
635 : :
636 [ + - + - : 5 : const int nOut = prevOut["vout"].getInt<int>();
+ - ]
637 [ - + ]: 5 : if (nOut < 0)
638 [ # # ]: 0 : throw std::runtime_error("vout cannot be negative");
639 : :
640 [ + - ]: 5 : COutPoint out(*txid, nOut);
641 [ + - + - : 10 : std::vector<unsigned char> pkData(ParseHexUV(prevOut["scriptPubKey"], "scriptPubKey"));
+ - + - ]
642 : 5 : CScript scriptPubKey(pkData.begin(), pkData.end());
643 : :
644 : 5 : {
645 [ + - ]: 5 : const Coin& coin = view.AccessCoin(out);
646 [ - + - - ]: 5 : if (!coin.IsSpent() && coin.out.scriptPubKey != scriptPubKey) {
647 [ # # ]: 0 : std::string err("Previous output scriptPubKey mismatch:\n");
648 [ # # # # ]: 0 : err = err + ScriptToAsmStr(coin.out.scriptPubKey) + "\nvs:\n"+
649 [ # # # # ]: 0 : ScriptToAsmStr(scriptPubKey);
650 [ # # ]: 0 : throw std::runtime_error(err);
651 : 0 : }
652 : 5 : Coin newcoin;
653 : 5 : newcoin.out.scriptPubKey = scriptPubKey;
654 : 5 : newcoin.out.nValue = MAX_MONEY;
655 [ + - + + ]: 10 : if (prevOut.exists("amount")) {
656 [ + - + - : 1 : newcoin.out.nValue = AmountFromValue(prevOut["amount"]);
+ - ]
657 : : }
658 : 5 : newcoin.nHeight = 1;
659 [ + - ]: 5 : view.AddCoin(out, std::move(newcoin), true);
660 : 0 : }
661 : :
662 : : // if redeemScript given and private keys given,
663 : : // add redeemScript to the tempKeystore so it can be signed:
664 [ + - + - : 5 : if ((scriptPubKey.IsPayToScriptHash() || scriptPubKey.IsPayToWitnessScriptHash()) &&
+ - - + -
- - + ]
665 [ # # # # : 0 : prevOut.exists("redeemScript")) {
# # ]
666 [ # # # # : 0 : UniValue v = prevOut["redeemScript"];
# # ]
667 [ # # # # ]: 0 : std::vector<unsigned char> rsData(ParseHexUV(v, "redeemScript"));
668 : 0 : CScript redeemScript(rsData.begin(), rsData.end());
669 [ # # ]: 0 : tempKeystore.AddCScript(redeemScript);
670 : 0 : }
671 : 9 : }
672 : : }
673 : :
674 : 5 : const FillableSigningProvider& keystore = tempKeystore;
675 : :
676 : 5 : bool fHashSingle = ((nHashType & ~SIGHASH_ANYONECANPAY) == SIGHASH_SINGLE);
677 : :
678 : : // Sign what we can:
679 [ + + ]: 9 : for (unsigned int i = 0; i < mergedTx.vin.size(); i++) {
680 [ + - ]: 5 : CTxIn& txin = mergedTx.vin[i];
681 [ + - ]: 5 : const Coin& coin = view.AccessCoin(txin.prevout);
682 [ - + ]: 5 : if (coin.IsSpent()) {
683 : 0 : continue;
684 : : }
685 : 5 : const CScript& prevPubKey = coin.out.scriptPubKey;
686 : 5 : const CAmount& amount = coin.out.nValue;
687 : :
688 [ + - ]: 5 : SignatureData sigdata = DataFromTransaction(mergedTx, i, coin.out);
689 : : // Only sign SIGHASH_SINGLE if there's a corresponding output:
690 [ - + - - ]: 5 : if (!fHashSingle || (i < mergedTx.vout.size()))
691 [ + - + - ]: 5 : ProduceSignature(keystore, MutableTransactionSignatureCreator(mergedTx, i, amount, nHashType), prevPubKey, sigdata);
692 : :
693 [ + + + + ]: 5 : if (amount == MAX_MONEY && !sigdata.scriptWitness.IsNull()) {
694 [ + - + - : 3 : throw std::runtime_error(strprintf("Missing amount for CTxOut with scriptPubKey=%s", HexStr(prevPubKey)));
+ - + - ]
695 : : }
696 : :
697 [ + - ]: 4 : UpdateInput(txin, sigdata);
698 : 5 : }
699 : :
700 [ + - ]: 4 : tx = mergedTx;
701 [ + - + - : 51 : }
- + - - ]
702 : :
703 : 181 : static void MutateTx(CMutableTransaction& tx, const std::string& command,
704 : : const std::string& commandVal)
705 : : {
706 : 181 : std::unique_ptr<ECC_Context> ecc;
707 : :
708 [ + + ]: 181 : if (command == "nversion")
709 [ + + ]: 28 : MutateTxVersion(tx, commandVal);
710 [ + + ]: 153 : else if (command == "locktime")
711 [ + + ]: 3 : MutateTxLocktime(tx, commandVal);
712 [ + + ]: 150 : else if (command == "replaceable") {
713 [ + + ]: 8 : MutateTxRBFOptIn(tx, commandVal);
714 : : }
715 : :
716 [ + + ]: 142 : else if (command == "delin")
717 [ + + ]: 4 : MutateTxDelInput(tx, commandVal);
718 [ + + ]: 138 : else if (command == "in")
719 [ + + ]: 45 : MutateTxAddInput(tx, commandVal);
720 : :
721 [ + + ]: 93 : else if (command == "delout")
722 [ + + ]: 4 : MutateTxDelOutput(tx, commandVal);
723 [ + + ]: 89 : else if (command == "outaddr")
724 [ + + ]: 17 : MutateTxAddOutAddr(tx, commandVal);
725 [ + + ]: 72 : else if (command == "outpubkey") {
726 [ + - + - : 9 : ecc.reset(new ECC_Context());
- + ]
727 [ + + ]: 9 : MutateTxAddOutPubKey(tx, commandVal);
728 [ + + ]: 63 : } else if (command == "outmultisig") {
729 [ + - + - : 12 : ecc.reset(new ECC_Context());
- + ]
730 [ + + ]: 12 : MutateTxAddOutMultiSig(tx, commandVal);
731 [ + + ]: 51 : } else if (command == "outscript")
732 [ + + ]: 18 : MutateTxAddOutScript(tx, commandVal);
733 [ + + ]: 33 : else if (command == "outdata")
734 [ + + ]: 6 : MutateTxAddOutData(tx, commandVal);
735 : :
736 [ + + ]: 27 : else if (command == "sign") {
737 [ + - + - : 9 : ecc.reset(new ECC_Context());
- + ]
738 [ + + ]: 9 : MutateTxSign(tx, commandVal);
739 : : }
740 : :
741 [ - + ]: 18 : else if (command == "load")
742 [ # # ]: 0 : RegisterLoad(commandVal);
743 : :
744 [ + - ]: 18 : else if (command == "set")
745 [ + - ]: 18 : RegisterSet(commandVal);
746 : :
747 : : else
748 [ # # ]: 0 : throw std::runtime_error("unknown command");
749 : 181 : }
750 : :
751 : 26 : static void OutputTxJSON(const CTransaction& tx)
752 : : {
753 : 26 : UniValue entry(UniValue::VOBJ);
754 [ + - ]: 26 : TxToUniv(tx, /*block_hash=*/uint256(), entry);
755 : :
756 [ + - ]: 26 : std::string jsonOutput = entry.write(4);
757 [ + - ]: 26 : tfm::format(std::cout, "%s\n", jsonOutput);
758 : 26 : }
759 : :
760 : 0 : static void OutputTxHash(const CTransaction& tx)
761 : : {
762 : 0 : std::string strHexHash = tx.GetHash().GetHex(); // the hex-encoded transaction hash (aka the transaction id)
763 : :
764 [ # # ]: 0 : tfm::format(std::cout, "%s\n", strHexHash);
765 : 0 : }
766 : :
767 : 34 : static void OutputTxHex(const CTransaction& tx)
768 : : {
769 : 34 : std::string strHex = EncodeHexTx(tx);
770 : :
771 [ + - ]: 34 : tfm::format(std::cout, "%s\n", strHex);
772 : 34 : }
773 : :
774 : 60 : static void OutputTx(const CTransaction& tx)
775 : : {
776 [ + - + + ]: 60 : if (gArgs.GetBoolArg("-json", false))
777 : 26 : OutputTxJSON(tx);
778 [ + - - + ]: 34 : else if (gArgs.GetBoolArg("-txid", false))
779 : 0 : OutputTxHash(tx);
780 : : else
781 : 34 : OutputTxHex(tx);
782 : 60 : }
783 : :
784 : 12 : static std::string readStdin()
785 : : {
786 : 12 : char buf[4096];
787 : 12 : std::string ret;
788 : :
789 [ + - ]: 22 : while (!feof(stdin)) {
790 [ + - ]: 22 : size_t bread = fread(buf, 1, sizeof(buf), stdin);
791 [ + - ]: 22 : ret.append(buf, bread);
792 [ + + ]: 22 : if (bread < sizeof(buf))
793 : : break;
794 : : }
795 : :
796 [ - + ]: 12 : if (ferror(stdin))
797 [ # # ]: 0 : throw std::runtime_error("error reading stdin");
798 : :
799 [ + - ]: 12 : return TrimString(ret);
800 : 12 : }
801 : :
802 : 98 : static int CommandLineRawTx(int argc, char* argv[])
803 : : {
804 : 98 : std::string strPrint;
805 : 98 : int nRet = 0;
806 : 98 : try {
807 : : // Skip switches; Permit common stdin convention "-"
808 [ + + + + ]: 208 : while (argc > 1 && IsSwitchChar(argv[1][0]) &&
809 [ + + ]: 122 : (argv[1][1] != 0)) {
810 : 110 : argc--;
811 : 110 : argv++;
812 : : }
813 : :
814 [ + - ]: 98 : CMutableTransaction tx;
815 : 98 : int startArg;
816 : :
817 [ + + ]: 98 : if (!fCreateBlank) {
818 : : // require at least one param
819 [ - + ]: 16 : if (argc < 2)
820 [ # # ]: 0 : throw std::runtime_error("too few parameters");
821 : :
822 : : // param: hex-encoded bitcoin transaction
823 [ + - ]: 16 : std::string strHexTx(argv[1]);
824 [ + + ]: 16 : if (strHexTx == "-") // "-" implies standard input
825 [ + - ]: 12 : strHexTx = readStdin();
826 : :
827 [ + - - + ]: 16 : if (!DecodeHexTx(tx, strHexTx, true))
828 [ # # ]: 0 : throw std::runtime_error("invalid transaction encoding");
829 : :
830 : 16 : startArg = 2;
831 : 16 : } else
832 : : startArg = 1;
833 : :
834 [ + + ]: 241 : for (int i = startArg; i < argc; i++) {
835 [ + - ]: 181 : std::string arg = argv[i];
836 [ - + ]: 181 : std::string key, value;
837 : 181 : size_t eqpos = arg.find('=');
838 [ - + ]: 181 : if (eqpos == std::string::npos)
839 [ # # ]: 0 : key = arg;
840 : : else {
841 [ + - ]: 181 : key = arg.substr(0, eqpos);
842 [ + - ]: 181 : value = arg.substr(eqpos + 1);
843 : : }
844 : :
845 [ + + ]: 181 : MutateTx(tx, key, value);
846 : 257 : }
847 : :
848 [ + - + - ]: 120 : OutputTx(CTransaction(tx));
849 : 98 : }
850 [ + - ]: 38 : catch (const std::exception& e) {
851 [ + - ]: 76 : strPrint = std::string("error: ") + e.what();
852 : 38 : nRet = EXIT_FAILURE;
853 : 38 : }
854 : 0 : catch (...) {
855 [ - - ]: 0 : PrintExceptionContinue(nullptr, "CommandLineRawTx()");
856 : 0 : throw;
857 : 0 : }
858 : :
859 [ + + ]: 98 : if (strPrint != "") {
860 [ + - + - ]: 76 : tfm::format(nRet == 0 ? std::cout : std::cerr, "%s\n", strPrint);
861 : : }
862 : 98 : return nRet;
863 : 98 : }
864 : :
865 : 98 : MAIN_FUNCTION
866 : : {
867 : 98 : SetupEnvironment();
868 : :
869 : 98 : try {
870 [ + - ]: 98 : int ret = AppInitRawTx(argc, argv);
871 [ + - ]: 98 : if (ret != CONTINUE_EXECUTION)
872 : : return ret;
873 : : }
874 [ - - ]: 0 : catch (const std::exception& e) {
875 [ - - ]: 0 : PrintExceptionContinue(&e, "AppInitRawTx()");
876 : 0 : return EXIT_FAILURE;
877 : 0 : } catch (...) {
878 [ - - ]: 0 : PrintExceptionContinue(nullptr, "AppInitRawTx()");
879 : 0 : return EXIT_FAILURE;
880 : 0 : }
881 : :
882 : 98 : int ret = EXIT_FAILURE;
883 : 98 : try {
884 [ + - ]: 98 : ret = CommandLineRawTx(argc, argv);
885 : : }
886 [ - - ]: 0 : catch (const std::exception& e) {
887 [ - - ]: 0 : PrintExceptionContinue(&e, "CommandLineRawTx()");
888 : 0 : } catch (...) {
889 [ - - ]: 0 : PrintExceptionContinue(nullptr, "CommandLineRawTx()");
890 : 0 : }
891 : : return ret;
892 : : }
|