This commit is contained in:
Łukasz Magiera 2020-10-22 14:46:10 +02:00
parent 618fed75fe
commit 90ce1c018e

View File

@ -70,6 +70,9 @@
* [MinerCreateBlock](#MinerCreateBlock) * [MinerCreateBlock](#MinerCreateBlock)
* [MinerGetBaseInfo](#MinerGetBaseInfo) * [MinerGetBaseInfo](#MinerGetBaseInfo)
* [Mpool](#Mpool) * [Mpool](#Mpool)
* [MpoolBatchPush](#MpoolBatchPush)
* [MpoolBatchPushMessage](#MpoolBatchPushMessage)
* [MpoolBatchPushUntrusted](#MpoolBatchPushUntrusted)
* [MpoolClear](#MpoolClear) * [MpoolClear](#MpoolClear)
* [MpoolGetConfig](#MpoolGetConfig) * [MpoolGetConfig](#MpoolGetConfig)
* [MpoolGetNonce](#MpoolGetNonce) * [MpoolGetNonce](#MpoolGetNonce)
@ -1697,6 +1700,54 @@ The Mpool methods are for interacting with the message pool. The message pool
manages all incoming and outgoing 'messages' going over the network. manages all incoming and outgoing 'messages' going over the network.
### MpoolBatchPush
MpoolBatchPush batch pushes a signed message to mempool.
Perms: write
Inputs:
```json
[
null
]
```
Response: `null`
### MpoolBatchPushMessage
MpoolBatchPushMessage batch pushes a unsigned message to mempool.
Perms: sign
Inputs:
```json
[
null,
{
"MaxFee": "0"
}
]
```
Response: `null`
### MpoolBatchPushUntrusted
MpoolBatchPushUntrusted batch pushes a signed message to mempool from untrusted sources.
Perms: write
Inputs:
```json
[
null
]
```
Response: `null`
### MpoolClear ### MpoolClear
MpoolClear clears pending messages from the mpool MpoolClear clears pending messages from the mpool