diff --git a/src/SUMMARY.md b/src/SUMMARY.md index f28ca59..40f90cd 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -41,8 +41,8 @@ - [sudo_sessionKeys]() - [sudo_sessionKeys_unstable_generate](api/sudo_sessionKeys_unstable_generate.md) - [transaction](api/transaction.md) - - [transaction_unstable_broadcast](api/transaction_unstable_broadcast.md) - - [transaction_unstable_stop](api/transaction_unstable_stop.md) + - [transaction_v1_broadcast](api/transaction_v1_broadcast.md) + - [transaction_v1_stop](api/transaction_v1_stop.md) - [transactionWatch](api/transactionWatch.md) - [transactionWatch_unstable_submitAndWatch](api/transactionWatch_unstable_submitAndWatch.md) - [transactionWatch_unstable_unwatch](api/transactionWatch_unstable_unwatch.md) diff --git a/src/api/transaction_unstable_broadcast.md b/src/api/transaction_v1_broadcast.md similarity index 93% rename from src/api/transaction_unstable_broadcast.md rename to src/api/transaction_v1_broadcast.md index ad407ba..594704b 100644 --- a/src/api/transaction_unstable_broadcast.md +++ b/src/api/transaction_v1_broadcast.md @@ -1,4 +1,4 @@ -# transaction_unstable_broadcast +# transaction_v1_broadcast **Parameters**: @@ -8,7 +8,7 @@ The string returned by this function is opaque and its meaning can't be interpreted by the JSON-RPC client. -Once this function has been called, the JSON-RPC server will try to propagate this transaction over the peer-to-peer network until `transaction_unstable_stop` is called. +Once this function has been called, the JSON-RPC server will try to propagate this transaction over the peer-to-peer network until `transaction_v1_stop` is called. The JSON-RPC server must allow at least 4 transactions being broadcasted at the same time per JSON-RPC client. Any attempt to broadcast more than 4 transactions simultaneously might result in `null` being returned. diff --git a/src/api/transaction_unstable_stop.md b/src/api/transaction_v1_stop.md similarity index 69% rename from src/api/transaction_unstable_stop.md rename to src/api/transaction_v1_stop.md index 81364b2..50a3f45 100644 --- a/src/api/transaction_unstable_stop.md +++ b/src/api/transaction_v1_stop.md @@ -1,8 +1,8 @@ -# transaction_unstable_stop +# transaction_v1_stop **Parameters**: -- `operationId`: Opaque string equal to the value returned by `transaction_unstable_broadcast` +- `operationId`: Opaque string equal to the value returned by `transaction_v1_broadcast` **Return value**: *null* @@ -10,4 +10,4 @@ The node will no longer try to broadcast the transaction over the peer-to-peer n ## Possible errors -A JSON-RPC error is generated if the `operationId` doesn't correspond to any active `transaction_unstable_broadcast` operation. +A JSON-RPC error is generated if the `operationId` doesn't correspond to any active `transaction_v1_broadcast` operation.