From 7906b6ee735884d0a3b173deca518566c8eb22cc Mon Sep 17 00:00:00 2001 From: Oliver He Date: Mon, 16 Oct 2023 17:38:45 -0400 Subject: [PATCH] Update fixed-bytes.ts --- src/bcs/serializable/fixed-bytes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bcs/serializable/fixed-bytes.ts b/src/bcs/serializable/fixed-bytes.ts index 9ec678584..d5b3c6a1b 100644 --- a/src/bcs/serializable/fixed-bytes.ts +++ b/src/bcs/serializable/fixed-bytes.ts @@ -26,7 +26,7 @@ import { TransactionArgument } from "../../transactions/instances/transactionArg * const fixedBytes = new FixedBytes(yourCustomSerializedBytes); * const payload = generateTransactionPayload({ * function: "0xbeefcafe::your_module::your_function_that_requires_custom_serialization", - * * arguments: [yourCustomBytes], + * arguments: [yourCustomBytes], * }); * * For example, if you store each of the 32 bytes for an address as a U8 in a MoveVector, when you