From dd23e07e87f212d43048d4f66ab0b3f550b101ea Mon Sep 17 00:00:00 2001 From: danijelTxFusion Date: Fri, 17 May 2024 16:12:43 +0200 Subject: [PATCH] tmp --- content/sdk/11.go/08.smart-account-utils.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/content/sdk/11.go/08.smart-account-utils.md b/content/sdk/11.go/08.smart-account-utils.md index 54287154..c5e55935 100644 --- a/content/sdk/11.go/08.smart-account-utils.md +++ b/content/sdk/11.go/08.smart-account-utils.md @@ -148,12 +148,12 @@ The length of the resulting signature is `len(secret) * 65`. #### Inputs -| Parameter | Type | Description | -|------------|-----------------------|----------------------------------------| -| `ctx` | `context.Context` | Context. | -| `payload` | `[]byte` | The payload that needs to be signed. | -| `secret` | `[]string` | The list of the ECDSA private keys. | -| `client` | [`*clients.BaseClient`](/sdk/go/cients#baseclient) | Not used and should be `nil`. | +| Parameter | Type | Description | +|------------|-----------------------------------------------------|----------------------------------------| +| `ctx` | `context.Context` | Context. | +| `payload` | `[]byte` | The payload that needs to be signed. | +| `secret` | `[]string` | The list of the ECDSA private keys. | +| `client` | [`*clients.BaseClient`](/sdk/go/clients#baseclient) | Not used and should be `nil`. | ```go var SignPayloadWithMultipleECDSA PayloadSigner = func(ctx context.Context, payload []byte, secret interface{}, client *clients.BaseClient) ([]byte, error)