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
An array of raw transactions as hexadecimal strings.
553
+
554
+
*verbose*
555
+
556
+
Whether a verbose coin-specific response is required.
557
+
558
+
**Result**
559
+
560
+
If *verbose* is :const:`false`:
561
+
562
+
The package_msg and replaced_txs, a list of txids of replaced transactions.
563
+
564
+
If *verbose* is :const:`true`:
565
+
566
+
The Bitcoin Core daemon result according to its RPC API documentation.
567
+
568
+
**Result Example**
569
+
570
+
When *verbose* is :const:`false`::
571
+
572
+
{
573
+
"package_msg": "success",
574
+
"replaced-transactions": []
575
+
}
576
+
577
+
When *verbose* is :const:`true`::
578
+
579
+
{ (json object)
580
+
"package_msg" : "str", (string) The transaction package result message. "success" indicates all transactions were accepted into or are already in the mempool.
581
+
"tx-results" : { (json object) transaction results keyed by wtxid
582
+
"wtxid" : { (json object) transaction wtxid
583
+
"txid" : "hex", (string) The transaction hash in hex
584
+
"other-wtxid" : "hex", (string, optional) The wtxid of a different transaction with the same txid but different witness found in the mempool. This means the submitted transaction was ignored.
585
+
"vsize" : n, (numeric, optional) Sigops-adjusted virtual transaction size.
"effective-feerate" : n, (numeric, optional) if the transaction was not already in the mempool, the effective feerate in BTC per KvB. For example, the package feerate and/or feerate with modified fees from prioritisetransaction.
589
+
"effective-includes" : [ (json array, optional) if effective-feerate is provided, the wtxids of the transactions whose fees and vsizes are included in effective-feerate.
590
+
"hex", (string) transaction wtxid in hex
591
+
...
592
+
]
593
+
},
594
+
"error" : "str" (string, optional) The transaction error string, if it was rejected by the mempool
595
+
},
596
+
...
597
+
},
598
+
"replaced-transactions" : [ (json array, optional) List of txids of replaced transactions
0 commit comments