Skip to content

Commit

Permalink
Merge pull request #131 from Bitcoin-com/stage
Browse files Browse the repository at this point in the history
V2 Raw Transactions
  • Loading branch information
cgcardona authored Nov 20, 2018
2 parents 7fbc988 + 1f35337 commit c59b6c3
Show file tree
Hide file tree
Showing 11 changed files with 570 additions and 187 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ More info: [developer.bitcoin.com](https://developer.bitcoin.com). Chatroom [htt
Testnet available at [trest.bitcoin.com](https://trest.bitcoin.com)

## Usage
You can also run an instance of REST for your own full node
You can also run an instance of REST for your own full node.

### Prerequesites

Expand Down
2 changes: 1 addition & 1 deletion dist/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ app.use("/" + v2prefix + "/" + "control", controlV2.router);
app.use("/" + v2prefix + "/" + "generating", generatingV2);
app.use("/" + v2prefix + "/" + "mining", miningV2);
app.use("/" + v2prefix + "/" + "network", networkV2);
app.use("/" + v2prefix + "/" + "rawtransactions", rawtransactionsV2);
app.use("/" + v2prefix + "/" + "rawtransactions", rawtransactionsV2.router);
app.use("/" + v2prefix + "/" + "transaction", transactionV2);
app.use("/" + v2prefix + "/" + "util", utilV2);
app.use("/" + v2prefix + "/" + "dataRetrieval", dataRetrievalV2.router);
Expand Down
2 changes: 1 addition & 1 deletion src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ app.use(`/${v2prefix}/` + `control`, controlV2.router)
app.use(`/${v2prefix}/` + `generating`, generatingV2)
app.use(`/${v2prefix}/` + `mining`, miningV2)
app.use(`/${v2prefix}/` + `network`, networkV2)
app.use(`/${v2prefix}/` + `rawtransactions`, rawtransactionsV2)
app.use(`/${v2prefix}/` + `rawtransactions`, rawtransactionsV2.router)
app.use(`/${v2prefix}/` + `transaction`, transactionV2)
app.use(`/${v2prefix}/` + `util`, utilV2)
app.use(`/${v2prefix}/` + `dataRetrieval`, dataRetrievalV2.router)
Expand Down
Loading

0 comments on commit c59b6c3

Please sign in to comment.