From 8d88c689da9e9a3a26a120e34cdde1d1f437cafb Mon Sep 17 00:00:00 2001 From: Tal Kol Date: Sun, 1 May 2022 15:45:07 +0100 Subject: [PATCH] Minor fix --- test/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helpers.ts b/test/helpers.ts index eb0a749..6f58397 100644 --- a/test/helpers.ts +++ b/test/helpers.ts @@ -16,7 +16,7 @@ export function randomAddress(seed: string, workchain?: number) { export function internalMessage(params: { from?: Address; to?: Address; value?: BN; bounce?: boolean; body?: Cell }) { const message = params.body ? new CellMessage(params.body) : undefined; return new InternalMessage({ - from: params.from ?? randomAddress("seed"), + from: params.from ?? randomAddress("sender"), to: params.to ?? zeroAddress, value: params.value ?? 0, bounce: params.bounce ?? true,