You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"\nCreate a transaction spending the given inputs and creating new outputs.\n"
342
-
"Outputs can be addresses or data.\n"
343
-
"Returns hex-encoded raw transaction.\n"
344
-
"Note that the transaction's inputs are not signed, and\n"
345
-
"it is not stored in the wallet or transmitted to the network.\n"
346
-
347
-
"\nArguments:\n"
348
-
"1. \"inputs\" (array, required) A json array of json objects\n"
349
-
" [\n"
350
-
" {\n"
351
-
"\"txid\":\"id\", (string, required) The transaction id\n"
352
-
"\"vout\":n, (numeric, required) The output number\n"
353
-
"\"sequence\":n (numeric, optional) The sequence number\n"
354
-
" } \n"
355
-
" ,...\n"
356
-
" ]\n"
357
-
"2. \"outputs\" (array, required) a json array with outputs (key-value pairs)\n"
358
-
" [\n"
359
-
" {\n"
360
-
"\"address\": x.xxx, (obj, optional) A key-value pair. The key (string) is the bitcoin address, the value (float or string) is the amount in " + CURRENCY_UNIT + "\n"
361
-
" },\n"
362
-
" {\n"
363
-
"\"data\": \"hex\" (obj, optional) A key-value pair. The key must be \"data\", the value is hex encoded data\n"
364
-
" }\n"
365
-
" ,... More key-value pairs of the above form. For compatibility reasons, a dictionary, which holds the key-value pairs directly, is also\n"
366
-
" accepted as second parameter.\n"
367
-
" ]\n"
368
-
"3. locktime (numeric, optional, default=0) Raw locktime. Non-0 value also locktime-activates inputs\n"
369
-
"4. replaceable (boolean, optional, default=false) Marks this transaction as BIP125 replaceable.\n"
370
-
" Allows this transaction to be replaced by a transaction with higher fees. If provided, it is an error if explicit sequence numbers are incompatible.\n"
371
-
"\nResult:\n"
372
-
"\"transaction\" (string) hex string of the transaction\n"
"\nCreate a transaction spending the given inputs and creating new outputs.\n"
447
+
"Outputs can be addresses or data.\n"
448
+
"Returns hex-encoded raw transaction.\n"
449
+
"Note that the transaction's inputs are not signed, and\n"
450
+
"it is not stored in the wallet or transmitted to the network.\n"
451
+
452
+
"\nArguments:\n"
453
+
"1. \"inputs\" (array, required) A json array of json objects\n"
454
+
" [\n"
455
+
" {\n"
456
+
"\"txid\":\"id\", (string, required) The transaction id\n"
457
+
"\"vout\":n, (numeric, required) The output number\n"
458
+
"\"sequence\":n (numeric, optional) The sequence number\n"
459
+
" } \n"
460
+
" ,...\n"
461
+
" ]\n"
462
+
"2. \"outputs\" (array, required) a json array with outputs (key-value pairs)\n"
463
+
" [\n"
464
+
" {\n"
465
+
"\"address\": x.xxx, (obj, optional) A key-value pair. The key (string) is the bitcoin address, the value (float or string) is the amount in " + CURRENCY_UNIT + "\n"
466
+
" },\n"
467
+
" {\n"
468
+
"\"data\": \"hex\" (obj, optional) A key-value pair. The key must be \"data\", the value is hex encoded data\n"
469
+
" }\n"
470
+
" ,... More key-value pairs of the above form. For compatibility reasons, a dictionary, which holds the key-value pairs directly, is also\n"
471
+
" accepted as second parameter.\n"
472
+
" ]\n"
473
+
"3. locktime (numeric, optional, default=0) Raw locktime. Non-0 value also locktime-activates inputs\n"
474
+
"4. replaceable (boolean, optional, default=false) Marks this transaction as BIP125 replaceable.\n"
475
+
" Allows this transaction to be replaced by a transaction with higher fees. If provided, it is an error if explicit sequence numbers are incompatible.\n"
476
+
"\nResult:\n"
477
+
"\"transaction\" (string) hex string of the transaction\n"
0 commit comments