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,