mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-01 17:01:09 +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 Retrieve Summary Info](#get-retrieve-summary-info)
|
||||||
1. [GET Node Height](#get-node-height)
|
1. [GET Node Height](#get-node-height)
|
||||||
1. [GET Retrieve Txs](#get-retrieve-txs)
|
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 Issue Send Tx](#post-issue-send-tx)
|
||||||
1. [POST Finalize Tx](#post-finalize-tx)
|
1. [POST Finalize Tx](#post-finalize-tx)
|
||||||
1. [POST Cancel Tx](#post-cancel-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.
|
Retrieves a given transaction.
|
||||||
|
|
||||||
* **URL**
|
* **URL**
|
||||||
|
|
||||||
/v1/wallet/owner/dump_stored_tx?id=x
|
/v1/wallet/owner/retrieve_stored_tx?id=x
|
||||||
|
|
||||||
* **Method:**
|
* **Method:**
|
||||||
|
|
||||||
|
@ -309,7 +309,7 @@ Retrieves a given transaction.
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: "/v1/wallet/owner/dump_stored_tx?id=13",
|
url: "/v1/wallet/owner/retrieve_stored_tx?id=13",
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
type : "GET",
|
type : "GET",
|
||||||
success : function(r) {
|
success : function(r) {
|
||||||
|
|
Loading…
Reference in a new issue