From c5cb700b99deaff3975d206f19aced6992e983ad Mon Sep 17 00:00:00 2001 From: Oleksandr Myshchyshyn Date: Mon, 24 Feb 2025 11:20:30 +0200 Subject: [PATCH] Removed comment --- src/types/ExecutionResult.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/ExecutionResult.ts b/src/types/ExecutionResult.ts index 97b95506..c2d0bb92 100644 --- a/src/types/ExecutionResult.ts +++ b/src/types/ExecutionResult.ts @@ -432,7 +432,7 @@ export class ExecutionResult { // // In version V2, 'Consumed' and 'Cost' are explicitly separated. // So to maintain backward compatibility for V1, 'v1.Success.Cost' is used for both 'Consumed' and 'Cost'. - result.consumed = v1.success.cost; // Consumed is unknown field for V1 Deploy + result.consumed = v1.success.cost; result.cost = v1.success.cost; result.payment = null; result.transfers = transfers;