From 0dde8110a5cc74c0605092cb36160ab124bd88a8 Mon Sep 17 00:00:00 2001 From: Rob Walworth Date: Wed, 15 May 2024 12:48:46 -0500 Subject: [PATCH] docs: use signerKey to specify when any additional keys should sign a transaction Signed-off-by: Rob Walworth --- .../crypto-service/accountCreateTransaction.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test-specifications/crypto-service/accountCreateTransaction.md b/test-specifications/crypto-service/accountCreateTransaction.md index bd49de94..93d5ffcd 100644 --- a/test-specifications/crypto-service/accountCreateTransaction.md +++ b/test-specifications/crypto-service/accountCreateTransaction.md @@ -136,11 +136,11 @@ https://docs.hedera.com/hedera/sdks-and-apis/rest-api - If true, this account's key must sign any transaction depositing into this account (in addition to all withdrawals). -| Test no | Name | Input | Expected response | Implemented (Y/N) | -|---------|--------------------------------------------------------------------------------------------|----------------------------------------------------------|--------------------------------------------------------------------------------------|-------------------| -| 1 | Creates an account that requires a receiving signature | key=, receiverSignatureRequired=true | The account creation succeeds and the account requires a receiving signature. | N | -| 2 | Creates an account that doesn't require a receiving signature | key=, receiverSignatureRequired=false | The account creation succeeds and the account doesn't require a receiving signature. | N | -| 3 | Creates an account that requires a receiving signature but isn't signed by the account key | key=, receiverSignatureRequired=true | The account creation fails with an INVALID_SIGNATURE response code from the network. | N | +| Test no | Name | Input | Expected response | Implemented (Y/N) | +|---------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|-------------------| +| 1 | Creates an account that requires a receiving signature | key=, receiverSignatureRequired=true, signerKey= | The account creation succeeds and the account requires a receiving signature. | N | +| 2 | Creates an account that doesn't require a receiving signature | key=, receiverSignatureRequired=false | The account creation succeeds and the account doesn't require a receiving signature. | N | +| 3 | Creates an account that requires a receiving signature but isn't signed by the account key | key=, receiverSignatureRequired=true | The account creation fails with an INVALID_SIGNATURE response code from the network. | N | #### JSON Request Example @@ -351,14 +351,14 @@ https://docs.hedera.com/hedera/sdks-and-apis/rest-api } ``` -### **Decline rewards:** +### **Decline Reward:** - If true, the account declines receiving a staking reward. | Test no | Name | Input | Expected response | Implemented (Y/N) | |---------|---------------------------------------------------------|----------------------------------------------|--------------------------------------------------------------------------------|-------------------| | 1 | Creates an account that declines staking rewards | key=, declineStakingRewards=true | The account creation succeeds and the account declines staking rewards. | N | -| 1 | Creates an account that doesn't decline staking rewards | key=, declineStakingRewards=false | The account creation succeeds and the account doesn't decline staking rewards. | N | +| 2 | Creates an account that doesn't decline staking rewards | key=, declineStakingRewards=false | The account creation succeeds and the account doesn't decline staking rewards. | N | #### JSON Request Example