From 5b12f6bbbdb4b919d4c0e6435375422728ea5c2d Mon Sep 17 00:00:00 2001 From: Elliot Voris Date: Tue, 21 May 2024 13:32:32 -0700 Subject: [PATCH] clarify note about when the timebounds are added to client txs --- src/contract/utils.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/contract/utils.ts b/src/contract/utils.ts index c25088a90..cbbbcd05c 100644 --- a/src/contract/utils.ts +++ b/src/contract/utils.ts @@ -3,8 +3,9 @@ import type { AssembledTransaction } from "./assembled_transaction"; /** * The default timebounds, in seconds, during which a transaction will be valid. - * This is attached to the transaction at the time it is built, which takes - * place _before_ transaction simulation, and _before_ transaction signing. + * This is attached to the transaction _before_ transaction simulation (it is + * needed for simulation to succeed). It is also re-calculated and re-added + * _before_ transaction signing. * @constant {number} * @default 300 * @memberof module:contract.Client