From 1d19b61c384980da501916fd2d9bb8c04b1fc8b3 Mon Sep 17 00:00:00 2001 From: Nicolas MASSART Date: Thu, 20 Jan 2022 10:34:21 +0100 Subject: [PATCH] update to new goquorum doc (#129) --- docs/HowTo/Transactions/Make-Transactions.md | 2 +- docs/Reference/API-Methods.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/HowTo/Transactions/Make-Transactions.md b/docs/HowTo/Transactions/Make-Transactions.md index e907a48..82da672 100644 --- a/docs/HowTo/Transactions/Make-Transactions.md +++ b/docs/HowTo/Transactions/Make-Transactions.md @@ -16,6 +16,6 @@ and [`eth_sendTransaction`](../../Reference/API-Methods.md#eth_sendtransaction) requires a signing key. Signing keys can be [stored externally or locally](../../Concepts/Overview.md). !!! note - If using EthSigner with [GoQuorum](https://docs.goquorum.consensys.net) for public transactions + If using EthSigner with [GoQuorum](https://consensys.net/docs/goquorum/) for public transactions (that is, using [`eth_sendTransaction`](../../Reference/API-Methods.md#eth_sendtransaction)), the nonce must be specified. diff --git a/docs/Reference/API-Methods.md b/docs/Reference/API-Methods.md index 83aad67..78e30d6 100644 --- a/docs/Reference/API-Methods.md +++ b/docs/Reference/API-Methods.md @@ -130,7 +130,7 @@ Transaction object: | **to** | Data, 20 bytes | Optional for contract creation | Address of the receiver. `null` if a contract creation transaction. | | **gas** | Quantity | Optional | Gas provided by the sender. Default is `90000`. | | **gasPrice** | Quantity | Optional | Gas price provided by the sender in Wei. Default is `0`. | -| **nonce** | Quantity | Optional | Number of transactions made by the sender before this one. Must be specified if using [GoQuorum](https://docs.goquorum.consensys.net/). | +| **nonce** | Quantity | Optional | Number of transactions made by the sender before this one. Must be specified if using [GoQuorum](https://consensys.net/docs/goquorum/). | | **value** | Quantity | Optional | Value transferred in Wei. | | **data** | Quantity | Optional | Compiled contract code or hash of the invoked method signature and encoded parameters. | @@ -211,7 +211,7 @@ Transaction object: | **to** | Data, 20 bytes | Optional for contract creation | Address of the receiver. `null` if a contract creation transaction. | | **gas** | Quantity | Optional | Gas provided by the sender. Default is `90000`. | | **gasPrice** | Quantity | Optional | Gas price provided by the sender in Wei. Default is `0`. | -| **nonce** | Quantity | Optional | Number of transactions made by the sender before this one. Must be specified if using [GoQuorum](https://docs.goquorum.consensys.net/). | +| **nonce** | Quantity | Optional | Number of transactions made by the sender before this one. Must be specified if using [GoQuorum](https://consensys.net/docs/goquorum/). | | **value** | Quantity | Optional | Value transferred in Wei. | | **data** | Quantity | Optional | Compiled contract code or hash of the invoked method signature and encoded parameters. |