Skip to content

Commit

Permalink
feat: automatic push to dev_guide from CI [tag=v1.6.0]
Browse files Browse the repository at this point in the history
  • Loading branch information
qed-it-deploy-1 committed Oct 1, 2019
1 parent a7a3c35 commit c27c2b6
Show file tree
Hide file tree
Showing 243 changed files with 2,056 additions and 775 deletions.
4 changes: 2 additions & 2 deletions go/examples/cmd/transferandread/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,15 @@ func main() {
if err != nil {
log.Fatal(err)
}
fmt.Printf("got an issue-tx with asset ID %d, amount %d and memo \"%s\"", txContent.AssetId, txContent.Amount, txContent.Memo)
fmt.Printf("got an issue-tx with asset ID %s, amount %d and memo \"%s\"", txContent.AssetId, txContent.Amount, txContent.Memo)

case "Transfer":
var txContent sdk.AnalyticTransferWalletTx
err := mapstructure.Decode(lastTx.Content, &txContent)
if err != nil {
log.Fatal(err)
}
fmt.Printf("got an transfer-tx with asset ID %d, amount %d and memo \"%s\"", txContent.AssetId, txContent.Amount, txContent.Memo)
fmt.Printf("got an transfer-tx with asset ID %s, amount %d and memo \"%s\"", txContent.AssetId, txContent.Amount, txContent.Memo)

}
}
2 changes: 1 addition & 1 deletion go/examples/cmd/walletbalances/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func main() {

for i := range balanceResponse.Assets {
assetBalance := balanceResponse.Assets[i]
fmt.Printf("asset %d has balance %d\n", assetBalance.AssetId, assetBalance.Amount)
fmt.Printf("asset %s has balance %d\n", assetBalance.AssetId, assetBalance.Amount)
}
}

Expand Down
10 changes: 7 additions & 3 deletions go/sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
## Overview
This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client.

- API version: 1.5.0
- API version: 1.6.0
- Package version: 1.1.0
- Build package: org.openapitools.codegen.languages.GoClientCodegen

Expand Down Expand Up @@ -33,7 +33,9 @@ Class | Method | HTTP request | Description
*AnalyticsApi* | [**AnalyticsGetNetworkActivityPost**](docs/AnalyticsApi.md#analyticsgetnetworkactivitypost) | **Post** /analytics/get_network_activity | Get details on past blocks either by order using start_index and number_of_results or by the tx_hashes of the transactions
*AnalyticsApi* | [**AnalyticsGetSyncStatusPost**](docs/AnalyticsApi.md#analyticsgetsyncstatuspost) | **Post** /analytics/get_sync_status | Get blockchain sync status information
*HealthApi* | [**HealthPost**](docs/HealthApi.md#healthpost) | **Post** /health | Perform a healthcheck of the node and its dependent services
*NodeApi* | [**NodeDeleteWalletPost**](docs/NodeApi.md#nodedeletewalletpost) | **Post** /node/delete_wallet | Delete a Wallet
*NodeApi* | [**NodeApproveTaskPost**](docs/NodeApi.md#nodeapprovetaskpost) | **Post** /node/approve_task | Approve task with pending incoming transaction [async call]
*NodeApi* | [**NodeCancelTaskPost**](docs/NodeApi.md#nodecanceltaskpost) | **Post** /node/cancel_task | Cancel task with pending incoming transaction both incoming and outgoing [async call]
*NodeApi* | [**NodeDeleteWalletPost**](docs/NodeApi.md#nodedeletewalletpost) | **Post** /node/delete_wallet | Delete a Wallet [async call]
*NodeApi* | [**NodeExportAuditorAccessWalletPost**](docs/NodeApi.md#nodeexportauditoraccesswalletpost) | **Post** /node/export_auditor_access_wallet | Export viewing credentials for a Wallet
*NodeApi* | [**NodeExportWalletPost**](docs/NodeApi.md#nodeexportwalletpost) | **Post** /node/export_wallet | Export wallet secret key
*NodeApi* | [**NodeGenerateWalletPost**](docs/NodeApi.md#nodegeneratewalletpost) | **Post** /node/generate_wallet | Generate a new Wallet
Expand Down Expand Up @@ -62,7 +64,6 @@ Class | Method | HTTP request | Description
- [AnalyticTransferWalletTx](docs/AnalyticTransferWalletTx.md)
- [AnalyticWalletMetadata](docs/AnalyticWalletMetadata.md)
- [AnalyticWalletTx](docs/AnalyticWalletTx.md)
- [AnalyticsAssetConverterProofDescription](docs/AnalyticsAssetConverterProofDescription.md)
- [AnalyticsConfidentialIssuanceDescription](docs/AnalyticsConfidentialIssuanceDescription.md)
- [AnalyticsIssueTx](docs/AnalyticsIssueTx.md)
- [AnalyticsMultiTransferTx](docs/AnalyticsMultiTransferTx.md)
Expand Down Expand Up @@ -112,6 +113,9 @@ Class | Method | HTTP request | Description
- [IssueAssetRequest](docs/IssueAssetRequest.md)
- [Result](docs/Result.md)
- [Rule](docs/Rule.md)
- [TaskActionRequest](docs/TaskActionRequest.md)
- [TaskData](docs/TaskData.md)
- [TaskState](docs/TaskState.md)
- [TaskType](docs/TaskType.md)
- [TransferAssetRequest](docs/TransferAssetRequest.md)
- [UnlockWalletRequest](docs/UnlockWalletRequest.md)
Expand Down
Loading

0 comments on commit c27c2b6

Please sign in to comment.