Skip to content

Commit 31c0a59

Browse files
authored
Merge branch 'main' into main
2 parents 723076b + 645ac0a commit 31c0a59

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

doc-site/docs/reference/firefly_interface_format.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ For example, the Ethereum plugin always needs to know what Solidity type the fie
9898

9999
## Automated generation of FireFly Interfaces
100100

101-
A convenience endpoint exists on the API to facilitate converting from native blockchain interface formats such as an Ethereum ABI to the FireFly Interface format. For details, please see the <a href="/swagger/#/Default%20Namespace/postGenerateContractInterface" data-proofer-ignore>API documentation for the contract interface generation endpoint</a>.
101+
A convenience endpoint exists on the API to facilitate converting from native blockchain interface formats such as an Ethereum ABI to the FireFly Interface format. For details, please see the <a href="../../swagger/#/Default%20Namespace/postGenerateContractInterface" data-proofer-ignore>API documentation for the contract interface generation endpoint</a>.
102102

103103
For an example of using this endpoint with a specific Ethereum contract, please see the [Tutorial to Work with custom smart contracts](../tutorials/custom_contracts/index.md).
104104

doc-site/docs/tutorials/broadcast_data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ title: Broadcast data
2020
## Additional info
2121

2222
- Key Concepts: [Broadcast / shared data](../overview/multiparty/broadcast.md)
23-
- Swagger Reference: <a href="/swagger/#/Default%20Namespace/postNewMessageBroadcast" data-proofer-ignore>POST /api/v1/namespaces/{ns}/messages/broadcast</a>
23+
- Swagger Reference: <a href="../../swagger/#/Default%20Namespace/postNewMessageBroadcast" data-proofer-ignore>POST /api/v1/namespaces/{ns}/messages/broadcast</a>
2424

2525
## Example 1: Inline string data
2626

doc-site/docs/tutorials/create_custom_identity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Out of the box, a FireFly Supernode contains both an `org` and a `node` identity
1111
## Additional info
1212

1313
- Reference: [Identities](../reference/identities.md)
14-
- Swagger: <a href="/swagger/#/Default%20Namespace/postNewIdentity" data-proofer-ignore>POST /api/v1/identities</a>
14+
- Swagger: <a href="../../swagger/#/Default%20Namespace/postNewIdentity" data-proofer-ignore>POST /api/v1/identities</a>
1515

1616
## Previous steps: Start your environment
1717

doc-site/docs/tutorials/define_datatype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ of datatypes, as is used to broadcast the data itself.
2020
## Additional info
2121

2222
- Key Concepts: [Broadcast / shared data](../overview/multiparty/broadcast.md)
23-
- Swagger: <a href="/swagger/#/Default%20Namespace/postNewDatatype" data-proofer-ignore>POST /api/v1/namespaces/{ns}/datatypes</a>
23+
- Swagger: <a href="../../swagger/#/Default%20Namespace/postNewDatatype" data-proofer-ignore>POST /api/v1/namespaces/{ns}/datatypes</a>
2424

2525
### Example 1: Broadcast new datatype
2626

doc-site/docs/tutorials/private_send.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ title: Privately send data
3737
## Additional info
3838

3939
- Key Concepts: [Private data exchange](../overview/multiparty/data_exchange.md)
40-
- Swagger: <a href="/swagger/#/Default%20Namespace/postNewMessagePrivate" data-proofer-ignore>POST /api/v1/namespaces/{ns}/messages/private</a>
40+
- Swagger: <a href="../../swagger/#/Default%20Namespace/postNewMessagePrivate" data-proofer-ignore>POST /api/v1/namespaces/{ns}/messages/private</a>
4141

4242
## Example 1: Pinned private send of in-line string data
4343

doc-site/docs/tutorials/query_messages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This builds on the APIs to query and filter messages, described below
1717
## Additional info
1818

1919
- Reference: [API Query Syntax](../reference/api_query_syntax.md)
20-
- Swagger: <a href="/swagger/#/Default%20Namespace/getMsgs" data-proofer-ignore>GET /api/v1/namespaces/{ns}/messages</a>
20+
- Swagger: <a href="../../swagger/#/Default%20Namespace/getMsgs" data-proofer-ignore>GET /api/v1/namespaces/{ns}/messages</a>
2121

2222
### Example 1: Query confirmed messages
2323

internal/txcommon/txcommon.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ func (t *transactionHelper) SubmitNewTransaction(ctx context.Context, txType cor
146146
return tx.ID, nil
147147
}
148148

149-
// SubmitTransactionBatch is called to do a batch insertion of a set of transactions, and returns an array of the transaction
149+
// SubmitNewTransactionBatch is called to do a batch insertion of a set of transactions, and returns an array of the transaction
150150
// result. Each is either a transaction, or an idempotency failure. The overall action fails for DB errors other than idempotency.
151151
func (t *transactionHelper) SubmitNewTransactionBatch(ctx context.Context, namespace string, batch []*BatchedTransactionInsert) error {
152152

0 commit comments

Comments
 (0)