Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Commit b819e8a

Browse files
committed
f Prettify docs
1 parent 4979de3 commit b819e8a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

client/src/client_sync/v28/raw_transactions.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ macro_rules! impl_client_v28__submitpackage {
1818
///
1919
/// The package will be validated according to consensus and mempool policy rules. If any transaction passes, it will be accepted to mempool.
2020
///
21-
/// Arguments:
22-
/// 1. package An array of raw transactions.
21+
/// ## Arguments:
22+
/// 1. `package`: An array of raw transactions.
2323
/// The package must solely consist of a child and its parents. None of the parents may depend on each other.
2424
/// The package must be topologically sorted, with the child being the last element in the array.
25-
/// 2. maxfeerate Reject transactions whose fee rate is higher than the specified value.
25+
/// 2. `maxfeerate`: Reject transactions whose fee rate is higher than the specified value.
2626
/// Fee rates larger than 1BTC/kvB are rejected.
2727
/// Set to 0 to accept any fee rate.
2828
/// If unset, will default to 0.10 BTC/kvb.
29-
/// 3. maxburnamount If set, reject transactions with provably unspendable outputs (e.g. 'datacarrier' outputs that use the OP_RETURN opcode) greater than the specified value.
29+
/// 3. `maxburnamount` If set, reject transactions with provably unspendable outputs (e.g. 'datacarrier' outputs that use the OP_RETURN opcode) greater than the specified value.
3030
/// If burning funds through unspendable outputs is desired, increase this value.
3131
/// This check is based on heuristics and does not guarantee spendability of outputs.
3232
pub fn submit_package(

0 commit comments

Comments
 (0)