mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-01 08:51:08 +03:00
Fix doc dump_stored_tx -> retrieve_stored_tx (#2329)
It appears the method call in https://github.com/mimblewimble/grin/blob/master/wallet/src/controller.rs got renamed for consistency and this got missed.
This commit is contained in:
parent
ea4407a919
commit
4eeedb0877
1 changed files with 4 additions and 4 deletions
|
@ -7,7 +7,7 @@
|
|||
1. [GET Retrieve Summary Info](#get-retrieve-summary-info)
|
||||
1. [GET Node Height](#get-node-height)
|
||||
1. [GET Retrieve Txs](#get-retrieve-txs)
|
||||
1. [GET Dump Stored Tx](#get-dump-stored-tx)
|
||||
1. [GET Retrieve Stored Tx](#get-retrieve-stored-tx)
|
||||
1. [POST Issue Send Tx](#post-issue-send-tx)
|
||||
1. [POST Finalize Tx](#post-finalize-tx)
|
||||
1. [POST Cancel Tx](#post-cancel-tx)
|
||||
|
@ -253,13 +253,13 @@ Return whether the outputs were validated against a node and an array of TxLogEn
|
|||
});
|
||||
```
|
||||
|
||||
### GET Dump Stored Tx
|
||||
### GET Retrieve Stored Tx
|
||||
|
||||
Retrieves a given transaction.
|
||||
|
||||
* **URL**
|
||||
|
||||
/v1/wallet/owner/dump_stored_tx?id=x
|
||||
/v1/wallet/owner/retrieve_stored_tx?id=x
|
||||
|
||||
* **Method:**
|
||||
|
||||
|
@ -309,7 +309,7 @@ Retrieves a given transaction.
|
|||
|
||||
```javascript
|
||||
$.ajax({
|
||||
url: "/v1/wallet/owner/dump_stored_tx?id=13",
|
||||
url: "/v1/wallet/owner/retrieve_stored_tx?id=13",
|
||||
dataType: "json",
|
||||
type : "GET",
|
||||
success : function(r) {
|
||||
|
|
Loading…
Reference in a new issue