From 8db1157384e10d93be4e277d03d4141c89ed5f4f Mon Sep 17 00:00:00 2001 From: Tudor Malene Date: Mon, 29 Jan 2024 13:39:39 +0000 Subject: [PATCH] fix --- go/enclave/components/batch_executor.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/go/enclave/components/batch_executor.go b/go/enclave/components/batch_executor.go index 62963085cc..446c8b0285 100644 --- a/go/enclave/components/batch_executor.go +++ b/go/enclave/components/batch_executor.go @@ -221,11 +221,8 @@ func (executor *batchExecutor) ComputeBatch(context *BatchExecutionContext, fail log.TxKey, xChainTx.Hash(), "type", xChainTx.Type(), "time", xChainTx.Time(), - "to", xChainTx.To().Hex(), - "value", xChainTx.Value().Uint64(), "payload", gethcommon.Bytes2Hex(xChainTx.Data()), "gas", xChainTx.Gas(), - "gasPrice", xChainTx.GasPrice().Uint64(), ) } @@ -298,11 +295,8 @@ func (executor *batchExecutor) ExecuteBatch(batch *core.Batch) (types.Receipts, log.TxKey, xChainTx.Hash(), "type", xChainTx.Type(), "time", xChainTx.Time(), - "to", xChainTx.To().Hex(), - "value", xChainTx.Value().Uint64(), "payload", gethcommon.Bytes2Hex(xChainTx.Data()), "gas", xChainTx.Gas(), - "gasPrice", xChainTx.GasPrice().Uint64(), ) } return nil, fmt.Errorf("batch is in invalid state. Incoming hash: %s Computed hash: %s", batch.Hash(), cb.Batch.Hash())