From b34ff92de53c0bd9ab91c38ac43be717ae3a2d5a Mon Sep 17 00:00:00 2001 From: Will Hester Date: Tue, 26 Nov 2024 13:33:24 +0000 Subject: [PATCH 01/21] init design --- design/host/l1_block_processing.md | 187 +++++++++++++++++++++++++++++ 1 file changed, 187 insertions(+) create mode 100644 design/host/l1_block_processing.md diff --git a/design/host/l1_block_processing.md b/design/host/l1_block_processing.md new file mode 100644 index 0000000000..5670ca1811 --- /dev/null +++ b/design/host/l1_block_processing.md @@ -0,0 +1,187 @@ +# Standardizing L1 Data Processing + +## Requirements + +1. Standardise the way in which we process l1 blocks to find the relevant data needed for processing on the L2 +2. Reduce the processing load on the enclave + +## Current Problems +* Multiple redundant loops through L1 block data +* Inconsistent processing patterns +* Unnecessary load on the enclave +* Scattered responsibility for L1 data extraction + +## Proposed Solution + +Create a central registry of the L1 events we care about: + +* Rollup +* Secret request +* Cross chain messages +* GrantSequencer events + +```go +// L1EventType identifies different types of L1 transactions we care about +type L1EventType int + +const ( + RollupEvent L1EventType = iota + SecretRequestEvent + CrossChainMessageEvent + SequencerAddedEvent +) + +// ProcessedL1Data is submitted to the enclave by the guardian +type ProcessedL1Data struct { + BlockHeader *types.Header + Events map[L1EventType][]*L1EventData +} + +// L1Event represents a processed L1 transaction that's relevant to us +type L1EventData struct { + Type L1EventType + Transaction *types.Transaction + Receipt *types.Receipt + BlockHeader *types.Header + Blobs []*kzg4844.Blob // Only populated for blob transactions +} +``` +## Guardian +In the guardian we do all the transaction filtering to look for the event types we care about and then submit a +`ProcessedL1Data` object to the enclave via gRPC in the `SubmitL1Block` function. + +`TODO` what proof to submit? + +```go +// This can be added to the guardian, or we include in one of the existing guardian services +type L1Processor struct { + mgmtContractLib mgmtcontractlib.MgmtContractLib + blobResolver BlobResolver + logger gethlog.Logger +} + +func (p *L1Processor) ProcessBlock(br *common.BlockAndReceipts) (*common.ProcessedL1Data, error) { + processed := &common.ProcessedL1Data{ + BlockHeader: br.BlockHeader, + Events: make(map[L1EventType][]*common.L1EventData), + } + + // Extract blobs and hashes once + blobs, blobHashes, err := p.extractBlobsAndHashes(br) + if err != nil { + return nil, fmt.Errorf("failed to extract blobs: %w", err) + } + + // Single pass through transactions + for _, tx := range *br.RelevantTransactions() { + decodedTx := p.mgmtContractLib.DecodeTx(tx) + if decodedTx == nil { + continue + } + + // Find receipt for this transaction + receipt := br.GetReceipt(tx.Hash()) + + switch t := decodedTx.(type) { + case *ethadapter.L1RollupHashes: + // Verify blob hashes match for rollups + if err := verifyBlobHashes(t, blobHashes); err != nil { + p.logger.Warn("Invalid rollup blob hashes", "tx", tx.Hash(), "error", err) + continue + } + + processed.Events[RollupEvent] = append(processed.Events[RollupEvent], &common.L1EventData{ + TxHash: tx.Hash(), + Transaction: tx, + Receipt: receipt, + Blobs: blobs, + }) + + case *ethadapter.L1RequestSecretTx: + processed.Events[SecretRequestEvent] = append(processed.Events[SecretRequestEvent], &common.L1EventData{ + TxHash: tx.Hash(), + Transaction: tx, + Receipt: receipt, + }) + + case *ethadapter.L1InitializeSecretTx: + processed.Events[SecretRequestEvent] = append(processed.Events[SecretRequestEvent], &common.L1EventData{ + TxHash: tx.Hash(), + Transaction: tx, + Receipt: receipt, + }) + + // Add other event types... + } + } + + return processed, nil +} +``` + +## Enclave side + +On the enclave side we handle each of the `processedData.Events[L1EventType]` individually and don't have duplicate loops +through the transactions. + +Correct ordering of these event processing is going to be the biggest pain point I suspect. + +```go +func (e *enclaveAdminService) ingestL1Block(ctx context.Context, processedData *common.ProcessedL1Data) (*components.BlockIngestionType, error) { + + // Process block first to ensure it's valid and get ingestion type + ingestion, err := e.l1BlockProcessor.Process(ctx, processedData.BlockHeader) + if err != nil { + if errors.Is(err, errutil.ErrBlockAncestorNotFound) || errors.Is(err, errutil.ErrBlockAlreadyProcessed) { + e.logger.Debug("Did not ingest block", log.ErrKey, err, log.BlockHashKey, processedData.BlockHeader.Hash()) + } else { + e.logger.Warn("Failed ingesting block", log.ErrKey, err, log.BlockHashKey, processedData.BlockHeader.Hash()) + } + return nil, err + } + + // Process each event type in order + var secretResponses []*common.ProducedSecretResponse + + // rollups + if rollupEvents, exists := processedData.Events[RollupEvent]; exists { + for _, event := range rollupEvents { + if err := e.rollupConsumer.ProcessRollup(ctx, event); err != nil { + if !errors.Is(err, components.ErrDuplicateRollup) { + e.logger.Error("Failed processing rollup", log.ErrKey, err) + // Continue processing other events even if one rollup fails + } + } + } + } + + // secret requests + if secretEvents, exists := processedData.Events[SecretRequestEvent]; exists { + for _, event := range secretEvents { + resp, err := e.sharedSecretProcessor.ProcessSecretRequest(ctx, event) + if err != nil { + e.logger.Error("Failed to process secret request", "tx", event.TxHash, "error", err) + continue + } + if resp != nil { + secretResponses = append(secretResponses, resp) + } + } + } + + // cross chain messages & add sequencer etc + + // Handle any L1 reorg/fork + if ingestion.IsFork() { + e.registry.OnL1Reorg(ingestion) + if err := e.service.OnL1Fork(ctx, ingestion.ChainFork); err != nil { + return nil, err + } + } + + // Add secret responses to ingestion result + ingestion.SecretResponses = secretResponses + + return ingestion, nil +} +``` \ No newline at end of file From 8cadd5df85464ed9f12610ee26f75014e9b88334 Mon Sep 17 00:00:00 2001 From: Will Hester Date: Tue, 26 Nov 2024 13:36:32 +0000 Subject: [PATCH 02/21] update --- design/host/l1_block_processing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/design/host/l1_block_processing.md b/design/host/l1_block_processing.md index 5670ca1811..ba89c290fb 100644 --- a/design/host/l1_block_processing.md +++ b/design/host/l1_block_processing.md @@ -13,7 +13,7 @@ ## Proposed Solution -Create a central registry of the L1 events we care about: +Loop through transactions to find events we care about in the guardian and submit these with the block to the enclave: * Rollup * Secret request From 0f2089ec99ee677a66fe2f8462f8b06520c0410c Mon Sep 17 00:00:00 2001 From: Will Hester Date: Wed, 27 Nov 2024 14:55:35 +0000 Subject: [PATCH 03/21] stashing --- go/common/rpc/generated/enclave.pb.go | 830 ++++++++++----------- go/common/rpc/generated/enclave.proto | 2 +- go/common/rpc/generated/enclave_grpc.pb.go | 146 ++-- 3 files changed, 483 insertions(+), 495 deletions(-) diff --git a/go/common/rpc/generated/enclave.pb.go b/go/common/rpc/generated/enclave.pb.go index 0397deae6e..1ae349f2df 100644 --- a/go/common/rpc/generated/enclave.pb.go +++ b/go/common/rpc/generated/enclave.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.2 -// protoc v5.28.2 +// protoc-gen-go v1.32.0 +// protoc v4.25.3 // source: enclave.proto package generated @@ -1907,8 +1907,8 @@ type SubmitBlockRequest struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - EncodedBlock []byte `protobuf:"bytes,1,opt,name=encodedBlock,proto3" json:"encodedBlock,omitempty"` - EncodedReceipts []byte `protobuf:"bytes,2,opt,name=encodedReceipts,proto3" json:"encodedReceipts,omitempty"` + EncodedBlock []byte `protobuf:"bytes,1,opt,name=encodedBlock,proto3" json:"encodedBlock,omitempty"` + EncodedProcessedData []byte `protobuf:"bytes,2,opt,name=encodedProcessedData,proto3" json:"encodedProcessedData,omitempty"` } func (x *SubmitBlockRequest) Reset() { @@ -1950,9 +1950,9 @@ func (x *SubmitBlockRequest) GetEncodedBlock() []byte { return nil } -func (x *SubmitBlockRequest) GetEncodedReceipts() []byte { +func (x *SubmitBlockRequest) GetEncodedProcessedData() []byte { if x != nil { - return x.EncodedReceipts + return x.EncodedProcessedData } return nil } @@ -3732,357 +3732,357 @@ var file_enclave_proto_rawDesc = []byte{ 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, - 0x62, 0x0a, 0x12, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x52, 0x65, + 0x6c, 0x0a, 0x12, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x64, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x65, 0x6e, 0x63, - 0x6f, 0x64, 0x65, 0x64, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x12, 0x28, 0x0a, 0x0f, 0x65, 0x6e, 0x63, - 0x6f, 0x64, 0x65, 0x64, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x73, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x0c, 0x52, 0x0f, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x64, 0x52, 0x65, 0x63, 0x65, 0x69, - 0x70, 0x74, 0x73, 0x22, 0xb0, 0x01, 0x0a, 0x13, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x42, 0x6c, - 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5f, 0x0a, 0x17, 0x62, - 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x67, - 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x75, + 0x6f, 0x64, 0x65, 0x64, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x12, 0x32, 0x0a, 0x14, 0x65, 0x6e, 0x63, + 0x6f, 0x64, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x44, 0x61, 0x74, + 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x14, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x64, + 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x44, 0x61, 0x74, 0x61, 0x22, 0xb0, 0x01, + 0x0a, 0x13, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5f, 0x0a, 0x17, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x4d, 0x73, 0x67, 0x52, 0x17, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x73, - 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x0b, - 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x79, - 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, - 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x3a, 0x0a, 0x0e, 0x45, 0x6e, 0x63, 0x43, 0x61, 0x6c, - 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x0f, 0x65, 0x6e, 0x63, 0x72, - 0x79, 0x70, 0x74, 0x65, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0c, 0x52, 0x0f, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x50, 0x61, 0x72, 0x61, - 0x6d, 0x73, 0x22, 0x83, 0x01, 0x0a, 0x0f, 0x45, 0x6e, 0x63, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x36, 0x0a, 0x16, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, - 0x64, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x16, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x64, 0x45, - 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, - 0x0a, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, - 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x0b, 0x73, 0x79, 0x73, - 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x42, 0x0a, 0x12, 0x53, 0x75, 0x62, 0x6d, - 0x69, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2c, - 0x0a, 0x05, 0x62, 0x61, 0x74, 0x63, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, - 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x45, 0x78, 0x74, 0x42, 0x61, 0x74, - 0x63, 0x68, 0x4d, 0x73, 0x67, 0x52, 0x05, 0x62, 0x61, 0x74, 0x63, 0x68, 0x22, 0x4f, 0x0a, 0x13, - 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, - 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, - 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, - 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, - 0x52, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x0d, 0x0a, - 0x0b, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x48, 0x0a, 0x0c, - 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x0b, - 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x79, - 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, - 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x50, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x64, - 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, - 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, - 0x73, 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x4e, 0x72, 0x4f, 0x72, 0x48, - 0x61, 0x73, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0d, 0x62, 0x6c, 0x6f, 0x63, 0x6b, - 0x4e, 0x72, 0x4f, 0x72, 0x48, 0x61, 0x73, 0x68, 0x22, 0x5f, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x43, - 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, - 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, - 0x38, 0x0a, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, - 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x0b, 0x73, 0x79, - 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x58, 0x0a, 0x10, 0x53, 0x75, 0x62, - 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, - 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x02, 0x69, 0x64, 0x12, 0x34, 0x0a, - 0x15, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, - 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x15, 0x65, 0x6e, - 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, - 0x69, 0x6f, 0x6e, 0x22, 0x4d, 0x0a, 0x11, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, + 0x65, 0x64, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, + 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x73, 0x67, 0x52, 0x17, 0x62, + 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, + 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, + 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, + 0x72, 0x6f, 0x72, 0x52, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x22, 0x3a, 0x0a, 0x0e, 0x45, 0x6e, 0x63, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x12, 0x28, 0x0a, 0x0f, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x50, + 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0f, 0x65, 0x6e, 0x63, + 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0x83, 0x01, 0x0a, + 0x0f, 0x45, 0x6e, 0x63, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x12, 0x36, 0x0a, 0x16, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x64, 0x45, 0x6e, 0x63, 0x6c, 0x61, + 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, + 0x52, 0x16, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x64, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, - 0x6f, 0x72, 0x22, 0x24, 0x0a, 0x12, 0x55, 0x6e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, - 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x0c, 0x52, 0x02, 0x69, 0x64, 0x22, 0x4f, 0x0a, 0x13, 0x55, 0x6e, 0x73, 0x75, - 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, - 0x38, 0x0a, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, - 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x0b, 0x73, 0x79, - 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x67, 0x0a, 0x13, 0x48, 0x65, 0x61, - 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, - 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x38, 0x0a, 0x0b, 0x73, 0x79, 0x73, 0x74, - 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, - 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, - 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, - 0x6f, 0x72, 0x22, 0x0b, 0x0a, 0x09, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x41, 0x72, 0x67, 0x73, 0x22, - 0xc0, 0x01, 0x0a, 0x14, 0x41, 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, - 0x65, 0x70, 0x6f, 0x72, 0x74, 0x4d, 0x73, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f, - 0x72, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, - 0x12, 0x16, 0x0a, 0x06, 0x50, 0x75, 0x62, 0x4b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, - 0x52, 0x06, 0x50, 0x75, 0x62, 0x4b, 0x65, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x45, 0x6e, 0x63, 0x6c, - 0x61, 0x76, 0x65, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x45, 0x6e, 0x63, - 0x6c, 0x61, 0x76, 0x65, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x48, 0x6f, 0x73, 0x74, 0x41, 0x64, - 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x48, 0x6f, 0x73, - 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x38, 0x0a, 0x0b, 0x73, 0x79, 0x73, 0x74, - 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, - 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, - 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, - 0x6f, 0x72, 0x22, 0xae, 0x01, 0x0a, 0x1a, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x75, 0x62, 0x6d, - 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x73, - 0x67, 0x12, 0x56, 0x0a, 0x17, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x64, 0x53, 0x65, 0x63, - 0x72, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, - 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, - 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x73, 0x67, - 0x52, 0x17, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x64, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x12, 0x38, 0x0a, 0x05, 0x65, 0x72, 0x72, - 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, - 0x61, 0x74, 0x65, 0x64, 0x2e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x73, - 0x73, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x05, 0x65, 0x72, - 0x72, 0x6f, 0x72, 0x22, 0x47, 0x0a, 0x17, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x75, 0x62, 0x6d, - 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x14, - 0x0a, 0x05, 0x63, 0x61, 0x75, 0x73, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, - 0x61, 0x75, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6c, 0x31, 0x48, 0x65, 0x61, 0x64, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x6c, 0x31, 0x48, 0x65, 0x61, 0x64, 0x22, 0x89, 0x01, 0x0a, - 0x0d, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x16, - 0x0a, 0x06, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, - 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, - 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, - 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x4e, 0x6f, 0x6e, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x0d, 0x52, 0x05, 0x4e, 0x6f, 0x6e, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x54, 0x6f, 0x70, 0x69, - 0x63, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x18, - 0x0a, 0x07, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, - 0x07, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x22, 0x6e, 0x0a, 0x0b, 0x45, 0x78, 0x74, 0x42, - 0x61, 0x74, 0x63, 0x68, 0x4d, 0x73, 0x67, 0x12, 0x31, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, - 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, - 0x74, 0x65, 0x64, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x4d, - 0x73, 0x67, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x78, - 0x48, 0x61, 0x73, 0x68, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x08, 0x74, 0x78, - 0x48, 0x61, 0x73, 0x68, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x78, 0x73, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x0c, 0x52, 0x03, 0x74, 0x78, 0x73, 0x22, 0xaa, 0x05, 0x0a, 0x0e, 0x42, 0x61, 0x74, - 0x63, 0x68, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1e, 0x0a, 0x0a, 0x50, - 0x61, 0x72, 0x65, 0x6e, 0x74, 0x48, 0x61, 0x73, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, - 0x0a, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x48, 0x61, 0x73, 0x68, 0x12, 0x14, 0x0a, 0x05, 0x50, - 0x72, 0x6f, 0x6f, 0x66, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x50, 0x72, 0x6f, 0x6f, - 0x66, 0x12, 0x12, 0x0a, 0x04, 0x52, 0x6f, 0x6f, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, - 0x04, 0x52, 0x6f, 0x6f, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x54, 0x78, 0x48, 0x61, 0x73, 0x68, 0x18, - 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x54, 0x78, 0x48, 0x61, 0x73, 0x68, 0x12, 0x16, 0x0a, - 0x06, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x4e, - 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, - 0x65, 0x72, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, - 0x10, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x72, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4e, - 0x6f, 0x12, 0x20, 0x0a, 0x0b, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x48, 0x61, 0x73, 0x68, - 0x18, 0x07, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x48, - 0x61, 0x73, 0x68, 0x12, 0x14, 0x0a, 0x05, 0x45, 0x78, 0x74, 0x72, 0x61, 0x18, 0x08, 0x20, 0x01, - 0x28, 0x0c, 0x52, 0x05, 0x45, 0x78, 0x74, 0x72, 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x53, 0x69, 0x67, - 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x53, 0x69, - 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x47, 0x61, 0x73, 0x4c, 0x69, - 0x6d, 0x69, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x47, 0x61, 0x73, 0x4c, 0x69, - 0x6d, 0x69, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x47, 0x61, 0x73, 0x55, 0x73, 0x65, 0x64, 0x18, 0x0b, - 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x47, 0x61, 0x73, 0x55, 0x73, 0x65, 0x64, 0x12, 0x12, 0x0a, - 0x04, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x54, 0x69, 0x6d, - 0x65, 0x12, 0x18, 0x0a, 0x07, 0x42, 0x61, 0x73, 0x65, 0x46, 0x65, 0x65, 0x18, 0x0d, 0x20, 0x01, - 0x28, 0x04, 0x52, 0x07, 0x42, 0x61, 0x73, 0x65, 0x46, 0x65, 0x65, 0x12, 0x44, 0x0a, 0x1d, 0x4c, + 0x6f, 0x72, 0x22, 0x42, 0x0a, 0x12, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x42, 0x61, 0x74, 0x63, + 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x05, 0x62, 0x61, 0x74, 0x63, + 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, + 0x74, 0x65, 0x64, 0x2e, 0x45, 0x78, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4d, 0x73, 0x67, 0x52, + 0x05, 0x62, 0x61, 0x74, 0x63, 0x68, 0x22, 0x4f, 0x0a, 0x13, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, + 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, + 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, + 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x0b, 0x73, 0x79, 0x73, 0x74, + 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x0d, 0x0a, 0x0b, 0x53, 0x74, 0x6f, 0x70, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x48, 0x0a, 0x0c, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, + 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, + 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, + 0x72, 0x6f, 0x72, 0x52, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x22, 0x50, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x0c, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x24, 0x0a, 0x0d, + 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x4e, 0x72, 0x4f, 0x72, 0x48, 0x61, 0x73, 0x68, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x0c, 0x52, 0x0d, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x4e, 0x72, 0x4f, 0x72, 0x48, 0x61, + 0x73, 0x68, 0x22, 0x5f, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x0c, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x38, 0x0a, 0x0b, 0x73, 0x79, 0x73, + 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, + 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, + 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, + 0x72, 0x6f, 0x72, 0x22, 0x58, 0x0a, 0x10, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x0c, 0x52, 0x02, 0x69, 0x64, 0x12, 0x34, 0x0a, 0x15, 0x65, 0x6e, 0x63, 0x72, 0x79, + 0x70, 0x74, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x15, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, + 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x4d, 0x0a, + 0x11, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x12, 0x38, 0x0a, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, + 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, + 0x74, 0x65, 0x64, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, + 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x24, 0x0a, 0x12, + 0x55, 0x6e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x02, + 0x69, 0x64, 0x22, 0x4f, 0x0a, 0x13, 0x55, 0x6e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, + 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x0b, 0x73, 0x79, 0x73, + 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, + 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, + 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, + 0x72, 0x6f, 0x72, 0x22, 0x67, 0x0a, 0x13, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, + 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x12, 0x38, 0x0a, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, + 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, + 0x74, 0x65, 0x64, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, + 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x0b, 0x0a, 0x09, + 0x45, 0x6d, 0x70, 0x74, 0x79, 0x41, 0x72, 0x67, 0x73, 0x22, 0xc0, 0x01, 0x0a, 0x14, 0x41, 0x74, + 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x4d, + 0x73, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x0c, 0x52, 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x50, 0x75, + 0x62, 0x4b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x50, 0x75, 0x62, 0x4b, + 0x65, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x49, 0x44, 0x18, + 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x49, 0x44, + 0x12, 0x20, 0x0a, 0x0b, 0x48, 0x6f, 0x73, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, + 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x48, 0x6f, 0x73, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, + 0x73, 0x73, 0x12, 0x38, 0x0a, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, + 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, + 0x74, 0x65, 0x64, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, + 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0xae, 0x01, 0x0a, + 0x1a, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x73, 0x67, 0x12, 0x56, 0x0a, 0x17, 0x70, + 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x64, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x73, 0x67, 0x52, 0x17, 0x70, 0x72, 0x6f, 0x64, + 0x75, 0x63, 0x65, 0x64, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x73, 0x12, 0x38, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x42, + 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x45, 0x72, + 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x47, 0x0a, + 0x17, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, + 0x45, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x61, 0x75, 0x73, + 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x61, 0x75, 0x73, 0x65, 0x12, 0x16, + 0x0a, 0x06, 0x6c, 0x31, 0x48, 0x65, 0x61, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, + 0x6c, 0x31, 0x48, 0x65, 0x61, 0x64, 0x22, 0x89, 0x01, 0x0a, 0x0d, 0x43, 0x72, 0x6f, 0x73, 0x73, + 0x43, 0x68, 0x61, 0x69, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, + 0x12, 0x1a, 0x0a, 0x08, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x04, 0x52, 0x08, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, + 0x4e, 0x6f, 0x6e, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x4e, 0x6f, 0x6e, + 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x18, 0x04, 0x20, 0x01, 0x28, + 0x0d, 0x52, 0x05, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x18, 0x0a, 0x07, 0x50, 0x61, 0x79, 0x6c, + 0x6f, 0x61, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x50, 0x61, 0x79, 0x6c, 0x6f, + 0x61, 0x64, 0x22, 0x6e, 0x0a, 0x0b, 0x45, 0x78, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4d, 0x73, + 0x67, 0x12, 0x31, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x42, 0x61, + 0x74, 0x63, 0x68, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x06, 0x68, 0x65, + 0x61, 0x64, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x78, 0x48, 0x61, 0x73, 0x68, 0x65, 0x73, + 0x18, 0x02, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x08, 0x74, 0x78, 0x48, 0x61, 0x73, 0x68, 0x65, 0x73, + 0x12, 0x10, 0x0a, 0x03, 0x74, 0x78, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x74, + 0x78, 0x73, 0x22, 0xaa, 0x05, 0x0a, 0x0e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x48, 0x65, 0x61, 0x64, + 0x65, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1e, 0x0a, 0x0a, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x48, + 0x61, 0x73, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x50, 0x61, 0x72, 0x65, 0x6e, + 0x74, 0x48, 0x61, 0x73, 0x68, 0x12, 0x14, 0x0a, 0x05, 0x50, 0x72, 0x6f, 0x6f, 0x66, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x50, 0x72, 0x6f, 0x6f, 0x66, 0x12, 0x12, 0x0a, 0x04, 0x52, + 0x6f, 0x6f, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x52, 0x6f, 0x6f, 0x74, 0x12, + 0x16, 0x0a, 0x06, 0x54, 0x78, 0x48, 0x61, 0x73, 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, + 0x06, 0x54, 0x78, 0x48, 0x61, 0x73, 0x68, 0x12, 0x16, 0x0a, 0x06, 0x4e, 0x75, 0x6d, 0x62, 0x65, + 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, + 0x2a, 0x0a, 0x10, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x72, 0x4f, 0x72, 0x64, 0x65, + 0x72, 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x10, 0x53, 0x65, 0x71, 0x75, 0x65, + 0x6e, 0x63, 0x65, 0x72, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4e, 0x6f, 0x12, 0x20, 0x0a, 0x0b, 0x52, + 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x48, 0x61, 0x73, 0x68, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0c, + 0x52, 0x0b, 0x52, 0x65, 0x63, 0x65, 0x69, 0x70, 0x74, 0x48, 0x61, 0x73, 0x68, 0x12, 0x14, 0x0a, + 0x05, 0x45, 0x78, 0x74, 0x72, 0x61, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x45, 0x78, + 0x74, 0x72, 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, + 0x18, 0x09, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, + 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x47, 0x61, 0x73, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x0a, 0x20, + 0x01, 0x28, 0x04, 0x52, 0x08, 0x47, 0x61, 0x73, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x18, 0x0a, + 0x07, 0x47, 0x61, 0x73, 0x55, 0x73, 0x65, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, + 0x47, 0x61, 0x73, 0x55, 0x73, 0x65, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x54, 0x69, 0x6d, 0x65, 0x18, + 0x0c, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x42, + 0x61, 0x73, 0x65, 0x46, 0x65, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x42, 0x61, + 0x73, 0x65, 0x46, 0x65, 0x65, 0x12, 0x44, 0x0a, 0x1d, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x49, + 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, + 0x48, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x1d, 0x4c, 0x61, + 0x74, 0x65, 0x73, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x43, 0x72, 0x6f, 0x73, 0x73, + 0x43, 0x68, 0x61, 0x69, 0x6e, 0x48, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x40, 0x0a, 0x1b, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x43, 0x72, 0x6f, 0x73, - 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x48, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x0e, 0x20, 0x01, - 0x28, 0x0c, 0x52, 0x1d, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, - 0x64, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x48, 0x65, 0x69, 0x67, 0x68, - 0x74, 0x12, 0x40, 0x0a, 0x1b, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x75, - 0x6e, 0x64, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x48, 0x61, 0x73, 0x68, - 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x1b, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x49, 0x6e, - 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x48, - 0x61, 0x73, 0x68, 0x12, 0x48, 0x0a, 0x12, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, - 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x18, 0x10, 0x20, 0x03, 0x28, 0x0b, 0x32, - 0x18, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x43, 0x72, 0x6f, 0x73, - 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x4d, 0x73, 0x67, 0x52, 0x12, 0x43, 0x72, 0x6f, 0x73, 0x73, - 0x43, 0x68, 0x61, 0x69, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x12, 0x22, 0x0a, - 0x0c, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x54, 0x72, 0x65, 0x65, 0x18, 0x11, 0x20, - 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x54, 0x72, 0x65, - 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x6f, 0x69, 0x6e, 0x62, 0x61, 0x73, 0x65, 0x18, 0x12, 0x20, - 0x01, 0x28, 0x0c, 0x52, 0x08, 0x43, 0x6f, 0x69, 0x6e, 0x62, 0x61, 0x73, 0x65, 0x12, 0x26, 0x0a, - 0x0e, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x54, 0x72, 0x65, 0x65, 0x18, - 0x13, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0e, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, - 0x6e, 0x54, 0x72, 0x65, 0x65, 0x22, 0x9c, 0x01, 0x0a, 0x0c, 0x45, 0x78, 0x74, 0x52, 0x6f, 0x6c, - 0x6c, 0x75, 0x70, 0x4d, 0x73, 0x67, 0x12, 0x32, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, - 0x65, 0x64, 0x2e, 0x52, 0x6f, 0x6c, 0x6c, 0x75, 0x70, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x4d, - 0x73, 0x67, 0x52, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x62, 0x61, - 0x74, 0x63, 0x68, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x0c, 0x52, 0x0d, 0x62, 0x61, 0x74, 0x63, 0x68, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x73, - 0x12, 0x32, 0x0a, 0x14, 0x63, 0x61, 0x6c, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x52, 0x6f, 0x6c, 0x6c, - 0x75, 0x70, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x14, - 0x63, 0x61, 0x6c, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x52, 0x6f, 0x6c, 0x6c, 0x75, 0x70, 0x48, 0x65, - 0x61, 0x64, 0x65, 0x72, 0x22, 0xdb, 0x02, 0x0a, 0x0f, 0x52, 0x6f, 0x6c, 0x6c, 0x75, 0x70, 0x48, - 0x65, 0x61, 0x64, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1e, 0x0a, 0x0a, 0x50, 0x61, 0x72, 0x65, - 0x6e, 0x74, 0x48, 0x61, 0x73, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x50, 0x61, - 0x72, 0x65, 0x6e, 0x74, 0x48, 0x61, 0x73, 0x68, 0x12, 0x2c, 0x0a, 0x11, 0x43, 0x6f, 0x6d, 0x70, - 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x4c, 0x31, 0x48, 0x65, 0x61, 0x64, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x0c, 0x52, 0x11, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, - 0x4c, 0x31, 0x48, 0x65, 0x61, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x50, 0x72, 0x6f, 0x6f, 0x66, 0x4e, - 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x50, 0x72, 0x6f, - 0x6f, 0x66, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x4e, 0x75, 0x6d, 0x62, - 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, - 0x12, 0x12, 0x0a, 0x04, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, - 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x49, - 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, - 0x49, 0x44, 0x12, 0x48, 0x0a, 0x12, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, - 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, - 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x43, 0x72, 0x6f, 0x73, 0x73, - 0x43, 0x68, 0x61, 0x69, 0x6e, 0x4d, 0x73, 0x67, 0x52, 0x12, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, - 0x68, 0x61, 0x69, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x12, 0x1c, 0x0a, 0x09, - 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0c, 0x52, - 0x09, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x4c, 0x61, - 0x73, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x53, 0x65, 0x71, 0x4e, 0x6f, 0x18, 0x09, 0x20, 0x01, - 0x28, 0x04, 0x52, 0x0e, 0x4c, 0x61, 0x73, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x53, 0x65, 0x71, - 0x4e, 0x6f, 0x22, 0xc9, 0x01, 0x0a, 0x11, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x73, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x65, 0x63, 0x72, - 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, - 0x12, 0x20, 0x0a, 0x0b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x44, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, - 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x74, 0x74, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x44, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x41, 0x74, 0x74, 0x65, 0x73, 0x74, 0x65, 0x72, - 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x48, 0x6f, 0x73, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, - 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x48, 0x6f, 0x73, 0x74, 0x41, 0x64, 0x64, - 0x72, 0x65, 0x73, 0x73, 0x12, 0x38, 0x0a, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, - 0x72, 0x6f, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, - 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, - 0x72, 0x52, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x61, - 0x0a, 0x0d, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x61, 0x6c, 0x4d, 0x73, 0x67, 0x12, - 0x16, 0x0a, 0x06, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, - 0x06, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x63, 0x69, 0x70, - 0x69, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x72, 0x65, 0x63, 0x69, - 0x70, 0x69, 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, - 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, - 0x74, 0x32, 0x9d, 0x10, 0x0a, 0x0c, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x50, 0x72, 0x6f, - 0x74, 0x6f, 0x12, 0x3f, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x2e, 0x67, - 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, - 0x65, 0x64, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x41, 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x12, 0x1d, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x41, - 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x1a, 0x1e, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x41, 0x74, - 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x0e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, - 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x20, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, - 0x64, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, - 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, 0x65, 0x63, 0x72, - 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, - 0x49, 0x6e, 0x69, 0x74, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x12, 0x1d, 0x2e, 0x67, 0x65, - 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x45, 0x6e, 0x63, 0x6c, - 0x61, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x67, 0x65, 0x6e, - 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x45, 0x6e, 0x63, 0x6c, 0x61, - 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x09, - 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x49, 0x44, 0x12, 0x1b, 0x2e, 0x67, 0x65, 0x6e, 0x65, - 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x49, 0x44, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, - 0x65, 0x64, 0x2e, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x49, 0x44, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x50, 0x0a, 0x0d, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, - 0x4c, 0x31, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x12, 0x1d, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, - 0x74, 0x65, 0x64, 0x2e, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, - 0x65, 0x64, 0x2e, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x0c, 0x45, 0x6e, 0x63, 0x72, - 0x79, 0x70, 0x74, 0x65, 0x64, 0x52, 0x50, 0x43, 0x12, 0x19, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, - 0x61, 0x74, 0x65, 0x64, 0x2e, 0x45, 0x6e, 0x63, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, - 0x45, 0x6e, 0x63, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, - 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, - 0x12, 0x1d, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x75, 0x62, - 0x6d, 0x69, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, - 0x1e, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x75, 0x62, 0x6d, - 0x69, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, - 0x00, 0x12, 0x39, 0x0a, 0x04, 0x53, 0x74, 0x6f, 0x70, 0x12, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, - 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x1a, 0x17, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x74, - 0x6f, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x07, - 0x47, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x19, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, - 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, - 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x47, - 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, - 0x12, 0x48, 0x0a, 0x09, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x1b, 0x2e, - 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, - 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x67, 0x65, 0x6e, - 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x55, 0x6e, - 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x1d, 0x2e, 0x67, 0x65, 0x6e, 0x65, - 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x55, 0x6e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, - 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, - 0x61, 0x74, 0x65, 0x64, 0x2e, 0x55, 0x6e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x0b, 0x48, 0x65, - 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x14, 0x2e, 0x67, 0x65, 0x6e, 0x65, - 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x41, 0x72, 0x67, 0x73, 0x1a, - 0x1e, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x48, 0x65, 0x61, 0x6c, - 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, - 0x00, 0x12, 0x45, 0x0a, 0x08, 0x47, 0x65, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x12, 0x1a, 0x2e, - 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x42, 0x61, 0x74, - 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x67, 0x65, 0x6e, 0x65, - 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x53, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x42, - 0x61, 0x74, 0x63, 0x68, 0x42, 0x79, 0x53, 0x65, 0x71, 0x4e, 0x6f, 0x12, 0x21, 0x2e, 0x67, 0x65, - 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, - 0x42, 0x79, 0x53, 0x65, 0x71, 0x4e, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, - 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x42, 0x61, - 0x74, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a, - 0x0d, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6c, 0x6c, 0x75, 0x70, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1f, - 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x6f, - 0x6c, 0x6c, 0x75, 0x70, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, - 0x20, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x52, - 0x6f, 0x6c, 0x6c, 0x75, 0x70, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x42, 0x61, 0x74, - 0x63, 0x68, 0x12, 0x1d, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x43, - 0x72, 0x65, 0x61, 0x74, 0x65, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x1a, 0x1e, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x43, 0x72, - 0x65, 0x61, 0x74, 0x65, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0c, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x6f, 0x6c, - 0x6c, 0x75, 0x70, 0x12, 0x1e, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, - 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x6f, 0x6c, 0x6c, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, - 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x6f, 0x6c, 0x6c, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x69, 0x0a, 0x14, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, - 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x12, 0x26, - 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, - 0x74, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, - 0x65, 0x64, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, - 0x61, 0x69, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, - 0x00, 0x12, 0x6c, 0x0a, 0x15, 0x44, 0x65, 0x62, 0x75, 0x67, 0x54, 0x72, 0x61, 0x63, 0x65, 0x54, - 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x27, 0x2e, 0x67, 0x65, 0x6e, - 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x44, 0x65, 0x62, 0x75, 0x67, 0x54, 0x72, 0x61, 0x63, - 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, - 0x44, 0x65, 0x62, 0x75, 0x67, 0x54, 0x72, 0x61, 0x63, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, - 0x5a, 0x0a, 0x0f, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x4c, 0x32, 0x55, 0x70, 0x64, 0x61, 0x74, - 0x65, 0x73, 0x12, 0x21, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, - 0x74, 0x72, 0x65, 0x61, 0x6d, 0x4c, 0x32, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x73, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, - 0x64, 0x2e, 0x45, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x6c, 0x0a, 0x15, 0x47, - 0x65, 0x74, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x43, - 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x27, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, - 0x2e, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, - 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, - 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x74, - 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x66, 0x0a, 0x13, 0x45, 0x6e, 0x63, - 0x6c, 0x61, 0x76, 0x65, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, - 0x12, 0x25, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x45, 0x6e, 0x63, - 0x6c, 0x61, 0x76, 0x65, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, - 0x74, 0x65, 0x64, 0x2e, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x50, 0x75, 0x62, 0x6c, 0x69, - 0x63, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, - 0x00, 0x12, 0x4b, 0x0a, 0x0a, 0x4d, 0x61, 0x6b, 0x65, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x12, - 0x1c, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x4d, 0x61, 0x6b, 0x65, - 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, - 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x4d, 0x61, 0x6b, 0x65, 0x41, 0x63, - 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, - 0x0a, 0x0c, 0x41, 0x64, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x72, 0x12, 0x1e, - 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x41, 0x64, 0x64, 0x53, 0x65, - 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, - 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x41, 0x64, 0x64, 0x53, 0x65, - 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, - 0x00, 0x42, 0x17, 0x5a, 0x15, 0x65, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x2f, 0x72, 0x70, 0x63, - 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x48, 0x61, 0x73, 0x68, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0c, + 0x52, 0x1b, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x43, + 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x48, 0x61, 0x73, 0x68, 0x12, 0x48, 0x0a, + 0x12, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, + 0x67, 0x65, 0x73, 0x18, 0x10, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x67, 0x65, 0x6e, 0x65, + 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, + 0x4d, 0x73, 0x67, 0x52, 0x12, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x4d, + 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x54, 0x72, 0x61, 0x6e, 0x73, + 0x66, 0x65, 0x72, 0x54, 0x72, 0x65, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x54, + 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x54, 0x72, 0x65, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x43, + 0x6f, 0x69, 0x6e, 0x62, 0x61, 0x73, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x43, + 0x6f, 0x69, 0x6e, 0x62, 0x61, 0x73, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x72, 0x6f, 0x73, 0x73, + 0x43, 0x68, 0x61, 0x69, 0x6e, 0x54, 0x72, 0x65, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0c, 0x52, + 0x0e, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x54, 0x72, 0x65, 0x65, 0x22, + 0x9c, 0x01, 0x0a, 0x0c, 0x45, 0x78, 0x74, 0x52, 0x6f, 0x6c, 0x6c, 0x75, 0x70, 0x4d, 0x73, 0x67, + 0x12, 0x32, 0x0a, 0x06, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x1a, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x52, 0x6f, 0x6c, + 0x6c, 0x75, 0x70, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x06, 0x68, 0x65, + 0x61, 0x64, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x0d, 0x62, 0x61, 0x74, 0x63, 0x68, 0x50, 0x61, 0x79, + 0x6c, 0x6f, 0x61, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0d, 0x62, 0x61, 0x74, + 0x63, 0x68, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x73, 0x12, 0x32, 0x0a, 0x14, 0x63, 0x61, + 0x6c, 0x6c, 0x64, 0x61, 0x74, 0x61, 0x52, 0x6f, 0x6c, 0x6c, 0x75, 0x70, 0x48, 0x65, 0x61, 0x64, + 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x14, 0x63, 0x61, 0x6c, 0x6c, 0x64, 0x61, + 0x74, 0x61, 0x52, 0x6f, 0x6c, 0x6c, 0x75, 0x70, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x22, 0xdb, + 0x02, 0x0a, 0x0f, 0x52, 0x6f, 0x6c, 0x6c, 0x75, 0x70, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x4d, + 0x73, 0x67, 0x12, 0x1e, 0x0a, 0x0a, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x48, 0x61, 0x73, 0x68, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x48, 0x61, + 0x73, 0x68, 0x12, 0x2c, 0x0a, 0x11, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, + 0x6e, 0x4c, 0x31, 0x48, 0x65, 0x61, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x11, 0x43, + 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x4c, 0x31, 0x48, 0x65, 0x61, 0x64, + 0x12, 0x20, 0x0a, 0x0b, 0x50, 0x72, 0x6f, 0x6f, 0x66, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, + 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x50, 0x72, 0x6f, 0x6f, 0x66, 0x4e, 0x75, 0x6d, 0x62, + 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, + 0x28, 0x04, 0x52, 0x06, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x54, 0x69, + 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, + 0x0a, 0x09, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, + 0x0c, 0x52, 0x09, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x49, 0x44, 0x12, 0x48, 0x0a, 0x12, + 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, + 0x65, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, + 0x61, 0x74, 0x65, 0x64, 0x2e, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x4d, + 0x73, 0x67, 0x52, 0x12, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x4d, 0x65, + 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, + 0x75, 0x72, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x53, 0x69, 0x67, 0x6e, 0x61, + 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x4c, 0x61, 0x73, 0x74, 0x42, 0x61, 0x74, 0x63, + 0x68, 0x53, 0x65, 0x71, 0x4e, 0x6f, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x4c, 0x61, + 0x73, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x53, 0x65, 0x71, 0x4e, 0x6f, 0x22, 0xc9, 0x01, 0x0a, + 0x11, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, + 0x73, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x0c, 0x52, 0x06, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, + 0x0b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, + 0x41, 0x74, 0x74, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, + 0x52, 0x0a, 0x41, 0x74, 0x74, 0x65, 0x73, 0x74, 0x65, 0x72, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, + 0x48, 0x6f, 0x73, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x0b, 0x48, 0x6f, 0x73, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x38, + 0x0a, 0x0b, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x05, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, + 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x0b, 0x73, 0x79, 0x73, + 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x61, 0x0a, 0x0d, 0x57, 0x69, 0x74, 0x68, + 0x64, 0x72, 0x61, 0x77, 0x61, 0x6c, 0x4d, 0x73, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x6d, 0x6f, + 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x61, 0x6d, 0x6f, 0x75, 0x6e, + 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x63, 0x69, 0x70, 0x69, 0x65, 0x6e, 0x74, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x72, 0x65, 0x63, 0x69, 0x70, 0x69, 0x65, 0x6e, 0x74, 0x12, + 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x0c, 0x52, 0x08, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x32, 0x9d, 0x10, 0x0a, 0x0c, + 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x3f, 0x0a, 0x06, + 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, + 0x65, 0x64, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x1a, 0x19, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x74, 0x61, + 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, + 0x0b, 0x41, 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1d, 0x2e, 0x67, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x41, 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x67, 0x65, + 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x41, 0x74, 0x74, 0x65, 0x73, 0x74, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x57, 0x0a, + 0x0e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, + 0x20, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x6e, 0x65, + 0x72, 0x61, 0x74, 0x65, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x1a, 0x21, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, + 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x49, 0x6e, 0x69, 0x74, 0x45, 0x6e, + 0x63, 0x6c, 0x61, 0x76, 0x65, 0x12, 0x1d, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, + 0x64, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, + 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x09, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, + 0x65, 0x49, 0x44, 0x12, 0x1b, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, + 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x1a, 0x1c, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x45, 0x6e, 0x63, + 0x6c, 0x61, 0x76, 0x65, 0x49, 0x44, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, + 0x12, 0x50, 0x0a, 0x0d, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4c, 0x31, 0x42, 0x6c, 0x6f, 0x63, + 0x6b, 0x12, 0x1d, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x75, + 0x62, 0x6d, 0x69, 0x74, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x1a, 0x1e, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x75, 0x62, + 0x6d, 0x69, 0x74, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x22, 0x00, 0x12, 0x47, 0x0a, 0x0c, 0x45, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x65, 0x64, 0x52, + 0x50, 0x43, 0x12, 0x19, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x45, + 0x6e, 0x63, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, + 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x45, 0x6e, 0x63, 0x43, 0x61, 0x6c, + 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x53, + 0x75, 0x62, 0x6d, 0x69, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x12, 0x1d, 0x2e, 0x67, 0x65, 0x6e, + 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x42, 0x61, 0x74, + 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x67, 0x65, 0x6e, 0x65, + 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x42, 0x61, 0x74, 0x63, + 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x39, 0x0a, 0x04, 0x53, + 0x74, 0x6f, 0x70, 0x12, 0x16, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, + 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x67, 0x65, + 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x74, 0x6f, 0x70, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x07, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x64, + 0x65, 0x12, 0x19, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, + 0x74, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x67, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x09, 0x53, 0x75, + 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x1b, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, + 0x74, 0x65, 0x64, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, + 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x0b, 0x55, 0x6e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, + 0x69, 0x62, 0x65, 0x12, 0x1d, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, + 0x55, 0x6e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x55, + 0x6e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x0b, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, + 0x65, 0x63, 0x6b, 0x12, 0x14, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, + 0x45, 0x6d, 0x70, 0x74, 0x79, 0x41, 0x72, 0x67, 0x73, 0x1a, 0x1e, 0x2e, 0x67, 0x65, 0x6e, 0x65, + 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, + 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x08, 0x47, + 0x65, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x12, 0x1a, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, + 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, + 0x47, 0x65, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x22, 0x00, 0x12, 0x53, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x42, 0x79, + 0x53, 0x65, 0x71, 0x4e, 0x6f, 0x12, 0x21, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, + 0x64, 0x2e, 0x47, 0x65, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x42, 0x79, 0x53, 0x65, 0x71, 0x4e, + 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, + 0x61, 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x42, 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x52, 0x6f, + 0x6c, 0x6c, 0x75, 0x70, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1f, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, + 0x61, 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6c, 0x6c, 0x75, 0x70, 0x44, 0x61, + 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x67, 0x65, 0x6e, 0x65, + 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6c, 0x6c, 0x75, 0x70, 0x44, + 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4e, 0x0a, + 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x42, 0x61, 0x74, 0x63, 0x68, 0x12, 0x1d, 0x2e, 0x67, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x42, + 0x61, 0x74, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x67, 0x65, + 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x42, 0x61, + 0x74, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, + 0x0c, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x6f, 0x6c, 0x6c, 0x75, 0x70, 0x12, 0x1e, 0x2e, + 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, + 0x52, 0x6f, 0x6c, 0x6c, 0x75, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, + 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, + 0x52, 0x6f, 0x6c, 0x6c, 0x75, 0x70, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, + 0x12, 0x69, 0x0a, 0x14, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, + 0x68, 0x61, 0x69, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x12, 0x26, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, + 0x61, 0x74, 0x65, 0x64, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x72, 0x6f, 0x73, 0x73, + 0x43, 0x68, 0x61, 0x69, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x1a, 0x27, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x45, 0x78, 0x70, + 0x6f, 0x72, 0x74, 0x43, 0x72, 0x6f, 0x73, 0x73, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x44, 0x61, 0x74, + 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6c, 0x0a, 0x15, 0x44, + 0x65, 0x62, 0x75, 0x67, 0x54, 0x72, 0x61, 0x63, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x27, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, + 0x2e, 0x44, 0x65, 0x62, 0x75, 0x67, 0x54, 0x72, 0x61, 0x63, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, + 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, + 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x44, 0x65, 0x62, 0x75, 0x67, 0x54, + 0x72, 0x61, 0x63, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5a, 0x0a, 0x0f, 0x53, 0x74, 0x72, + 0x65, 0x61, 0x6d, 0x4c, 0x32, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x73, 0x12, 0x21, 0x2e, 0x67, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x4c, + 0x32, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, + 0x20, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x45, 0x6e, 0x63, 0x6f, + 0x64, 0x65, 0x64, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x6c, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x74, 0x61, + 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x27, + 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x6f, + 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, + 0x74, 0x65, 0x64, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x74, + 0x72, 0x61, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x22, 0x00, 0x12, 0x66, 0x0a, 0x13, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x50, 0x75, + 0x62, 0x6c, 0x69, 0x63, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x25, 0x2e, 0x67, 0x65, 0x6e, + 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x45, 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x50, 0x75, + 0x62, 0x6c, 0x69, 0x63, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x1a, 0x26, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x45, 0x6e, + 0x63, 0x6c, 0x61, 0x76, 0x65, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x43, 0x6f, 0x6e, 0x66, 0x69, + 0x67, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x0a, 0x4d, + 0x61, 0x6b, 0x65, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x12, 0x1c, 0x2e, 0x67, 0x65, 0x6e, 0x65, + 0x72, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x4d, 0x61, 0x6b, 0x65, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, + 0x74, 0x65, 0x64, 0x2e, 0x4d, 0x61, 0x6b, 0x65, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0c, 0x41, 0x64, 0x64, 0x53, + 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x72, 0x12, 0x1e, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, + 0x61, 0x74, 0x65, 0x64, 0x2e, 0x41, 0x64, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, + 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x67, 0x65, 0x6e, 0x65, 0x72, + 0x61, 0x74, 0x65, 0x64, 0x2e, 0x41, 0x64, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, + 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x17, 0x5a, 0x15, 0x65, + 0x6e, 0x63, 0x6c, 0x61, 0x76, 0x65, 0x2f, 0x72, 0x70, 0x63, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, + 0x61, 0x74, 0x65, 0x64, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -4098,7 +4098,7 @@ func file_enclave_proto_rawDescGZIP() []byte { } var file_enclave_proto_msgTypes = make([]protoimpl.MessageInfo, 65) -var file_enclave_proto_goTypes = []any{ +var file_enclave_proto_goTypes = []interface{}{ (*EnclavePublicConfigRequest)(nil), // 0: generated.EnclavePublicConfigRequest (*EnclavePublicConfigResponse)(nil), // 1: generated.EnclavePublicConfigResponse (*GetBatchRequest)(nil), // 2: generated.GetBatchRequest @@ -4265,7 +4265,7 @@ func file_enclave_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_enclave_proto_msgTypes[0].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EnclavePublicConfigRequest); i { case 0: return &v.state @@ -4277,7 +4277,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[1].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EnclavePublicConfigResponse); i { case 0: return &v.state @@ -4289,7 +4289,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[2].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetBatchRequest); i { case 0: return &v.state @@ -4301,7 +4301,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[3].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetBatchBySeqNoRequest); i { case 0: return &v.state @@ -4313,7 +4313,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[4].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetBatchResponse); i { case 0: return &v.state @@ -4325,7 +4325,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[5].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetRollupDataRequest); i { case 0: return &v.state @@ -4337,7 +4337,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[6].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetRollupDataResponse); i { case 0: return &v.state @@ -4349,7 +4349,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[7].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*PublicRollupDataMsg); i { case 0: return &v.state @@ -4361,7 +4361,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[8].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*StreamL2UpdatesRequest); i { case 0: return &v.state @@ -4373,7 +4373,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[9].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EncodedUpdateResponse); i { case 0: return &v.state @@ -4385,7 +4385,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[10].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*Pagination); i { case 0: return &v.state @@ -4397,7 +4397,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[11].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SystemError); i { case 0: return &v.state @@ -4409,7 +4409,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[12].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetTotalContractCountRequest); i { case 0: return &v.state @@ -4421,7 +4421,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[13].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetTotalContractCountResponse); i { case 0: return &v.state @@ -4433,7 +4433,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[14].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DebugTraceTransactionRequest); i { case 0: return &v.state @@ -4445,7 +4445,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[15].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*DebugTraceTransactionResponse); i { case 0: return &v.state @@ -4457,7 +4457,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[16].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateBatchRequest); i { case 0: return &v.state @@ -4469,7 +4469,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[17].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateBatchResponse); i { case 0: return &v.state @@ -4481,7 +4481,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[18].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateRollupRequest); i { case 0: return &v.state @@ -4493,7 +4493,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[19].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CreateRollupResponse); i { case 0: return &v.state @@ -4505,7 +4505,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[20].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExportCrossChainDataRequest); i { case 0: return &v.state @@ -4517,7 +4517,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[21].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExportCrossChainDataResponse); i { case 0: return &v.state @@ -4529,7 +4529,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[22].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*StatusRequest); i { case 0: return &v.state @@ -4541,7 +4541,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[23].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*StatusResponse); i { case 0: return &v.state @@ -4553,7 +4553,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[24].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MakeActiveRequest); i { case 0: return &v.state @@ -4565,7 +4565,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[25].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*MakeActiveResponse); i { case 0: return &v.state @@ -4577,7 +4577,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[26].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AddSequencerRequest); i { case 0: return &v.state @@ -4589,7 +4589,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[27].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AddSequencerResponse); i { case 0: return &v.state @@ -4601,7 +4601,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[28].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AttestationRequest); i { case 0: return &v.state @@ -4613,7 +4613,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[29].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AttestationResponse); i { case 0: return &v.state @@ -4625,7 +4625,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[30].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateSecretRequest); i { case 0: return &v.state @@ -4637,7 +4637,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[31].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GenerateSecretResponse); i { case 0: return &v.state @@ -4649,7 +4649,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[32].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*InitEnclaveRequest); i { case 0: return &v.state @@ -4661,7 +4661,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[33].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*InitEnclaveResponse); i { case 0: return &v.state @@ -4673,7 +4673,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[34].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EnclaveIDRequest); i { case 0: return &v.state @@ -4685,7 +4685,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[35].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EnclaveIDResponse); i { case 0: return &v.state @@ -4697,7 +4697,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[36].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*StartRequest); i { case 0: return &v.state @@ -4709,7 +4709,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[37].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*StartResponse); i { case 0: return &v.state @@ -4721,7 +4721,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[38].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SubmitBlockRequest); i { case 0: return &v.state @@ -4733,7 +4733,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[39].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SubmitBlockResponse); i { case 0: return &v.state @@ -4745,7 +4745,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[40].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EncCallRequest); i { case 0: return &v.state @@ -4757,7 +4757,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[41].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EncCallResponse); i { case 0: return &v.state @@ -4769,7 +4769,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[42].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SubmitBatchRequest); i { case 0: return &v.state @@ -4781,7 +4781,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[43].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SubmitBatchResponse); i { case 0: return &v.state @@ -4793,7 +4793,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[44].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*StopRequest); i { case 0: return &v.state @@ -4805,7 +4805,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[45].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*StopResponse); i { case 0: return &v.state @@ -4817,7 +4817,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[46].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetCodeRequest); i { case 0: return &v.state @@ -4829,7 +4829,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[47].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*GetCodeResponse); i { case 0: return &v.state @@ -4841,7 +4841,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[48].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SubscribeRequest); i { case 0: return &v.state @@ -4853,7 +4853,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[49].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SubscribeResponse); i { case 0: return &v.state @@ -4865,7 +4865,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[50].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UnsubscribeRequest); i { case 0: return &v.state @@ -4877,7 +4877,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[51].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*UnsubscribeResponse); i { case 0: return &v.state @@ -4889,7 +4889,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[52].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*HealthCheckResponse); i { case 0: return &v.state @@ -4901,7 +4901,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[53].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*EmptyArgs); i { case 0: return &v.state @@ -4913,7 +4913,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[54].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*AttestationReportMsg); i { case 0: return &v.state @@ -4925,7 +4925,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[55].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BlockSubmissionResponseMsg); i { case 0: return &v.state @@ -4937,7 +4937,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[56].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BlockSubmissionErrorMsg); i { case 0: return &v.state @@ -4949,7 +4949,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[57].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CrossChainMsg); i { case 0: return &v.state @@ -4961,7 +4961,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[58].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExtBatchMsg); i { case 0: return &v.state @@ -4973,7 +4973,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[59].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*BatchHeaderMsg); i { case 0: return &v.state @@ -4985,7 +4985,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[60].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ExtRollupMsg); i { case 0: return &v.state @@ -4997,7 +4997,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[61].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*RollupHeaderMsg); i { case 0: return &v.state @@ -5009,7 +5009,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[62].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*SecretResponseMsg); i { case 0: return &v.state @@ -5021,7 +5021,7 @@ func file_enclave_proto_init() { return nil } } - file_enclave_proto_msgTypes[63].Exporter = func(v any, i int) any { + file_enclave_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*WithdrawalMsg); i { case 0: return &v.state @@ -5034,7 +5034,7 @@ func file_enclave_proto_init() { } } } - file_enclave_proto_msgTypes[18].OneofWrappers = []any{} + file_enclave_proto_msgTypes[18].OneofWrappers = []interface{}{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ diff --git a/go/common/rpc/generated/enclave.proto b/go/common/rpc/generated/enclave.proto index fb826e0877..6357c197cd 100644 --- a/go/common/rpc/generated/enclave.proto +++ b/go/common/rpc/generated/enclave.proto @@ -181,7 +181,7 @@ message StartResponse { message SubmitBlockRequest { bytes encodedBlock = 1; - bytes encodedReceipts = 2; + bytes encodedProcessedData = 2; } message SubmitBlockResponse { diff --git a/go/common/rpc/generated/enclave_grpc.pb.go b/go/common/rpc/generated/enclave_grpc.pb.go index f50a9cc026..ee4db3cdeb 100644 --- a/go/common/rpc/generated/enclave_grpc.pb.go +++ b/go/common/rpc/generated/enclave_grpc.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: -// - protoc-gen-go-grpc v1.5.1 -// - protoc v5.28.2 +// - protoc-gen-go-grpc v1.3.0 +// - protoc v4.25.3 // source: enclave.proto package generated @@ -15,8 +15,8 @@ import ( // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. -// Requires gRPC-Go v1.64.0 or later. -const _ = grpc.SupportPackageIsVersion9 +// Requires gRPC-Go v1.32.0 or later. +const _ = grpc.SupportPackageIsVersion7 const ( EnclaveProto_Status_FullMethodName = "/generated.EnclaveProto/Status" @@ -70,7 +70,7 @@ type EnclaveProtoClient interface { CreateRollup(ctx context.Context, in *CreateRollupRequest, opts ...grpc.CallOption) (*CreateRollupResponse, error) ExportCrossChainData(ctx context.Context, in *ExportCrossChainDataRequest, opts ...grpc.CallOption) (*ExportCrossChainDataResponse, error) DebugTraceTransaction(ctx context.Context, in *DebugTraceTransactionRequest, opts ...grpc.CallOption) (*DebugTraceTransactionResponse, error) - StreamL2Updates(ctx context.Context, in *StreamL2UpdatesRequest, opts ...grpc.CallOption) (grpc.ServerStreamingClient[EncodedUpdateResponse], error) + StreamL2Updates(ctx context.Context, in *StreamL2UpdatesRequest, opts ...grpc.CallOption) (EnclaveProto_StreamL2UpdatesClient, error) GetTotalContractCount(ctx context.Context, in *GetTotalContractCountRequest, opts ...grpc.CallOption) (*GetTotalContractCountResponse, error) EnclavePublicConfig(ctx context.Context, in *EnclavePublicConfigRequest, opts ...grpc.CallOption) (*EnclavePublicConfigResponse, error) MakeActive(ctx context.Context, in *MakeActiveRequest, opts ...grpc.CallOption) (*MakeActiveResponse, error) @@ -86,9 +86,8 @@ func NewEnclaveProtoClient(cc grpc.ClientConnInterface) EnclaveProtoClient { } func (c *enclaveProtoClient) Status(ctx context.Context, in *StatusRequest, opts ...grpc.CallOption) (*StatusResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(StatusResponse) - err := c.cc.Invoke(ctx, EnclaveProto_Status_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_Status_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -96,9 +95,8 @@ func (c *enclaveProtoClient) Status(ctx context.Context, in *StatusRequest, opts } func (c *enclaveProtoClient) Attestation(ctx context.Context, in *AttestationRequest, opts ...grpc.CallOption) (*AttestationResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(AttestationResponse) - err := c.cc.Invoke(ctx, EnclaveProto_Attestation_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_Attestation_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -106,9 +104,8 @@ func (c *enclaveProtoClient) Attestation(ctx context.Context, in *AttestationReq } func (c *enclaveProtoClient) GenerateSecret(ctx context.Context, in *GenerateSecretRequest, opts ...grpc.CallOption) (*GenerateSecretResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GenerateSecretResponse) - err := c.cc.Invoke(ctx, EnclaveProto_GenerateSecret_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_GenerateSecret_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -116,9 +113,8 @@ func (c *enclaveProtoClient) GenerateSecret(ctx context.Context, in *GenerateSec } func (c *enclaveProtoClient) InitEnclave(ctx context.Context, in *InitEnclaveRequest, opts ...grpc.CallOption) (*InitEnclaveResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(InitEnclaveResponse) - err := c.cc.Invoke(ctx, EnclaveProto_InitEnclave_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_InitEnclave_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -126,9 +122,8 @@ func (c *enclaveProtoClient) InitEnclave(ctx context.Context, in *InitEnclaveReq } func (c *enclaveProtoClient) EnclaveID(ctx context.Context, in *EnclaveIDRequest, opts ...grpc.CallOption) (*EnclaveIDResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(EnclaveIDResponse) - err := c.cc.Invoke(ctx, EnclaveProto_EnclaveID_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_EnclaveID_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -136,9 +131,8 @@ func (c *enclaveProtoClient) EnclaveID(ctx context.Context, in *EnclaveIDRequest } func (c *enclaveProtoClient) SubmitL1Block(ctx context.Context, in *SubmitBlockRequest, opts ...grpc.CallOption) (*SubmitBlockResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(SubmitBlockResponse) - err := c.cc.Invoke(ctx, EnclaveProto_SubmitL1Block_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_SubmitL1Block_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -146,9 +140,8 @@ func (c *enclaveProtoClient) SubmitL1Block(ctx context.Context, in *SubmitBlockR } func (c *enclaveProtoClient) EncryptedRPC(ctx context.Context, in *EncCallRequest, opts ...grpc.CallOption) (*EncCallResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(EncCallResponse) - err := c.cc.Invoke(ctx, EnclaveProto_EncryptedRPC_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_EncryptedRPC_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -156,9 +149,8 @@ func (c *enclaveProtoClient) EncryptedRPC(ctx context.Context, in *EncCallReques } func (c *enclaveProtoClient) SubmitBatch(ctx context.Context, in *SubmitBatchRequest, opts ...grpc.CallOption) (*SubmitBatchResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(SubmitBatchResponse) - err := c.cc.Invoke(ctx, EnclaveProto_SubmitBatch_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_SubmitBatch_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -166,9 +158,8 @@ func (c *enclaveProtoClient) SubmitBatch(ctx context.Context, in *SubmitBatchReq } func (c *enclaveProtoClient) Stop(ctx context.Context, in *StopRequest, opts ...grpc.CallOption) (*StopResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(StopResponse) - err := c.cc.Invoke(ctx, EnclaveProto_Stop_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_Stop_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -176,9 +167,8 @@ func (c *enclaveProtoClient) Stop(ctx context.Context, in *StopRequest, opts ... } func (c *enclaveProtoClient) GetCode(ctx context.Context, in *GetCodeRequest, opts ...grpc.CallOption) (*GetCodeResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GetCodeResponse) - err := c.cc.Invoke(ctx, EnclaveProto_GetCode_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_GetCode_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -186,9 +176,8 @@ func (c *enclaveProtoClient) GetCode(ctx context.Context, in *GetCodeRequest, op } func (c *enclaveProtoClient) Subscribe(ctx context.Context, in *SubscribeRequest, opts ...grpc.CallOption) (*SubscribeResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(SubscribeResponse) - err := c.cc.Invoke(ctx, EnclaveProto_Subscribe_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_Subscribe_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -196,9 +185,8 @@ func (c *enclaveProtoClient) Subscribe(ctx context.Context, in *SubscribeRequest } func (c *enclaveProtoClient) Unsubscribe(ctx context.Context, in *UnsubscribeRequest, opts ...grpc.CallOption) (*UnsubscribeResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(UnsubscribeResponse) - err := c.cc.Invoke(ctx, EnclaveProto_Unsubscribe_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_Unsubscribe_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -206,9 +194,8 @@ func (c *enclaveProtoClient) Unsubscribe(ctx context.Context, in *UnsubscribeReq } func (c *enclaveProtoClient) HealthCheck(ctx context.Context, in *EmptyArgs, opts ...grpc.CallOption) (*HealthCheckResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(HealthCheckResponse) - err := c.cc.Invoke(ctx, EnclaveProto_HealthCheck_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_HealthCheck_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -216,9 +203,8 @@ func (c *enclaveProtoClient) HealthCheck(ctx context.Context, in *EmptyArgs, opt } func (c *enclaveProtoClient) GetBatch(ctx context.Context, in *GetBatchRequest, opts ...grpc.CallOption) (*GetBatchResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GetBatchResponse) - err := c.cc.Invoke(ctx, EnclaveProto_GetBatch_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_GetBatch_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -226,9 +212,8 @@ func (c *enclaveProtoClient) GetBatch(ctx context.Context, in *GetBatchRequest, } func (c *enclaveProtoClient) GetBatchBySeqNo(ctx context.Context, in *GetBatchBySeqNoRequest, opts ...grpc.CallOption) (*GetBatchResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GetBatchResponse) - err := c.cc.Invoke(ctx, EnclaveProto_GetBatchBySeqNo_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_GetBatchBySeqNo_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -236,9 +221,8 @@ func (c *enclaveProtoClient) GetBatchBySeqNo(ctx context.Context, in *GetBatchBy } func (c *enclaveProtoClient) GetRollupData(ctx context.Context, in *GetRollupDataRequest, opts ...grpc.CallOption) (*GetRollupDataResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GetRollupDataResponse) - err := c.cc.Invoke(ctx, EnclaveProto_GetRollupData_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_GetRollupData_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -246,9 +230,8 @@ func (c *enclaveProtoClient) GetRollupData(ctx context.Context, in *GetRollupDat } func (c *enclaveProtoClient) CreateBatch(ctx context.Context, in *CreateBatchRequest, opts ...grpc.CallOption) (*CreateBatchResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(CreateBatchResponse) - err := c.cc.Invoke(ctx, EnclaveProto_CreateBatch_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_CreateBatch_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -256,9 +239,8 @@ func (c *enclaveProtoClient) CreateBatch(ctx context.Context, in *CreateBatchReq } func (c *enclaveProtoClient) CreateRollup(ctx context.Context, in *CreateRollupRequest, opts ...grpc.CallOption) (*CreateRollupResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(CreateRollupResponse) - err := c.cc.Invoke(ctx, EnclaveProto_CreateRollup_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_CreateRollup_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -266,9 +248,8 @@ func (c *enclaveProtoClient) CreateRollup(ctx context.Context, in *CreateRollupR } func (c *enclaveProtoClient) ExportCrossChainData(ctx context.Context, in *ExportCrossChainDataRequest, opts ...grpc.CallOption) (*ExportCrossChainDataResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ExportCrossChainDataResponse) - err := c.cc.Invoke(ctx, EnclaveProto_ExportCrossChainData_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_ExportCrossChainData_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -276,22 +257,20 @@ func (c *enclaveProtoClient) ExportCrossChainData(ctx context.Context, in *Expor } func (c *enclaveProtoClient) DebugTraceTransaction(ctx context.Context, in *DebugTraceTransactionRequest, opts ...grpc.CallOption) (*DebugTraceTransactionResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(DebugTraceTransactionResponse) - err := c.cc.Invoke(ctx, EnclaveProto_DebugTraceTransaction_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_DebugTraceTransaction_FullMethodName, in, out, opts...) if err != nil { return nil, err } return out, nil } -func (c *enclaveProtoClient) StreamL2Updates(ctx context.Context, in *StreamL2UpdatesRequest, opts ...grpc.CallOption) (grpc.ServerStreamingClient[EncodedUpdateResponse], error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) - stream, err := c.cc.NewStream(ctx, &EnclaveProto_ServiceDesc.Streams[0], EnclaveProto_StreamL2Updates_FullMethodName, cOpts...) +func (c *enclaveProtoClient) StreamL2Updates(ctx context.Context, in *StreamL2UpdatesRequest, opts ...grpc.CallOption) (EnclaveProto_StreamL2UpdatesClient, error) { + stream, err := c.cc.NewStream(ctx, &EnclaveProto_ServiceDesc.Streams[0], EnclaveProto_StreamL2Updates_FullMethodName, opts...) if err != nil { return nil, err } - x := &grpc.GenericClientStream[StreamL2UpdatesRequest, EncodedUpdateResponse]{ClientStream: stream} + x := &enclaveProtoStreamL2UpdatesClient{stream} if err := x.ClientStream.SendMsg(in); err != nil { return nil, err } @@ -301,13 +280,26 @@ func (c *enclaveProtoClient) StreamL2Updates(ctx context.Context, in *StreamL2Up return x, nil } -// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name. -type EnclaveProto_StreamL2UpdatesClient = grpc.ServerStreamingClient[EncodedUpdateResponse] +type EnclaveProto_StreamL2UpdatesClient interface { + Recv() (*EncodedUpdateResponse, error) + grpc.ClientStream +} + +type enclaveProtoStreamL2UpdatesClient struct { + grpc.ClientStream +} + +func (x *enclaveProtoStreamL2UpdatesClient) Recv() (*EncodedUpdateResponse, error) { + m := new(EncodedUpdateResponse) + if err := x.ClientStream.RecvMsg(m); err != nil { + return nil, err + } + return m, nil +} func (c *enclaveProtoClient) GetTotalContractCount(ctx context.Context, in *GetTotalContractCountRequest, opts ...grpc.CallOption) (*GetTotalContractCountResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(GetTotalContractCountResponse) - err := c.cc.Invoke(ctx, EnclaveProto_GetTotalContractCount_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_GetTotalContractCount_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -315,9 +307,8 @@ func (c *enclaveProtoClient) GetTotalContractCount(ctx context.Context, in *GetT } func (c *enclaveProtoClient) EnclavePublicConfig(ctx context.Context, in *EnclavePublicConfigRequest, opts ...grpc.CallOption) (*EnclavePublicConfigResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(EnclavePublicConfigResponse) - err := c.cc.Invoke(ctx, EnclaveProto_EnclavePublicConfig_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_EnclavePublicConfig_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -325,9 +316,8 @@ func (c *enclaveProtoClient) EnclavePublicConfig(ctx context.Context, in *Enclav } func (c *enclaveProtoClient) MakeActive(ctx context.Context, in *MakeActiveRequest, opts ...grpc.CallOption) (*MakeActiveResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(MakeActiveResponse) - err := c.cc.Invoke(ctx, EnclaveProto_MakeActive_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_MakeActive_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -335,9 +325,8 @@ func (c *enclaveProtoClient) MakeActive(ctx context.Context, in *MakeActiveReque } func (c *enclaveProtoClient) AddSequencer(ctx context.Context, in *AddSequencerRequest, opts ...grpc.CallOption) (*AddSequencerResponse, error) { - cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(AddSequencerResponse) - err := c.cc.Invoke(ctx, EnclaveProto_AddSequencer_FullMethodName, in, out, cOpts...) + err := c.cc.Invoke(ctx, EnclaveProto_AddSequencer_FullMethodName, in, out, opts...) if err != nil { return nil, err } @@ -346,7 +335,7 @@ func (c *enclaveProtoClient) AddSequencer(ctx context.Context, in *AddSequencerR // EnclaveProtoServer is the server API for EnclaveProto service. // All implementations must embed UnimplementedEnclaveProtoServer -// for forward compatibility. +// for forward compatibility type EnclaveProtoServer interface { Status(context.Context, *StatusRequest) (*StatusResponse, error) Attestation(context.Context, *AttestationRequest) (*AttestationResponse, error) @@ -368,7 +357,7 @@ type EnclaveProtoServer interface { CreateRollup(context.Context, *CreateRollupRequest) (*CreateRollupResponse, error) ExportCrossChainData(context.Context, *ExportCrossChainDataRequest) (*ExportCrossChainDataResponse, error) DebugTraceTransaction(context.Context, *DebugTraceTransactionRequest) (*DebugTraceTransactionResponse, error) - StreamL2Updates(*StreamL2UpdatesRequest, grpc.ServerStreamingServer[EncodedUpdateResponse]) error + StreamL2Updates(*StreamL2UpdatesRequest, EnclaveProto_StreamL2UpdatesServer) error GetTotalContractCount(context.Context, *GetTotalContractCountRequest) (*GetTotalContractCountResponse, error) EnclavePublicConfig(context.Context, *EnclavePublicConfigRequest) (*EnclavePublicConfigResponse, error) MakeActive(context.Context, *MakeActiveRequest) (*MakeActiveResponse, error) @@ -376,12 +365,9 @@ type EnclaveProtoServer interface { mustEmbedUnimplementedEnclaveProtoServer() } -// UnimplementedEnclaveProtoServer must be embedded to have -// forward compatible implementations. -// -// NOTE: this should be embedded by value instead of pointer to avoid a nil -// pointer dereference when methods are called. -type UnimplementedEnclaveProtoServer struct{} +// UnimplementedEnclaveProtoServer must be embedded to have forward compatible implementations. +type UnimplementedEnclaveProtoServer struct { +} func (UnimplementedEnclaveProtoServer) Status(context.Context, *StatusRequest) (*StatusResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method Status not implemented") @@ -443,7 +429,7 @@ func (UnimplementedEnclaveProtoServer) ExportCrossChainData(context.Context, *Ex func (UnimplementedEnclaveProtoServer) DebugTraceTransaction(context.Context, *DebugTraceTransactionRequest) (*DebugTraceTransactionResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method DebugTraceTransaction not implemented") } -func (UnimplementedEnclaveProtoServer) StreamL2Updates(*StreamL2UpdatesRequest, grpc.ServerStreamingServer[EncodedUpdateResponse]) error { +func (UnimplementedEnclaveProtoServer) StreamL2Updates(*StreamL2UpdatesRequest, EnclaveProto_StreamL2UpdatesServer) error { return status.Errorf(codes.Unimplemented, "method StreamL2Updates not implemented") } func (UnimplementedEnclaveProtoServer) GetTotalContractCount(context.Context, *GetTotalContractCountRequest) (*GetTotalContractCountResponse, error) { @@ -459,7 +445,6 @@ func (UnimplementedEnclaveProtoServer) AddSequencer(context.Context, *AddSequenc return nil, status.Errorf(codes.Unimplemented, "method AddSequencer not implemented") } func (UnimplementedEnclaveProtoServer) mustEmbedUnimplementedEnclaveProtoServer() {} -func (UnimplementedEnclaveProtoServer) testEmbeddedByValue() {} // UnsafeEnclaveProtoServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to EnclaveProtoServer will @@ -469,13 +454,6 @@ type UnsafeEnclaveProtoServer interface { } func RegisterEnclaveProtoServer(s grpc.ServiceRegistrar, srv EnclaveProtoServer) { - // If the following call pancis, it indicates UnimplementedEnclaveProtoServer was - // embedded by pointer and is nil. This will cause panics if an - // unimplemented method is ever invoked, so we test this at initialization - // time to prevent it from happening at runtime later due to I/O. - if t, ok := srv.(interface{ testEmbeddedByValue() }); ok { - t.testEmbeddedByValue() - } s.RegisterService(&EnclaveProto_ServiceDesc, srv) } @@ -844,11 +822,21 @@ func _EnclaveProto_StreamL2Updates_Handler(srv interface{}, stream grpc.ServerSt if err := stream.RecvMsg(m); err != nil { return err } - return srv.(EnclaveProtoServer).StreamL2Updates(m, &grpc.GenericServerStream[StreamL2UpdatesRequest, EncodedUpdateResponse]{ServerStream: stream}) + return srv.(EnclaveProtoServer).StreamL2Updates(m, &enclaveProtoStreamL2UpdatesServer{stream}) +} + +type EnclaveProto_StreamL2UpdatesServer interface { + Send(*EncodedUpdateResponse) error + grpc.ServerStream } -// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name. -type EnclaveProto_StreamL2UpdatesServer = grpc.ServerStreamingServer[EncodedUpdateResponse] +type enclaveProtoStreamL2UpdatesServer struct { + grpc.ServerStream +} + +func (x *enclaveProtoStreamL2UpdatesServer) Send(m *EncodedUpdateResponse) error { + return x.ServerStream.SendMsg(m) +} func _EnclaveProto_GetTotalContractCount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetTotalContractCountRequest) From 24f0d522e71065b7746247ec1e808d7c23f78e25 Mon Sep 17 00:00:00 2001 From: Will Hester Date: Wed, 27 Nov 2024 15:11:09 +0000 Subject: [PATCH 04/21] stashing --- go/common/enclave.go | 3 +- go/common/host/services.go | 2 + go/enclave/components/block_processor.go | 5 +- go/enclave/components/interfaces.go | 3 +- .../crosschain/block_message_extractor.go | 2 +- go/enclave/crosschain/common.go | 20 ++- go/enclave/enclave_admin_service.go | 15 +- go/ethadapter/l1_transaction.go | 28 +++ go/host/container/host_container.go | 4 +- go/host/enclave/guardian.go | 39 ++++- go/host/l1/blockrepository.go | 163 ++++++++++++++++-- go/host/l1/publisher.go | 1 - go/host/rpc/enclaverpc/enclave_client.go | 7 +- 13 files changed, 247 insertions(+), 45 deletions(-) diff --git a/go/common/enclave.go b/go/common/enclave.go index 18eab5287c..f896586935 100644 --- a/go/common/enclave.go +++ b/go/common/enclave.go @@ -3,6 +3,7 @@ package common import ( "context" "encoding/json" + "github.com/ten-protocol/go-ten/go/ethadapter" "math/big" "github.com/ethereum/go-ethereum/crypto/kzg4844" @@ -73,7 +74,7 @@ type EnclaveAdmin interface { // It is the responsibility of the host to gossip the returned rollup // For good functioning the caller should always submit blocks ordered by height // submitting a block before receiving ancestors of it, will result in it being ignored - SubmitL1Block(ctx context.Context, blockHeader *types.Header, receipts []*TxAndReceiptAndBlobs) (*BlockSubmissionResponse, SystemError) + SubmitL1Block(ctx context.Context, blockHeader *types.Header, processedData *ethadapter.ProcessedL1Data) (*BlockSubmissionResponse, SystemError) // SubmitBatch submits a batch received from the sequencer for processing. SubmitBatch(ctx context.Context, batch *ExtBatch) SystemError diff --git a/go/common/host/services.go b/go/common/host/services.go index ba8c27d565..ac240f36f8 100644 --- a/go/common/host/services.go +++ b/go/common/host/services.go @@ -87,6 +87,8 @@ type L1BlockRepository interface { FetchNextBlock(prevBlock gethcommon.Hash) (*types.Block, bool, error) // FetchObscuroReceipts returns the receipts for a given L1 block FetchObscuroReceipts(block *common.L1Block) (types.Receipts, error) + // ExtractTenTransactions returns the tx data and types of those relevant to Ten to be consumed by the enclave + ExtractTenTransactions(block *common.L1Block) (*ethadapter.ProcessedL1Data, error) } // L1BlockHandler is an interface for receiving new blocks from the repository as they arrive diff --git a/go/enclave/components/block_processor.go b/go/enclave/components/block_processor.go index 5f7bac53bb..56e0e354f7 100644 --- a/go/enclave/components/block_processor.go +++ b/go/enclave/components/block_processor.go @@ -4,6 +4,7 @@ import ( "context" "errors" "fmt" + "github.com/ten-protocol/go-ten/go/ethadapter" "time" "github.com/ethereum/go-ethereum/core/types" @@ -59,8 +60,8 @@ func NewBlockProcessor(storage storage.Storage, cc *crosschain.Processors, gasOr } } -func (bp *l1BlockProcessor) Process(ctx context.Context, br *common.BlockAndReceipts) (*BlockIngestionType, error) { - defer core.LogMethodDuration(bp.logger, measure.NewStopwatch(), "L1 block processed", log.BlockHashKey, br.BlockHeader.Hash()) +func (bp *l1BlockProcessor) Process(ctx context.Context, processed *ethadapter.ProcessedL1Data) (*BlockIngestionType, error) { + defer core.LogMethodDuration(bp.logger, measure.NewStopwatch(), "L1 block processed", log.BlockHashKey, processed.BlockHeader.Hash()) ingestion, err := bp.tryAndInsertBlock(ctx, br) if err != nil { diff --git a/go/enclave/components/interfaces.go b/go/enclave/components/interfaces.go index b14dcc884e..841cc0fa31 100644 --- a/go/enclave/components/interfaces.go +++ b/go/enclave/components/interfaces.go @@ -3,6 +3,7 @@ package components import ( "context" "errors" + "github.com/ten-protocol/go-ten/go/ethadapter" "math/big" gethcommon "github.com/ethereum/go-ethereum/common" @@ -38,7 +39,7 @@ func (bit *BlockIngestionType) IsFork() bool { } type L1BlockProcessor interface { - Process(ctx context.Context, br *common.BlockAndReceipts) (*BlockIngestionType, error) + Process(ctx context.Context, br *ethadapter.ProcessedL1Data) (*BlockIngestionType, error) GetHead(context.Context) (*types.Header, error) GetCrossChainContractAddress() *gethcommon.Address HealthCheck() (bool, error) diff --git a/go/enclave/crosschain/block_message_extractor.go b/go/enclave/crosschain/block_message_extractor.go index a38d003603..1080d775e5 100644 --- a/go/enclave/crosschain/block_message_extractor.go +++ b/go/enclave/crosschain/block_message_extractor.go @@ -123,7 +123,7 @@ func (m *blockMessageExtractor) getCrossChainMessages(block *types.Header, recei } m.logger.Trace("Extracted cross chain logs from receipts", "logCount", len(logs)) - messages, err := convertLogsToMessages(logs, CrossChainEventName, MessageBusABI) + messages, err := ConvertLogsToMessages(logs, CrossChainEventName, MessageBusABI) if err != nil { m.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) return make(common.CrossChainMessages, 0), err diff --git a/go/enclave/crosschain/common.go b/go/enclave/crosschain/common.go index 68806301ed..b472f03154 100644 --- a/go/enclave/crosschain/common.go +++ b/go/enclave/crosschain/common.go @@ -23,11 +23,13 @@ import ( ) var ( - MessageBusABI, _ = abi.JSON(strings.NewReader(MessageBus.MessageBusMetaData.ABI)) - CrossChainEventName = "LogMessagePublished" - CrossChainEventID = MessageBusABI.Events[CrossChainEventName].ID - ValueTransferEventName = "ValueTransfer" - ValueTransferEventID = MessageBusABI.Events["ValueTransfer"].ID + MessageBusABI, _ = abi.JSON(strings.NewReader(MessageBus.MessageBusMetaData.ABI)) + CrossChainEventName = "LogMessagePublished" + CrossChainEventID = MessageBusABI.Events[CrossChainEventName].ID + ValueTransferEventName = "ValueTransfer" + ValueTransferEventID = MessageBusABI.Events["ValueTransfer"].ID + SequencerEnclaveGrantedEventName = "SequencerEnclaveGranted" + SequencerEnclaveGrantedEventID = MessageBusABI.Events["SequencerEnclaveGranted"].ID ) func lazilyLogReceiptChecksum(block *types.Header, receipts types.Receipts, logger gethlog.Logger) { @@ -64,7 +66,7 @@ func filterLogsFromReceipts(receipts types.Receipts, address *gethcommon.Address continue } - logsForReceipt, err := filterLogsFromReceipt(receipt, address, topic) + logsForReceipt, err := FilterLogsFromReceipt(receipt, address, topic) if err != nil { return logs, err } @@ -75,8 +77,8 @@ func filterLogsFromReceipts(receipts types.Receipts, address *gethcommon.Address return logs, nil } -// filterLogsFromReceipt - filters the receipt for logs matching address, if provided and matching any of the provided topics. -func filterLogsFromReceipt(receipt *types.Receipt, address *gethcommon.Address, topic *gethcommon.Hash) ([]types.Log, error) { +// FilterLogsFromReceipt - filters the receipt for logs matching address, if provided and matching any of the provided topics. +func FilterLogsFromReceipt(receipt *types.Receipt, address *gethcommon.Address, topic *gethcommon.Hash) ([]types.Log, error) { logs := make([]types.Log, 0) if receipt == nil { @@ -105,7 +107,7 @@ func filterLogsFromReceipt(receipt *types.Receipt, address *gethcommon.Address, } // convertLogsToMessages - converts the logs of the event to messages. The logs should be filtered, otherwise fails. -func convertLogsToMessages(logs []types.Log, eventName string, messageBusABI abi.ABI) (common.CrossChainMessages, error) { +func ConvertLogsToMessages(logs []types.Log, eventName string, messageBusABI abi.ABI) (common.CrossChainMessages, error) { messages := make(common.CrossChainMessages, 0) for _, log := range logs { diff --git a/go/enclave/enclave_admin_service.go b/go/enclave/enclave_admin_service.go index b38456ebb4..d8faa0a7f7 100644 --- a/go/enclave/enclave_admin_service.go +++ b/go/enclave/enclave_admin_service.go @@ -4,6 +4,7 @@ import ( "context" "errors" "fmt" + "github.com/ten-protocol/go-ten/go/ethadapter" "math/big" "sync" "time" @@ -125,18 +126,16 @@ func (e *enclaveAdminService) MakeActive() common.SystemError { } // SubmitL1Block is used to update the enclave with an additional L1 block. -func (e *enclaveAdminService) SubmitL1Block(ctx context.Context, blockHeader *types.Header, receipts []*common.TxAndReceiptAndBlobs) (*common.BlockSubmissionResponse, common.SystemError) { +func (e *enclaveAdminService) SubmitL1Block(ctx context.Context, blockHeader *types.Header, processedData *ethadapter.ProcessedL1Data) (*common.BlockSubmissionResponse, common.SystemError) { e.mainMutex.Lock() defer e.mainMutex.Unlock() e.logger.Info("SubmitL1Block", log.BlockHeightKey, blockHeader.Number, log.BlockHashKey, blockHeader.Hash()) - // If the block and receipts do not match, reject the block. - br, err := common.ParseBlockAndReceipts(blockHeader, receipts) - if err != nil { - return nil, e.rejectBlockErr(ctx, fmt.Errorf("could not submit L1 block. Cause: %w", err)) + // Verify the block header matches the one in processedData + if blockHeader.Hash() != processedData.BlockHeader.Hash() { + return nil, e.rejectBlockErr(ctx, fmt.Errorf("block header mismatch")) } - result, err := e.ingestL1Block(ctx, br) if err != nil { return nil, e.rejectBlockErr(ctx, fmt.Errorf("could not submit L1 block. Cause: %w", err)) @@ -418,8 +417,8 @@ func (e *enclaveAdminService) streamEventsForNewHeadBatch(ctx context.Context, b } } -func (e *enclaveAdminService) ingestL1Block(ctx context.Context, br *common.BlockAndReceipts) (*components.BlockIngestionType, error) { - e.logger.Info("Start ingesting block", log.BlockHashKey, br.BlockHeader.Hash()) +func (e *enclaveAdminService) ingestL1Block(ctx context.Context, processed *ethadapter.ProcessedL1Data) (*components.BlockIngestionType, error) { + e.logger.Info("Start ingesting block", log.BlockHashKey, processed.BlockHeader.Hash()) ingestion, err := e.l1BlockProcessor.Process(ctx, br) if err != nil { // only warn for unexpected errors diff --git a/go/ethadapter/l1_transaction.go b/go/ethadapter/l1_transaction.go index e9e2f867bc..330584a986 100644 --- a/go/ethadapter/l1_transaction.go +++ b/go/ethadapter/l1_transaction.go @@ -3,6 +3,8 @@ package ethadapter import ( "crypto/ecdsa" "fmt" + "github.com/ethereum/go-ethereum/core/types" + "github.com/ethereum/go-ethereum/crypto/kzg4844" "math/big" "github.com/ten-protocol/go-ten/go/common" @@ -76,3 +78,29 @@ type L1InitializeSecretTx struct { InitialSecret []byte Attestation common.EncodedAttestationReport } + +type L1TxType int + +const ( + RollupTx L1TxType = iota + SecretRequestTx + InitialiseSecretTx + CrossChainMessageTx + SequencerAddedTx + SetImportantContractsTx +) + +// ProcessedL1Data is submitted to the enclave by the guardian +type ProcessedL1Data struct { + BlockHeader *types.Header + Events map[L1TxType][]*L1TxData +} + +// L1TxData represents a processed L1 transaction that's relevant to us +type L1TxData struct { + Type L1Transaction + Transaction *types.Transaction + Receipt *types.Receipt + Blobs []*kzg4844.Blob // Only populated for blob transactions + CrossChainMessages *common.CrossChainMessages // Only populated for xchain txs +} diff --git a/go/host/container/host_container.go b/go/host/container/host_container.go index f361e8ae28..e05dfd3a17 100644 --- a/go/host/container/host_container.go +++ b/go/host/container/host_container.go @@ -7,7 +7,6 @@ import ( "github.com/ten-protocol/go-ten/lib/gethfork/node" - gethcommon "github.com/ethereum/go-ethereum/common" "github.com/ten-protocol/go-ten/go/host/l1" "github.com/ten-protocol/go-ten/go/common" @@ -145,12 +144,11 @@ func NewHostContainerFromConfig(cfg *hostconfig.HostConfig, logger gethlog.Logge }, logger) mgmtContractLib := mgmtcontractlib.NewMgmtContractLib(&cfg.ManagementContractAddress, logger) - obscuroRelevantContracts := []gethcommon.Address{cfg.ManagementContractAddress, cfg.MessageBusAddress} - l1Repo := l1.NewL1Repository(l1Client, obscuroRelevantContracts, logger) beaconClient := ethadapter.NewBeaconHTTPClient(new(http.Client), cfg.L1BeaconUrl) beaconFallback := ethadapter.NewBeaconHTTPClient(new(http.Client), cfg.L1BlobArchiveUrl) // we can add more fallback clients as they become available blobResolver := l1.NewBlobResolver(ethadapter.NewL1BeaconClient(beaconClient, beaconFallback)) + l1Repo := l1.NewL1Repository(l1Client, logger, mgmtContractLib, blobResolver, cfg.ManagementContractAddress, cfg.MessageBusAddress) return NewHostContainer(cfg, services, aggP2P, l1Client, l1Repo, enclaveClients, mgmtContractLib, ethWallet, rpcServer, logger, metricsService, blobResolver) } diff --git a/go/host/enclave/guardian.go b/go/host/enclave/guardian.go index 1f1d2fd4f0..eafc529cd4 100644 --- a/go/host/enclave/guardian.go +++ b/go/host/enclave/guardian.go @@ -423,14 +423,15 @@ func (g *Guardian) submitL1Block(block *common.L1Block, isLatest bool) (bool, er g.logger.Debug("Unable to submit block, enclave is busy processing data") return false, nil } - receipts, err := g.sl.L1Repo().FetchObscuroReceipts(block) + + processedData, err := g.sl.L1Repo().ExtractTenTransactions(block) if err != nil { g.submitDataLock.Unlock() // lock must be released before returning return false, fmt.Errorf("could not fetch obscuro receipts for block=%s - %w", block.Hash(), err) } - txsReceiptsAndBlobs, rollupTxs, contractAddressTxs := g.sl.L1Publisher().ExtractRelevantTenTransactions(block, receipts) + rollupTxs, contractAddressTxs := g.getRollupsAndContractAddrTxs(*processedData) - resp, err := g.enclaveClient.SubmitL1Block(context.Background(), block.Header(), txsReceiptsAndBlobs) + resp, err := g.enclaveClient.SubmitL1Block(context.Background(), block.Header(), processedData) g.submitDataLock.Unlock() // lock is only guarding the enclave call, so we can release it now if err != nil { if strings.Contains(err.Error(), errutil.ErrBlockAlreadyProcessed.Error()) { @@ -753,3 +754,35 @@ func (g *Guardian) getLatestBatchNo() (uint64, error) { } return fromBatch, nil } + +func (g *Guardian) getRollupsAndContractAddrTxs(data ethadapter.ProcessedL1Data) ([]*ethadapter.L1RollupTx, []*ethadapter.L1SetImportantContractsTx) { + rollupTxs := make([]*ethadapter.L1RollupTx, 0) + contractAddressTxs := make([]*ethadapter.L1SetImportantContractsTx, 0) + + for !g.hostInterrupter.IsStopping() { + // Get rollup transactions + for _, event := range data.Events[ethadapter.RollupTx] { + encodedRlp, err := ethadapter.DecodeBlobs(event.Blobs) + if err != nil { + g.logger.Crit("could not decode blobs.", log.ErrKey, err) + continue + } + + rlp := ðadapter.L1RollupTx{ + Rollup: encodedRlp, + } + rollupTxs = append(rollupTxs, rlp) + } + + // Get contract address transactions + for _, event := range data.Events[ethadapter.SetImportantContractsTx] { + if contractTx, ok := event.Type.(*ethadapter.L1SetImportantContractsTx); ok { + contractAddressTxs = append(contractAddressTxs, contractTx) + } else { + g.logger.Warn("Unexpected type for SetImportantContractsTx event", "type", fmt.Sprintf("%T", event.Type)) + } + } + + } + return rollupTxs, contractAddressTxs +} diff --git a/go/host/l1/blockrepository.go b/go/host/l1/blockrepository.go index fdae951245..084a871440 100644 --- a/go/host/l1/blockrepository.go +++ b/go/host/l1/blockrepository.go @@ -4,6 +4,8 @@ import ( "context" "errors" "fmt" + "github.com/ten-protocol/go-ten/go/enclave/crosschain" + "github.com/ten-protocol/go-ten/go/ethadapter/mgmtcontractlib" "math/big" "sync/atomic" "time" @@ -33,21 +35,33 @@ var ( type Repository struct { blockSubscribers *subscription.Manager[host.L1BlockHandler] // this eth client should only be used by the repository, the repository may "reconnect" it at any time and don't want to interfere with other processes - ethClient ethadapter.EthClient - logger gethlog.Logger + ethClient ethadapter.EthClient + logger gethlog.Logger + mgmtContractLib mgmtcontractlib.MgmtContractLib + blobResolver BlobResolver - running atomic.Bool - head gethcommon.Hash - obscuroRelevantContracts []gethcommon.Address + running atomic.Bool + head gethcommon.Hash + managementContractAddr gethcommon.Address + messageBusAddr gethcommon.Address } -func NewL1Repository(ethClient ethadapter.EthClient, obscuroRelevantContracts []gethcommon.Address, logger gethlog.Logger) *Repository { +func NewL1Repository( + ethClient ethadapter.EthClient, + logger gethlog.Logger, + mgmtContractLib mgmtcontractlib.MgmtContractLib, + blobResolver BlobResolver, + managementContractAddr gethcommon.Address, + messageBusAddr gethcommon.Address) *Repository { return &Repository{ - blockSubscribers: subscription.NewManager[host.L1BlockHandler](), - ethClient: ethClient, - obscuroRelevantContracts: obscuroRelevantContracts, - running: atomic.Bool{}, - logger: logger, + blockSubscribers: subscription.NewManager[host.L1BlockHandler](), + ethClient: ethClient, + running: atomic.Bool{}, + logger: logger, + mgmtContractLib: mgmtContractLib, + blobResolver: blobResolver, + managementContractAddr: managementContractAddr, + messageBusAddr: messageBusAddr, } } @@ -137,7 +151,7 @@ func (r *Repository) FetchObscuroReceipts(block *common.L1Block) (types.Receipts blkHash := block.Hash() // we want to send receipts for any transactions that produced obscuro-relevant log events - logs, err := r.ethClient.GetLogs(ethereum.FilterQuery{BlockHash: &blkHash, Addresses: r.obscuroRelevantContracts}) + logs, err := r.ethClient.GetLogs(ethereum.FilterQuery{BlockHash: &blkHash, Addresses: []gethcommon.Address{r.managementContractAddr, r.messageBusAddr}}) if err != nil { return nil, fmt.Errorf("unable to fetch logs for L1 block - %w", err) } @@ -170,6 +184,65 @@ func (r *Repository) FetchObscuroReceipts(block *common.L1Block) (types.Receipts return receipts, nil } +func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*ethadapter.ProcessedL1Data, error) { + processed := ðadapter.ProcessedL1Data{ + BlockHeader: block.Header(), + Events: make(map[ethadapter.L1TxType][]*ethadapter.L1TxData), + } + txsWithReceipts, err := r.getRelevantTxReceiptsAndBlobs(block) + if err != nil { + return nil, err + } + + for _, txWithReceipt := range txsWithReceipts { + messages, err := r.getCrossChainMessages(txWithReceipt.Receipt) + if err != nil { + r.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) + } + + sequencerLogs, err := r.getSequencerEventLogs(txWithReceipt.Receipt) + if err != nil { + r.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) + } + + txData := ðadapter.L1TxData{ + Transaction: txWithReceipt.Tx, + Receipt: txWithReceipt.Receipt, + Blobs: txWithReceipt.Blobs, + CrossChainMessages: &messages, + } + + if len(*txData.CrossChainMessages) > 0 { + processed.Events[ethadapter.CrossChainMessageTx] = append(processed.Events[ethadapter.CrossChainMessageTx], txData) + } + + if len(txData.Blobs) > 0 { + processed.Events[ethadapter.RollupTx] = append(processed.Events[ethadapter.RollupTx], txData) + } + + if len(sequencerLogs) > 0 { + processed.Events[ethadapter.SequencerAddedTx] = append(processed.Events[ethadapter.SequencerAddedTx], txData) + } + + decodedTx := r.mgmtContractLib.DecodeTx(txWithReceipt.Tx) + if decodedTx == nil { + continue + } + txData.Type = decodedTx + + switch _ := decodedTx.(type) { + case *ethadapter.L1RequestSecretTx: + processed.Events[ethadapter.SecretRequestTx] = append(processed.Events[ethadapter.SecretRequestTx], txData) + case *ethadapter.L1InitializeSecretTx: + processed.Events[ethadapter.InitialiseSecretTx] = append(processed.Events[ethadapter.InitialiseSecretTx], txData) + case *ethadapter.L1SetImportantContractsTx: + processed.Events[ethadapter.SetImportantContractsTx] = append(processed.Events[ethadapter.SetImportantContractsTx], txData) + } + } + + return processed, nil +} + // stream blocks from L1 as they arrive and forward them to subscribers, no guarantee of perfect ordering or that there won't be gaps. // If streaming is interrupted it will carry on from latest, it won't try to replay missed blocks. func (r *Repository) streamLiveBlocks() { @@ -226,7 +299,8 @@ func (r *Repository) FetchBlockByHeight(height *big.Int) (*types.Block, error) { // isObscuroTransaction will look at the 'to' address of the transaction, we are only interested in management contract and bridge transactions func (r *Repository) isObscuroTransaction(transaction *types.Transaction) bool { - for _, address := range r.obscuroRelevantContracts { + contracts := []gethcommon.Address{r.managementContractAddr, r.messageBusAddr} + for _, address := range contracts { if transaction.To() != nil && *transaction.To() == address { return true } @@ -234,6 +308,69 @@ func (r *Repository) isObscuroTransaction(transaction *types.Transaction) bool { return false } +func (r *Repository) getRelevantTxReceiptsAndBlobs(block *common.L1Block) ([]*common.TxAndReceiptAndBlobs, error) { + txsWithReceipts := make([]*common.TxAndReceiptAndBlobs, len(block.Transactions())) + + receipts, err := r.FetchObscuroReceipts(block) + if err != nil { + return nil, fmt.Errorf("failed to fetch receipts: %w", err) + } + + for i, tx := range block.Transactions() { + // skip unsuccessful txs + if receipts[i].Status == types.ReceiptStatusFailed { + continue + } + + txWithReceipt := &common.TxAndReceiptAndBlobs{ + Tx: tx, + Receipt: receipts[i], + } + + if tx.Type() == types.BlobTxType { + txBlobs := tx.BlobHashes() + blobs, err := r.blobResolver.FetchBlobs(context.Background(), block.Header(), txBlobs) + if err != nil { + if errors.Is(err, ethereum.NotFound) { + r.logger.Crit("Blobs were not found on beacon chain or archive service", "block", block.Hash(), "error", err) + } else { + r.logger.Crit("could not fetch blobs", log.ErrKey, err) + } + continue + } + txWithReceipt.Blobs = blobs + } + + txsWithReceipts[i] = txWithReceipt + } + + return txsWithReceipts, nil +} + +func (r *Repository) getCrossChainMessages(receipt *types.Receipt) (common.CrossChainMessages, error) { + logsForReceipt, err := crosschain.FilterLogsFromReceipt(receipt, &r.messageBusAddr, &crosschain.CrossChainEventID) + if err != nil { + r.logger.Error("Error encountered when filtering receipt logs.", log.ErrKey, err) + return make(common.CrossChainMessages, 0), err + } + messages, err := crosschain.ConvertLogsToMessages(logsForReceipt, crosschain.CrossChainEventName, crosschain.MessageBusABI) + if err != nil { + r.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) + return make(common.CrossChainMessages, 0), err + } + + return messages, nil +} + +func (r *Repository) getSequencerEventLogs(receipt *types.Receipt) ([]types.Log, error) { + sequencerLogs, err := crosschain.FilterLogsFromReceipt(receipt, &r.managementContractAddr, &crosschain.SequencerEnclaveGrantedEventID) + if err != nil { + r.logger.Error("Error filtering sequencer logs", log.ErrKey, err) + return []types.Log{}, err + } + return sequencerLogs, nil +} + func increment(i *big.Int) *big.Int { return i.Add(i, one) } diff --git a/go/host/l1/publisher.go b/go/host/l1/publisher.go index 5675deacaa..9c84f795b2 100644 --- a/go/host/l1/publisher.go +++ b/go/host/l1/publisher.go @@ -252,7 +252,6 @@ func (p *Publisher) ExtractRelevantTenTransactions(block *types.Block, receipts contractAddressTxs = append(contractAddressTxs, typedTx) case *ethadapter.L1RollupHashes: blobs, err = p.blobResolver.FetchBlobs(p.sendingContext, block.Header(), typedTx.BlobHashes) - // temporarily add this host stopping check to prevent sim test failures until a more robust solution is implemented if err != nil { if errors.Is(err, ethereum.NotFound) { p.logger.Crit("Blobs were not found on beacon chain or archive service", "block", block.Hash(), "error", err) diff --git a/go/host/rpc/enclaverpc/enclave_client.go b/go/host/rpc/enclaverpc/enclave_client.go index 268afe7c7a..730ba41ec1 100644 --- a/go/host/rpc/enclaverpc/enclave_client.go +++ b/go/host/rpc/enclaverpc/enclave_client.go @@ -5,6 +5,7 @@ import ( "context" "encoding/json" "fmt" + "github.com/ten-protocol/go-ten/go/ethadapter" "math/big" "time" @@ -198,18 +199,18 @@ func (c *Client) EnclaveID(ctx context.Context) (common.EnclaveID, common.System return common.EnclaveID(response.EnclaveID), nil } -func (c *Client) SubmitL1Block(ctx context.Context, blockHeader *types.Header, txsReceiptsAndBlobs []*common.TxAndReceiptAndBlobs) (*common.BlockSubmissionResponse, common.SystemError) { +func (c *Client) SubmitL1Block(ctx context.Context, blockHeader *types.Header, processedData *ethadapter.ProcessedL1Data) (*common.BlockSubmissionResponse, common.SystemError) { var buffer bytes.Buffer if err := blockHeader.EncodeRLP(&buffer); err != nil { return nil, fmt.Errorf("could not encode block. Cause: %w", err) } - serializedTxsReceiptsAndBlobs, err := rlp.EncodeToBytes(txsReceiptsAndBlobs) + serializedProcessedData, err := rlp.EncodeToBytes(processedData) if err != nil { return nil, fmt.Errorf("could not encode receipts. Cause: %w", err) } - response, err := c.protoClient.SubmitL1Block(ctx, &generated.SubmitBlockRequest{EncodedBlock: buffer.Bytes(), EncodedReceipts: serializedTxsReceiptsAndBlobs}) + response, err := c.protoClient.SubmitL1Block(ctx, &generated.SubmitBlockRequest{EncodedBlock: buffer.Bytes(), EncodedProcessedData: serializedProcessedData}) if err != nil { return nil, fmt.Errorf("could not submit block. Cause: %w", err) } From 7532ef46c538d276e5038fe74f16a6b117b3ad10 Mon Sep 17 00:00:00 2001 From: Will Hester Date: Thu, 28 Nov 2024 10:43:27 +0000 Subject: [PATCH 05/21] where the f is this import cycle --- go/common/enclave.go | 3 +- go/enclave/components/block_processor.go | 19 +++--- go/enclave/components/interfaces.go | 5 +- go/enclave/components/rollup_consumer.go | 36 +++++----- .../components/shared_secret_process.go | 65 ++++++++++--------- .../crosschain/block_message_extractor.go | 56 +++++++--------- go/enclave/crosschain/interfaces.go | 6 +- go/enclave/enclave_admin_service.go | 19 +++--- go/ethadapter/l1_transaction.go | 13 ++-- go/host/l1/blockrepository.go | 40 ++++++++++-- go/host/rpc/enclaverpc/enclave_client.go | 3 +- 11 files changed, 150 insertions(+), 115 deletions(-) diff --git a/go/common/enclave.go b/go/common/enclave.go index f896586935..16b74d3d6a 100644 --- a/go/common/enclave.go +++ b/go/common/enclave.go @@ -3,9 +3,10 @@ package common import ( "context" "encoding/json" - "github.com/ten-protocol/go-ten/go/ethadapter" "math/big" + "github.com/ten-protocol/go-ten/go/ethadapter" + "github.com/ethereum/go-ethereum/crypto/kzg4844" "github.com/ethereum/go-ethereum/core/types" diff --git a/go/enclave/components/block_processor.go b/go/enclave/components/block_processor.go index 56e0e354f7..62b5dd248b 100644 --- a/go/enclave/components/block_processor.go +++ b/go/enclave/components/block_processor.go @@ -4,9 +4,10 @@ import ( "context" "errors" "fmt" - "github.com/ten-protocol/go-ten/go/ethadapter" "time" + "github.com/ten-protocol/go-ten/go/ethadapter" + "github.com/ethereum/go-ethereum/core/types" "github.com/ten-protocol/go-ten/go/common/async" @@ -62,29 +63,29 @@ func NewBlockProcessor(storage storage.Storage, cc *crosschain.Processors, gasOr func (bp *l1BlockProcessor) Process(ctx context.Context, processed *ethadapter.ProcessedL1Data) (*BlockIngestionType, error) { defer core.LogMethodDuration(bp.logger, measure.NewStopwatch(), "L1 block processed", log.BlockHashKey, processed.BlockHeader.Hash()) - - ingestion, err := bp.tryAndInsertBlock(ctx, br) + header := processed.BlockHeader + ingestion, err := bp.tryAndInsertBlock(ctx, processed.BlockHeader) if err != nil { return nil, err } if !ingestion.PreGenesis { // This requires block to be stored first ... but can permanently fail a block - err = bp.crossChainProcessors.Remote.StoreCrossChainMessages(ctx, br.BlockHeader, br.Receipts()) + err = bp.crossChainProcessors.Remote.StoreCrossChainMessages(ctx, header, processed) if err != nil { return nil, errors.New("failed to process cross chain messages") } - err = bp.crossChainProcessors.Remote.StoreCrossChainValueTransfers(ctx, br.BlockHeader, br.Receipts()) + err = bp.crossChainProcessors.Remote.StoreCrossChainValueTransfers(ctx, header, processed) if err != nil { return nil, fmt.Errorf("failed to process cross chain transfers. Cause: %w", err) } } // todo @siliev - not sure if this is the best way to update the price, will pick up random stale blocks from forks? - bp.gasOracle.ProcessL1Block(br.BlockHeader) + bp.gasOracle.ProcessL1Block(header) - h := br.BlockHeader.Hash() + h := header.Hash() bp.currentL1Head = &h bp.lastIngestedBlock.Mark() return ingestion, nil @@ -100,9 +101,7 @@ func (bp *l1BlockProcessor) HealthCheck() (bool, error) { return true, nil } -func (bp *l1BlockProcessor) tryAndInsertBlock(ctx context.Context, br *common.BlockAndReceipts) (*BlockIngestionType, error) { - block := br.BlockHeader - +func (bp *l1BlockProcessor) tryAndInsertBlock(ctx context.Context, block *types.Header) (*BlockIngestionType, error) { // We insert the block into the L1 chain and store it. // in case the block already exists in the database, this will be treated like a fork, because the head changes to // the block that was already saved diff --git a/go/enclave/components/interfaces.go b/go/enclave/components/interfaces.go index 841cc0fa31..c68be66135 100644 --- a/go/enclave/components/interfaces.go +++ b/go/enclave/components/interfaces.go @@ -3,9 +3,10 @@ package components import ( "context" "errors" - "github.com/ten-protocol/go-ten/go/ethadapter" "math/big" + "github.com/ten-protocol/go-ten/go/ethadapter" + gethcommon "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/state" "github.com/ethereum/go-ethereum/core/types" @@ -124,5 +125,5 @@ type RollupProducer interface { type RollupConsumer interface { // ProcessBlobsInBlock - extracts the blob hashes from the block's transactions and builds the blob hashes from the blobs, // compares this with the hashes seen in the block. - ProcessBlobsInBlock(ctx context.Context, b *common.BlockAndReceipts) error + ProcessBlobsInBlock(ctx context.Context, processedData *ethadapter.ProcessedL1Data) error } diff --git a/go/enclave/components/rollup_consumer.go b/go/enclave/components/rollup_consumer.go index 169c9fe929..53a8f9885e 100644 --- a/go/enclave/components/rollup_consumer.go +++ b/go/enclave/components/rollup_consumer.go @@ -49,16 +49,17 @@ func NewRollupConsumer( } // ProcessBlobsInBlock - processes the blobs in a block, extracts the rollups, verifies the rollups and stores them -func (rc *rollupConsumerImpl) ProcessBlobsInBlock(ctx context.Context, b *common.BlockAndReceipts) error { - defer core.LogMethodDuration(rc.logger, measure.NewStopwatch(), "Rollup consumer processed blobs", log.BlockHashKey, b.BlockHeader.Hash()) +func (rc *rollupConsumerImpl) ProcessBlobsInBlock(ctx context.Context, processed *ethadapter.ProcessedL1Data) error { + defer core.LogMethodDuration(rc.logger, measure.NewStopwatch(), "Rollup consumer processed blobs", log.BlockHashKey, processed.BlockHeader.Hash()) - rollups, err := rc.extractAndVerifyRollups(b) + block := processed.BlockHeader + rollups, err := rc.extractAndVerifyRollups(processed) if err != nil { - rc.logger.Error("Failed to extract rollups from block", log.BlockHashKey, b.BlockHeader.Hash(), log.ErrKey, err) + rc.logger.Error("Failed to extract rollups from block", log.BlockHashKey, block.Hash(), log.ErrKey, err) return err } if len(rollups) == 0 { - rc.logger.Trace("No rollups found in block", log.BlockHashKey, b.BlockHeader.Hash()) + rc.logger.Trace("No rollups found in block", log.BlockHashKey, block.Hash()) return nil } @@ -69,7 +70,7 @@ func (rc *rollupConsumerImpl) ProcessBlobsInBlock(ctx context.Context, b *common if len(rollups) > 1 { // todo - we need to sort this out - rc.logger.Warn(fmt.Sprintf("Multiple rollups %d in block %s", len(rollups), b.BlockHeader.Hash())) + rc.logger.Warn(fmt.Sprintf("Multiple rollups %d in block %s", len(rollups), block.Hash())) } for _, rollup := range rollups { @@ -121,16 +122,17 @@ func (rc *rollupConsumerImpl) getSignedRollup(rollups []*common.ExtRollup) ([]*c // It processes each transaction, attempting to extract and verify rollups // If a transaction is not a rollup or fails verification, it's skipped // The function only returns an error if there's a critical failure in rollup reconstruction -func (rc *rollupConsumerImpl) extractAndVerifyRollups(br *common.BlockAndReceipts) ([]*common.ExtRollup, error) { - rollups := make([]*common.ExtRollup, 0, len(*br.RelevantTransactions())) - b := br.BlockHeader - blobs, blobHashes, err := rc.extractBlobsAndHashes(br) +func (rc *rollupConsumerImpl) extractAndVerifyRollups(processed *ethadapter.ProcessedL1Data) ([]*common.ExtRollup, error) { + rollupTxs := processed.Events[ethadapter.RollupTx] + rollups := make([]*common.ExtRollup, 0, len(rollupTxs)) + + blobs, blobHashes, err := rc.extractBlobsAndHashes(rollupTxs) if err != nil { return nil, err } - for i, tx := range *br.RelevantTransactions() { - t := rc.MgmtContractLib.DecodeTx(tx) + for i, tx := range rollupTxs { + t := rc.MgmtContractLib.DecodeTx(tx.Transaction) if t == nil { continue } @@ -153,7 +155,7 @@ func (rc *rollupConsumerImpl) extractAndVerifyRollups(br *common.BlockAndReceipt } rollups = append(rollups, r) - rc.logger.Info("Extracted rollup from block", log.RollupHashKey, r.Hash(), log.BlockHashKey, b.Hash()) + rc.logger.Info("Extracted rollup from block", log.RollupHashKey, r.Hash(), log.BlockHashKey, processed.BlockHeader.Hash()) } return rollups, nil @@ -180,12 +182,10 @@ func verifyBlobHashes(rollupHashes *ethadapter.L1RollupHashes, blobHashes []geth return nil } -func (rc *rollupConsumerImpl) extractBlobsAndHashes(br *common.BlockAndReceipts) ([]*kzg4844.Blob, []gethcommon.Hash, error) { +func (rc *rollupConsumerImpl) extractBlobsAndHashes(rollupTxs []*ethadapter.L1TxData) ([]*kzg4844.Blob, []gethcommon.Hash, error) { blobs := make([]*kzg4844.Blob, 0) - for _, txWithReceipt := range br.TxsWithReceipts { - if txWithReceipt.Blobs != nil { - blobs = append(blobs, txWithReceipt.Blobs...) - } + for _, tx := range rollupTxs { + blobs = append(blobs, tx.Blobs...) } _, blobHashes, err := ethadapter.MakeSidecar(blobs) diff --git a/go/enclave/components/shared_secret_process.go b/go/enclave/components/shared_secret_process.go index 5a59fb5691..7ffe7c9955 100644 --- a/go/enclave/components/shared_secret_process.go +++ b/go/enclave/components/shared_secret_process.go @@ -34,40 +34,47 @@ func NewSharedSecretProcessor(mgmtcontractlib mgmtcontractlib.MgmtContractLib, a } // ProcessNetworkSecretMsgs we watch for all messages that are requesting or receiving the secret and we store the nodes attested keys -func (ssp *SharedSecretProcessor) ProcessNetworkSecretMsgs(ctx context.Context, br *common.BlockAndReceipts) []*common.ProducedSecretResponse { +func (ssp *SharedSecretProcessor) ProcessNetworkSecretMsgs(ctx context.Context, processed *ethadapter.ProcessedL1Data) []*common.ProducedSecretResponse { var responses []*common.ProducedSecretResponse - transactions := br.RelevantTransactions() - block := br.BlockHeader - for _, tx := range *transactions { - t := ssp.mgmtContractLib.DecodeTx(tx) - - // this transaction is for a node that has joined the network and needs to be sent the network secret - if scrtReqTx, ok := t.(*ethadapter.L1RequestSecretTx); ok { - ssp.logger.Info("Process shared secret request.", log.BlockHeightKey, block.Number, log.BlockHashKey, block.Hash(), log.TxKey, tx.Hash()) - resp, err := ssp.processSecretRequest(ctx, scrtReqTx) - if err != nil { - ssp.logger.Error("Failed to process shared secret request.", log.ErrKey, err) - continue - } - responses = append(responses, resp) + block := processed.BlockHeader + + // process secret requests + for _, txData := range processed.Events[ethadapter.SecretRequestTx] { + scrtReqTx, ok := (*txData.Type).(*ethadapter.L1RequestSecretTx) // Dereference the interface pointer first + if !ok { + continue } + ssp.logger.Info("Process shared secret request.", + log.BlockHeightKey, block, + log.BlockHashKey, block.Hash(), + log.TxKey, txData.Transaction.Hash()) - // this transaction was created by the genesis node, we need to store their attested key to decrypt their rollup - if initSecretTx, ok := t.(*ethadapter.L1InitializeSecretTx); ok { - // todo (#1580) - ensure that we don't accidentally skip over the real `L1InitializeSecretTx` message. Otherwise - // our node will never be able to speak to other nodes. - // there must be a way to make sure that this transaction can only be sent once. - att, err := common.DecodeAttestation(initSecretTx.Attestation) - if err != nil { - ssp.logger.Error("Could not decode attestation report", log.ErrKey, err) - } - - err = ssp.storeAttestation(ctx, att) - if err != nil { - ssp.logger.Error("Could not store the attestation report.", log.ErrKey, err) - } + resp, err := ssp.processSecretRequest(ctx, scrtReqTx) + if err != nil { + ssp.logger.Error("Failed to process shared secret request.", log.ErrKey, err) + continue } + responses = append(responses, resp) } + + // process initialize secret events + for _, txData := range processed.Events[ethadapter.InitialiseSecretTx] { + initSecretTx, ok := (*txData.Type).(*ethadapter.L1InitializeSecretTx) + if !ok { + continue + } + + att, err := common.DecodeAttestation(initSecretTx.Attestation) + if err != nil { + ssp.logger.Error("Could not decode attestation report", log.ErrKey, err) + continue + } + + if err := ssp.storeAttestation(ctx, att); err != nil { + ssp.logger.Error("Could not store the attestation report.", log.ErrKey, err) + } + } + return responses } diff --git a/go/enclave/crosschain/block_message_extractor.go b/go/enclave/crosschain/block_message_extractor.go index 1080d775e5..33cf8ae435 100644 --- a/go/enclave/crosschain/block_message_extractor.go +++ b/go/enclave/crosschain/block_message_extractor.go @@ -4,6 +4,8 @@ import ( "context" "fmt" + "github.com/ten-protocol/go-ten/go/ethadapter" + "github.com/ethereum/go-ethereum/core/types" "github.com/ten-protocol/go-ten/go/enclave/core" @@ -39,33 +41,19 @@ func (m *blockMessageExtractor) Enabled() bool { return m.GetBusAddress().Big().Cmp(gethcommon.Big0) != 0 } -func (m *blockMessageExtractor) StoreCrossChainValueTransfers(ctx context.Context, block *types.Header, receipts common.L1Receipts) error { +func (m *blockMessageExtractor) StoreCrossChainValueTransfers(ctx context.Context, block *types.Header, processedData *ethadapter.ProcessedL1Data) error { defer core.LogMethodDuration(m.logger, measure.NewStopwatch(), "BlockHeader value transfer messages processed", log.BlockHashKey, block.Hash()) - /*areReceiptsValid := common.VerifyReceiptHash(block, receipts) - - if !areReceiptsValid && m.Enabled() { - m.logger.Error("Invalid receipts submitted", log.BlockHashKey, block.Hash()) - return fmt.Errorf("receipts do not match the receipt root for the block") - }*/ - - if len(receipts) == 0 { - return nil - } - - transfers, err := m.getValueTransferMessages(receipts) - if err != nil { - m.logger.Error("Error encountered while getting inbound value transfers from block", log.BlockHashKey, block.Hash(), log.ErrKey, err) - return err - } - - hasTransfers := len(transfers) > 0 - if !hasTransfers { - return nil + // collect all value transfer events from processed data + var transfers common.ValueTransferEvents + for _, txData := range processedData.Events[ethadapter.CrossChainValueTranserTx] { + if txData.ValueTransfers != nil { + transfers = append(transfers, *txData.ValueTransfers...) + } } m.logger.Trace("Storing value transfers for block", "nr", len(transfers), log.BlockHashKey, block.Hash()) - err = m.storage.StoreValueTransfers(ctx, block.Hash(), transfers) + err := m.storage.StoreValueTransfers(ctx, block.Hash(), transfers) if err != nil { m.logger.Crit("Unable to store the transfers", log.ErrKey, err) return err @@ -78,23 +66,23 @@ func (m *blockMessageExtractor) StoreCrossChainValueTransfers(ctx context.Contex // The messages will be stored in DB storage for later usage. // block - the L1 block for which events are extracted. // receipts - all of the receipts for the corresponding block. This is validated. -func (m *blockMessageExtractor) StoreCrossChainMessages(ctx context.Context, block *types.Header, receipts common.L1Receipts) error { +func (m *blockMessageExtractor) StoreCrossChainMessages(ctx context.Context, block *types.Header, processedData *ethadapter.ProcessedL1Data) error { defer core.LogMethodDuration(m.logger, measure.NewStopwatch(), "BlockHeader cross chain messages processed", log.BlockHashKey, block.Hash()) - if len(receipts) == 0 { - return nil + // collect all messages from the events + var xchain common.CrossChainMessages + var receipts types.Receipts + for _, txData := range processedData.Events[ethadapter.CrossChainMessageTx] { + if txData.CrossChainMessages != nil { + xchain = append(xchain, *txData.CrossChainMessages...) + receipts = append(receipts, txData.Receipt) + } } lazilyLogReceiptChecksum(block, receipts, m.logger) - messages, err := m.getCrossChainMessages(block, receipts) - if err != nil { - m.logger.Error("Converting receipts to messages failed.", log.ErrKey, err) - return err - } - - if len(messages) > 0 { - m.logger.Info(fmt.Sprintf("Storing %d messages for block", len(messages)), log.BlockHashKey, block.Hash()) - err = m.storage.StoreL1Messages(ctx, block.Hash(), messages) + if len(xchain) > 0 { + m.logger.Info(fmt.Sprintf("Storing %d messages for block", len(xchain)), log.BlockHashKey, block.Hash()) + err := m.storage.StoreL1Messages(ctx, block.Hash(), xchain) if err != nil { m.logger.Crit("Unable to store the messages", log.ErrKey, err) return err diff --git a/go/enclave/crosschain/interfaces.go b/go/enclave/crosschain/interfaces.go index cf161ddee4..11b9757ec1 100644 --- a/go/enclave/crosschain/interfaces.go +++ b/go/enclave/crosschain/interfaces.go @@ -3,6 +3,8 @@ package crosschain import ( "context" + "github.com/ten-protocol/go-ten/go/ethadapter" + "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/core" @@ -19,9 +21,9 @@ type ( type BlockMessageExtractor interface { // StoreCrossChainMessages - Verifies receipts belong to block and saves the relevant cross chain messages from the receipts - StoreCrossChainMessages(ctx context.Context, block *types.Header, receipts common.L1Receipts) error + StoreCrossChainMessages(ctx context.Context, block *types.Header, processedData *ethadapter.ProcessedL1Data) error - StoreCrossChainValueTransfers(ctx context.Context, block *types.Header, receipts common.L1Receipts) error + StoreCrossChainValueTransfers(ctx context.Context, block *types.Header, processedData *ethadapter.ProcessedL1Data) error // GetBusAddress - Returns the L1 message bus address. GetBusAddress() *common.L1Address diff --git a/go/enclave/enclave_admin_service.go b/go/enclave/enclave_admin_service.go index d8faa0a7f7..e62b93c908 100644 --- a/go/enclave/enclave_admin_service.go +++ b/go/enclave/enclave_admin_service.go @@ -4,11 +4,12 @@ import ( "context" "errors" "fmt" - "github.com/ten-protocol/go-ten/go/ethadapter" "math/big" "sync" "time" + "github.com/ten-protocol/go-ten/go/ethadapter" + gethcommon "github.com/ethereum/go-ethereum/common" enclaveconfig "github.com/ten-protocol/go-ten/go/enclave/config" @@ -126,17 +127,17 @@ func (e *enclaveAdminService) MakeActive() common.SystemError { } // SubmitL1Block is used to update the enclave with an additional L1 block. -func (e *enclaveAdminService) SubmitL1Block(ctx context.Context, blockHeader *types.Header, processedData *ethadapter.ProcessedL1Data) (*common.BlockSubmissionResponse, common.SystemError) { +func (e *enclaveAdminService) SubmitL1Block(ctx context.Context, blockHeader *types.Header, processed *ethadapter.ProcessedL1Data) (*common.BlockSubmissionResponse, common.SystemError) { e.mainMutex.Lock() defer e.mainMutex.Unlock() e.logger.Info("SubmitL1Block", log.BlockHeightKey, blockHeader.Number, log.BlockHashKey, blockHeader.Hash()) // Verify the block header matches the one in processedData - if blockHeader.Hash() != processedData.BlockHeader.Hash() { + if blockHeader.Hash() != processed.BlockHeader.Hash() { return nil, e.rejectBlockErr(ctx, fmt.Errorf("block header mismatch")) } - result, err := e.ingestL1Block(ctx, br) + result, err := e.ingestL1Block(ctx, processed) if err != nil { return nil, e.rejectBlockErr(ctx, fmt.Errorf("could not submit L1 block. Cause: %w", err)) } @@ -150,7 +151,7 @@ func (e *enclaveAdminService) SubmitL1Block(ctx context.Context, blockHeader *ty return nil, e.rejectBlockErr(ctx, fmt.Errorf("could not submit L1 block. Cause: %w", err)) } - bsr := &common.BlockSubmissionResponse{ProducedSecretResponses: e.sharedSecretProcessor.ProcessNetworkSecretMsgs(ctx, br)} + bsr := &common.BlockSubmissionResponse{ProducedSecretResponses: e.sharedSecretProcessor.ProcessNetworkSecretMsgs(ctx, processed)} return bsr, nil } @@ -419,18 +420,18 @@ func (e *enclaveAdminService) streamEventsForNewHeadBatch(ctx context.Context, b func (e *enclaveAdminService) ingestL1Block(ctx context.Context, processed *ethadapter.ProcessedL1Data) (*components.BlockIngestionType, error) { e.logger.Info("Start ingesting block", log.BlockHashKey, processed.BlockHeader.Hash()) - ingestion, err := e.l1BlockProcessor.Process(ctx, br) + ingestion, err := e.l1BlockProcessor.Process(ctx, processed) if err != nil { // only warn for unexpected errors if errors.Is(err, errutil.ErrBlockAncestorNotFound) || errors.Is(err, errutil.ErrBlockAlreadyProcessed) { - e.logger.Debug("Did not ingest block", log.ErrKey, err, log.BlockHashKey, br.BlockHeader.Hash()) + e.logger.Debug("Did not ingest block", log.ErrKey, err, log.BlockHashKey, processed.BlockHeader.Hash()) } else { - e.logger.Warn("Failed ingesting block", log.ErrKey, err, log.BlockHashKey, br.BlockHeader.Hash()) + e.logger.Warn("Failed ingesting block", log.ErrKey, err, log.BlockHashKey, processed.BlockHeader.Hash()) } return nil, err } - err = e.rollupConsumer.ProcessBlobsInBlock(ctx, br) + err = e.rollupConsumer.ProcessBlobsInBlock(ctx, processed) if err != nil && !errors.Is(err, components.ErrDuplicateRollup) { e.logger.Error("Encountered error while processing l1 block", log.ErrKey, err) // Unsure what to do here; block has been stored diff --git a/go/ethadapter/l1_transaction.go b/go/ethadapter/l1_transaction.go index 330584a986..ed5efc50fb 100644 --- a/go/ethadapter/l1_transaction.go +++ b/go/ethadapter/l1_transaction.go @@ -3,9 +3,10 @@ package ethadapter import ( "crypto/ecdsa" "fmt" + "math/big" + "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto/kzg4844" - "math/big" "github.com/ten-protocol/go-ten/go/common" @@ -86,6 +87,7 @@ const ( SecretRequestTx InitialiseSecretTx CrossChainMessageTx + CrossChainValueTranserTx SequencerAddedTx SetImportantContractsTx ) @@ -96,11 +98,12 @@ type ProcessedL1Data struct { Events map[L1TxType][]*L1TxData } -// L1TxData represents a processed L1 transaction that's relevant to us +// L1TxData represents an L1 transaction that's relevant to us type L1TxData struct { - Type L1Transaction + Type *L1Transaction Transaction *types.Transaction Receipt *types.Receipt - Blobs []*kzg4844.Blob // Only populated for blob transactions - CrossChainMessages *common.CrossChainMessages // Only populated for xchain txs + Blobs []*kzg4844.Blob // Only populated for blob transactions + CrossChainMessages *common.CrossChainMessages // Only populated for xchain messages + ValueTransfers *common.ValueTransferEvents // Only populated for xchain transfers } diff --git a/go/host/l1/blockrepository.go b/go/host/l1/blockrepository.go index 084a871440..0ba7195e1b 100644 --- a/go/host/l1/blockrepository.go +++ b/go/host/l1/blockrepository.go @@ -4,12 +4,13 @@ import ( "context" "errors" "fmt" - "github.com/ten-protocol/go-ten/go/enclave/crosschain" - "github.com/ten-protocol/go-ten/go/ethadapter/mgmtcontractlib" "math/big" "sync/atomic" "time" + "github.com/ten-protocol/go-ten/go/enclave/crosschain" + "github.com/ten-protocol/go-ten/go/ethadapter/mgmtcontractlib" + "github.com/ten-protocol/go-ten/go/common/subscription" "github.com/ten-protocol/go-ten/go/common/host" @@ -52,7 +53,8 @@ func NewL1Repository( mgmtContractLib mgmtcontractlib.MgmtContractLib, blobResolver BlobResolver, managementContractAddr gethcommon.Address, - messageBusAddr gethcommon.Address) *Repository { + messageBusAddr gethcommon.Address, +) *Repository { return &Repository{ blockSubscribers: subscription.NewManager[host.L1BlockHandler](), ethClient: ethClient, @@ -184,6 +186,8 @@ func (r *Repository) FetchObscuroReceipts(block *common.L1Block) (types.Receipts return receipts, nil } +// ExtractTenTransactions does all the filtering of txs to find all the transaction types we care about on the L2. These +// are pulled from the data in the L1 blocks and then submitted to the enclave for processing func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*ethadapter.ProcessedL1Data, error) { processed := ðadapter.ProcessedL1Data{ BlockHeader: block.Header(), @@ -200,6 +204,11 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*ethadapter. r.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) } + transfers, err := r.getValueTransferEvents(txWithReceipt.Receipt) + if err != nil { + r.logger.Error("Error encountered converting the extracted logs to value transfers", log.ErrKey, err) + } + sequencerLogs, err := r.getSequencerEventLogs(txWithReceipt.Receipt) if err != nil { r.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) @@ -210,12 +219,17 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*ethadapter. Receipt: txWithReceipt.Receipt, Blobs: txWithReceipt.Blobs, CrossChainMessages: &messages, + ValueTransfers: &transfers, } if len(*txData.CrossChainMessages) > 0 { processed.Events[ethadapter.CrossChainMessageTx] = append(processed.Events[ethadapter.CrossChainMessageTx], txData) } + if len(*txData.ValueTransfers) > 0 { + processed.Events[ethadapter.CrossChainValueTranserTx] = append(processed.Events[ethadapter.CrossChainValueTranserTx], txData) + } + if len(txData.Blobs) > 0 { processed.Events[ethadapter.RollupTx] = append(processed.Events[ethadapter.RollupTx], txData) } @@ -350,7 +364,7 @@ func (r *Repository) getRelevantTxReceiptsAndBlobs(block *common.L1Block) ([]*co func (r *Repository) getCrossChainMessages(receipt *types.Receipt) (common.CrossChainMessages, error) { logsForReceipt, err := crosschain.FilterLogsFromReceipt(receipt, &r.messageBusAddr, &crosschain.CrossChainEventID) if err != nil { - r.logger.Error("Error encountered when filtering receipt logs.", log.ErrKey, err) + r.logger.Error("Error encountered when filtering receipt logs for cross chain messages.", log.ErrKey, err) return make(common.CrossChainMessages, 0), err } messages, err := crosschain.ConvertLogsToMessages(logsForReceipt, crosschain.CrossChainEventName, crosschain.MessageBusABI) @@ -362,12 +376,30 @@ func (r *Repository) getCrossChainMessages(receipt *types.Receipt) (common.Cross return messages, nil } +func (r *Repository) getValueTransferEvents(receipt *types.Receipt) (common.ValueTransferEvents, error) { + logsForReceipt, err := crosschain.FilterLogsFromReceipt(receipt, &r.messageBusAddr, &crosschain.ValueTransferEventID) + if err != nil { + r.logger.Error("Error encountered when filtering receipt logs for value transfers.", log.ErrKey, err) + return make(common.ValueTransferEvents, 0), err + } + transfers, err := crosschain.ConvertLogsToValueTransfers(logsForReceipt, crosschain.CrossChainEventName, crosschain.MessageBusABI) + if err != nil { + r.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) + return make(common.ValueTransferEvents, 0), err + } + + return transfers, nil +} + func (r *Repository) getSequencerEventLogs(receipt *types.Receipt) ([]types.Log, error) { sequencerLogs, err := crosschain.FilterLogsFromReceipt(receipt, &r.managementContractAddr, &crosschain.SequencerEnclaveGrantedEventID) if err != nil { r.logger.Error("Error filtering sequencer logs", log.ErrKey, err) return []types.Log{}, err } + + // TODO convert to add sequencer? + return sequencerLogs, nil } diff --git a/go/host/rpc/enclaverpc/enclave_client.go b/go/host/rpc/enclaverpc/enclave_client.go index 730ba41ec1..d3a136f960 100644 --- a/go/host/rpc/enclaverpc/enclave_client.go +++ b/go/host/rpc/enclaverpc/enclave_client.go @@ -5,10 +5,11 @@ import ( "context" "encoding/json" "fmt" - "github.com/ten-protocol/go-ten/go/ethadapter" "math/big" "time" + "github.com/ten-protocol/go-ten/go/ethadapter" + "github.com/ethereum/go-ethereum/core/types" "github.com/ten-protocol/go-ten/go/enclave/core" From 476a1339662edc4ad8b463fee1309e944f2df88c Mon Sep 17 00:00:00 2001 From: Will Hester Date: Thu, 28 Nov 2024 12:34:43 +0000 Subject: [PATCH 06/21] refactor types for import cycles --- go/common/enclave.go | 4 +- go/common/host/services.go | 2 +- go/common/l1_transaction.go | 38 ++++++++++ go/enclave/components/block_processor.go | 4 +- go/enclave/components/interfaces.go | 6 +- go/enclave/components/rollup_consumer.go | 8 +- .../components/shared_secret_process.go | 10 +-- .../crosschain/block_message_extractor.go | 10 +-- go/enclave/crosschain/interfaces.go | 6 +- go/enclave/crosschain/message_bus_manager.go | 4 +- go/enclave/enclave.go | 4 +- go/enclave/enclave_admin_service.go | 6 +- go/enclave/rpc_server.go | 16 ++-- .../erc20contractlib/erc20_contract_lib.go | 5 +- go/ethadapter/l1_transaction.go | 64 ++++++++-------- .../mgmtcontractlib/mgmt_contract_lib.go | 4 +- go/host/container/host_container.go | 7 +- go/host/enclave/guardian.go | 6 +- go/host/l1/blockrepository.go | 73 +++++++++++-------- go/host/rpc/enclaverpc/enclave_client.go | 4 +- .../ethereummock/erc20_contract_lib.go | 11 +-- integration/ethereummock/mgmt_contract_lib.go | 30 +++++--- .../simulation/network/network_utils.go | 2 +- .../transaction_injector_tracker.go | 9 +-- 24 files changed, 189 insertions(+), 144 deletions(-) create mode 100644 go/common/l1_transaction.go diff --git a/go/common/enclave.go b/go/common/enclave.go index 16b74d3d6a..14508fc846 100644 --- a/go/common/enclave.go +++ b/go/common/enclave.go @@ -5,8 +5,6 @@ import ( "encoding/json" "math/big" - "github.com/ten-protocol/go-ten/go/ethadapter" - "github.com/ethereum/go-ethereum/crypto/kzg4844" "github.com/ethereum/go-ethereum/core/types" @@ -75,7 +73,7 @@ type EnclaveAdmin interface { // It is the responsibility of the host to gossip the returned rollup // For good functioning the caller should always submit blocks ordered by height // submitting a block before receiving ancestors of it, will result in it being ignored - SubmitL1Block(ctx context.Context, blockHeader *types.Header, processedData *ethadapter.ProcessedL1Data) (*BlockSubmissionResponse, SystemError) + SubmitL1Block(ctx context.Context, blockHeader *types.Header, processedData *ProcessedL1Data) (*BlockSubmissionResponse, SystemError) // SubmitBatch submits a batch received from the sequencer for processing. SubmitBatch(ctx context.Context, batch *ExtBatch) SystemError diff --git a/go/common/host/services.go b/go/common/host/services.go index ac240f36f8..da619c80ee 100644 --- a/go/common/host/services.go +++ b/go/common/host/services.go @@ -88,7 +88,7 @@ type L1BlockRepository interface { // FetchObscuroReceipts returns the receipts for a given L1 block FetchObscuroReceipts(block *common.L1Block) (types.Receipts, error) // ExtractTenTransactions returns the tx data and types of those relevant to Ten to be consumed by the enclave - ExtractTenTransactions(block *common.L1Block) (*ethadapter.ProcessedL1Data, error) + ExtractTenTransactions(block *common.L1Block) (*common.ProcessedL1Data, error) } // L1BlockHandler is an interface for receiving new blocks from the repository as they arrive diff --git a/go/common/l1_transaction.go b/go/common/l1_transaction.go new file mode 100644 index 0000000000..c1616648fd --- /dev/null +++ b/go/common/l1_transaction.go @@ -0,0 +1,38 @@ +package common + +import ( + "github.com/ethereum/go-ethereum/core/types" + "github.com/ethereum/go-ethereum/crypto/kzg4844" +) + +// TenTransaction is an abstraction that transforms an Ethereum transaction into a format that can be consumed more +// easily by TEN. +type TenTransaction interface{} + +type L1TxType int + +const ( + RollupTx L1TxType = iota + SecretRequestTx + InitialiseSecretTx + CrossChainMessageTx + CrossChainValueTranserTx + SequencerAddedTx + SetImportantContractsTx +) + +// ProcessedL1Data is submitted to the enclave by the guardian +type ProcessedL1Data struct { + BlockHeader *types.Header + Events map[L1TxType][]*L1TxData +} + +// L1TxData represents an L1 transaction that's relevant to us +type L1TxData struct { + Type TenTransaction + Transaction *types.Transaction + Receipt *types.Receipt + Blobs []*kzg4844.Blob // Only populated for blob transactions + CrossChainMessages *CrossChainMessages // Only populated for xchain messages + ValueTransfers *ValueTransferEvents // Only populated for xchain transfers +} diff --git a/go/enclave/components/block_processor.go b/go/enclave/components/block_processor.go index 62b5dd248b..f8c1e0ee4e 100644 --- a/go/enclave/components/block_processor.go +++ b/go/enclave/components/block_processor.go @@ -6,8 +6,6 @@ import ( "fmt" "time" - "github.com/ten-protocol/go-ten/go/ethadapter" - "github.com/ethereum/go-ethereum/core/types" "github.com/ten-protocol/go-ten/go/common/async" @@ -61,7 +59,7 @@ func NewBlockProcessor(storage storage.Storage, cc *crosschain.Processors, gasOr } } -func (bp *l1BlockProcessor) Process(ctx context.Context, processed *ethadapter.ProcessedL1Data) (*BlockIngestionType, error) { +func (bp *l1BlockProcessor) Process(ctx context.Context, processed *common.ProcessedL1Data) (*BlockIngestionType, error) { defer core.LogMethodDuration(bp.logger, measure.NewStopwatch(), "L1 block processed", log.BlockHashKey, processed.BlockHeader.Hash()) header := processed.BlockHeader ingestion, err := bp.tryAndInsertBlock(ctx, processed.BlockHeader) diff --git a/go/enclave/components/interfaces.go b/go/enclave/components/interfaces.go index c68be66135..24c488044d 100644 --- a/go/enclave/components/interfaces.go +++ b/go/enclave/components/interfaces.go @@ -5,8 +5,6 @@ import ( "errors" "math/big" - "github.com/ten-protocol/go-ten/go/ethadapter" - gethcommon "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/state" "github.com/ethereum/go-ethereum/core/types" @@ -40,7 +38,7 @@ func (bit *BlockIngestionType) IsFork() bool { } type L1BlockProcessor interface { - Process(ctx context.Context, br *ethadapter.ProcessedL1Data) (*BlockIngestionType, error) + Process(ctx context.Context, br *common.ProcessedL1Data) (*BlockIngestionType, error) GetHead(context.Context) (*types.Header, error) GetCrossChainContractAddress() *gethcommon.Address HealthCheck() (bool, error) @@ -125,5 +123,5 @@ type RollupProducer interface { type RollupConsumer interface { // ProcessBlobsInBlock - extracts the blob hashes from the block's transactions and builds the blob hashes from the blobs, // compares this with the hashes seen in the block. - ProcessBlobsInBlock(ctx context.Context, processedData *ethadapter.ProcessedL1Data) error + ProcessBlobsInBlock(ctx context.Context, processedData *common.ProcessedL1Data) error } diff --git a/go/enclave/components/rollup_consumer.go b/go/enclave/components/rollup_consumer.go index 53a8f9885e..ea619849cd 100644 --- a/go/enclave/components/rollup_consumer.go +++ b/go/enclave/components/rollup_consumer.go @@ -49,7 +49,7 @@ func NewRollupConsumer( } // ProcessBlobsInBlock - processes the blobs in a block, extracts the rollups, verifies the rollups and stores them -func (rc *rollupConsumerImpl) ProcessBlobsInBlock(ctx context.Context, processed *ethadapter.ProcessedL1Data) error { +func (rc *rollupConsumerImpl) ProcessBlobsInBlock(ctx context.Context, processed *common.ProcessedL1Data) error { defer core.LogMethodDuration(rc.logger, measure.NewStopwatch(), "Rollup consumer processed blobs", log.BlockHashKey, processed.BlockHeader.Hash()) block := processed.BlockHeader @@ -122,8 +122,8 @@ func (rc *rollupConsumerImpl) getSignedRollup(rollups []*common.ExtRollup) ([]*c // It processes each transaction, attempting to extract and verify rollups // If a transaction is not a rollup or fails verification, it's skipped // The function only returns an error if there's a critical failure in rollup reconstruction -func (rc *rollupConsumerImpl) extractAndVerifyRollups(processed *ethadapter.ProcessedL1Data) ([]*common.ExtRollup, error) { - rollupTxs := processed.Events[ethadapter.RollupTx] +func (rc *rollupConsumerImpl) extractAndVerifyRollups(processed *common.ProcessedL1Data) ([]*common.ExtRollup, error) { + rollupTxs := processed.Events[common.RollupTx] rollups := make([]*common.ExtRollup, 0, len(rollupTxs)) blobs, blobHashes, err := rc.extractBlobsAndHashes(rollupTxs) @@ -182,7 +182,7 @@ func verifyBlobHashes(rollupHashes *ethadapter.L1RollupHashes, blobHashes []geth return nil } -func (rc *rollupConsumerImpl) extractBlobsAndHashes(rollupTxs []*ethadapter.L1TxData) ([]*kzg4844.Blob, []gethcommon.Hash, error) { +func (rc *rollupConsumerImpl) extractBlobsAndHashes(rollupTxs []*common.L1TxData) ([]*kzg4844.Blob, []gethcommon.Hash, error) { blobs := make([]*kzg4844.Blob, 0) for _, tx := range rollupTxs { blobs = append(blobs, tx.Blobs...) diff --git a/go/enclave/components/shared_secret_process.go b/go/enclave/components/shared_secret_process.go index 7ffe7c9955..2fd520de3e 100644 --- a/go/enclave/components/shared_secret_process.go +++ b/go/enclave/components/shared_secret_process.go @@ -34,13 +34,13 @@ func NewSharedSecretProcessor(mgmtcontractlib mgmtcontractlib.MgmtContractLib, a } // ProcessNetworkSecretMsgs we watch for all messages that are requesting or receiving the secret and we store the nodes attested keys -func (ssp *SharedSecretProcessor) ProcessNetworkSecretMsgs(ctx context.Context, processed *ethadapter.ProcessedL1Data) []*common.ProducedSecretResponse { +func (ssp *SharedSecretProcessor) ProcessNetworkSecretMsgs(ctx context.Context, processed *common.ProcessedL1Data) []*common.ProducedSecretResponse { var responses []*common.ProducedSecretResponse block := processed.BlockHeader // process secret requests - for _, txData := range processed.Events[ethadapter.SecretRequestTx] { - scrtReqTx, ok := (*txData.Type).(*ethadapter.L1RequestSecretTx) // Dereference the interface pointer first + for _, txData := range processed.Events[common.SecretRequestTx] { + scrtReqTx, ok := txData.Type.(*ethadapter.L1RequestSecretTx) if !ok { continue } @@ -58,8 +58,8 @@ func (ssp *SharedSecretProcessor) ProcessNetworkSecretMsgs(ctx context.Context, } // process initialize secret events - for _, txData := range processed.Events[ethadapter.InitialiseSecretTx] { - initSecretTx, ok := (*txData.Type).(*ethadapter.L1InitializeSecretTx) + for _, txData := range processed.Events[common.InitialiseSecretTx] { + initSecretTx, ok := txData.Type.(*ethadapter.L1InitializeSecretTx) if !ok { continue } diff --git a/go/enclave/crosschain/block_message_extractor.go b/go/enclave/crosschain/block_message_extractor.go index 33cf8ae435..efea5450f7 100644 --- a/go/enclave/crosschain/block_message_extractor.go +++ b/go/enclave/crosschain/block_message_extractor.go @@ -4,8 +4,6 @@ import ( "context" "fmt" - "github.com/ten-protocol/go-ten/go/ethadapter" - "github.com/ethereum/go-ethereum/core/types" "github.com/ten-protocol/go-ten/go/enclave/core" @@ -41,12 +39,12 @@ func (m *blockMessageExtractor) Enabled() bool { return m.GetBusAddress().Big().Cmp(gethcommon.Big0) != 0 } -func (m *blockMessageExtractor) StoreCrossChainValueTransfers(ctx context.Context, block *types.Header, processedData *ethadapter.ProcessedL1Data) error { +func (m *blockMessageExtractor) StoreCrossChainValueTransfers(ctx context.Context, block *types.Header, processedData *common.ProcessedL1Data) error { defer core.LogMethodDuration(m.logger, measure.NewStopwatch(), "BlockHeader value transfer messages processed", log.BlockHashKey, block.Hash()) // collect all value transfer events from processed data var transfers common.ValueTransferEvents - for _, txData := range processedData.Events[ethadapter.CrossChainValueTranserTx] { + for _, txData := range processedData.Events[common.CrossChainValueTranserTx] { if txData.ValueTransfers != nil { transfers = append(transfers, *txData.ValueTransfers...) } @@ -66,13 +64,13 @@ func (m *blockMessageExtractor) StoreCrossChainValueTransfers(ctx context.Contex // The messages will be stored in DB storage for later usage. // block - the L1 block for which events are extracted. // receipts - all of the receipts for the corresponding block. This is validated. -func (m *blockMessageExtractor) StoreCrossChainMessages(ctx context.Context, block *types.Header, processedData *ethadapter.ProcessedL1Data) error { +func (m *blockMessageExtractor) StoreCrossChainMessages(ctx context.Context, block *types.Header, processedData *common.ProcessedL1Data) error { defer core.LogMethodDuration(m.logger, measure.NewStopwatch(), "BlockHeader cross chain messages processed", log.BlockHashKey, block.Hash()) // collect all messages from the events var xchain common.CrossChainMessages var receipts types.Receipts - for _, txData := range processedData.Events[ethadapter.CrossChainMessageTx] { + for _, txData := range processedData.Events[common.CrossChainMessageTx] { if txData.CrossChainMessages != nil { xchain = append(xchain, *txData.CrossChainMessages...) receipts = append(receipts, txData.Receipt) diff --git a/go/enclave/crosschain/interfaces.go b/go/enclave/crosschain/interfaces.go index 11b9757ec1..9103bd13bb 100644 --- a/go/enclave/crosschain/interfaces.go +++ b/go/enclave/crosschain/interfaces.go @@ -3,8 +3,6 @@ package crosschain import ( "context" - "github.com/ten-protocol/go-ten/go/ethadapter" - "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/core" @@ -21,9 +19,9 @@ type ( type BlockMessageExtractor interface { // StoreCrossChainMessages - Verifies receipts belong to block and saves the relevant cross chain messages from the receipts - StoreCrossChainMessages(ctx context.Context, block *types.Header, processedData *ethadapter.ProcessedL1Data) error + StoreCrossChainMessages(ctx context.Context, block *types.Header, processedData *common.ProcessedL1Data) error - StoreCrossChainValueTransfers(ctx context.Context, block *types.Header, processedData *ethadapter.ProcessedL1Data) error + StoreCrossChainValueTransfers(ctx context.Context, block *types.Header, processedData *common.ProcessedL1Data) error // GetBusAddress - Returns the L1 message bus address. GetBusAddress() *common.L1Address diff --git a/go/enclave/crosschain/message_bus_manager.go b/go/enclave/crosschain/message_bus_manager.go index cdf9b5ec99..827e83f2b7 100644 --- a/go/enclave/crosschain/message_bus_manager.go +++ b/go/enclave/crosschain/message_bus_manager.go @@ -111,7 +111,7 @@ func (m *MessageBusManager) GenerateMessageBusDeployTx() (*common.L2Tx, error) { return stx, nil } -// ExtractLocalMessages - Finds relevant logs in the receipts and converts them to cross chain messages. +// ExtractOutboundMessages - Finds relevant logs in the receipts and converts them to cross chain messages. func (m *MessageBusManager) ExtractOutboundMessages(ctx context.Context, receipts common.L2Receipts) (common.CrossChainMessages, error) { logs, err := filterLogsFromReceipts(receipts, m.messageBusAddress, &CrossChainEventID) if err != nil { @@ -119,7 +119,7 @@ func (m *MessageBusManager) ExtractOutboundMessages(ctx context.Context, receipt return make(common.CrossChainMessages, 0), err } - messages, err := convertLogsToMessages(logs, CrossChainEventName, MessageBusABI) + messages, err := ConvertLogsToMessages(logs, CrossChainEventName, MessageBusABI) if err != nil { m.logger.Error("Error converting messages from L2 message bus!", log.ErrKey, err) return make(common.CrossChainMessages, 0), err diff --git a/go/enclave/enclave.go b/go/enclave/enclave.go index 98999fdb2c..bd528894ef 100644 --- a/go/enclave/enclave.go +++ b/go/enclave/enclave.go @@ -326,11 +326,11 @@ func (e *enclaveImpl) StreamL2Updates() (chan common.StreamL2UpdatesResponse, fu } // SubmitL1Block is used to update the enclave with an additional L1 block. -func (e *enclaveImpl) SubmitL1Block(ctx context.Context, blockHeader *types.Header, receipts []*common.TxAndReceiptAndBlobs) (*common.BlockSubmissionResponse, common.SystemError) { +func (e *enclaveImpl) SubmitL1Block(ctx context.Context, blockHeader *types.Header, processed *common.ProcessedL1Data) (*common.BlockSubmissionResponse, common.SystemError) { if systemError := checkStopping(e.stopControl); systemError != nil { return nil, systemError } - return e.adminService.SubmitL1Block(ctx, blockHeader, receipts) + return e.adminService.SubmitL1Block(ctx, blockHeader, processed) } func (e *enclaveImpl) SubmitBatch(ctx context.Context, extBatch *common.ExtBatch) common.SystemError { diff --git a/go/enclave/enclave_admin_service.go b/go/enclave/enclave_admin_service.go index e62b93c908..0c67286757 100644 --- a/go/enclave/enclave_admin_service.go +++ b/go/enclave/enclave_admin_service.go @@ -8,8 +8,6 @@ import ( "sync" "time" - "github.com/ten-protocol/go-ten/go/ethadapter" - gethcommon "github.com/ethereum/go-ethereum/common" enclaveconfig "github.com/ten-protocol/go-ten/go/enclave/config" @@ -127,7 +125,7 @@ func (e *enclaveAdminService) MakeActive() common.SystemError { } // SubmitL1Block is used to update the enclave with an additional L1 block. -func (e *enclaveAdminService) SubmitL1Block(ctx context.Context, blockHeader *types.Header, processed *ethadapter.ProcessedL1Data) (*common.BlockSubmissionResponse, common.SystemError) { +func (e *enclaveAdminService) SubmitL1Block(ctx context.Context, blockHeader *types.Header, processed *common.ProcessedL1Data) (*common.BlockSubmissionResponse, common.SystemError) { e.mainMutex.Lock() defer e.mainMutex.Unlock() @@ -418,7 +416,7 @@ func (e *enclaveAdminService) streamEventsForNewHeadBatch(ctx context.Context, b } } -func (e *enclaveAdminService) ingestL1Block(ctx context.Context, processed *ethadapter.ProcessedL1Data) (*components.BlockIngestionType, error) { +func (e *enclaveAdminService) ingestL1Block(ctx context.Context, processed *common.ProcessedL1Data) (*components.BlockIngestionType, error) { e.logger.Info("Start ingesting block", log.BlockHashKey, processed.BlockHeader.Hash()) ingestion, err := e.l1BlockProcessor.Process(ctx, processed) if err != nil { diff --git a/go/enclave/rpc_server.go b/go/enclave/rpc_server.go index b1e4ce46ec..65c208fb6f 100644 --- a/go/enclave/rpc_server.go +++ b/go/enclave/rpc_server.go @@ -139,13 +139,13 @@ func (s *RPCServer) SubmitL1Block(ctx context.Context, request *generated.Submit return nil, err } - txReceiptsAndBlobs, err := s.decodeReceiptsAndBlobs(request.EncodedReceipts) + processedData, err := s.decodeProcessedData(request.EncodedProcessedData) if err != nil { s.logger.Error("Error decoding receipts", log.ErrKey, err) return nil, err } - blockSubmissionResponse, err := s.enclave.SubmitL1Block(ctx, bl, txReceiptsAndBlobs) + blockSubmissionResponse, err := s.enclave.SubmitL1Block(ctx, bl, processedData) if err != nil { var rejErr *errutil.BlockRejectError isReject := errors.As(err, &rejErr) @@ -427,16 +427,16 @@ func (s *RPCServer) decodeBlock(encodedBlock []byte) (*types.Header, error) { return &block, nil } -// decodeReceiptsAndBlobs - converts the rlp encoded bytes to receipts if possible. -func (s *RPCServer) decodeReceiptsAndBlobs(encodedReceipts []byte) ([]*common.TxAndReceiptAndBlobs, error) { - receipts := make([]*common.TxAndReceiptAndBlobs, 0) +// decodeProcessedData - converts the rlp encoded bytes to processed if possible. +func (s *RPCServer) decodeProcessedData(encodedData []byte) (*common.ProcessedL1Data, error) { + var processed common.ProcessedL1Data - err := rlp.DecodeBytes(encodedReceipts, &receipts) + err := rlp.DecodeBytes(encodedData, &processed) if err != nil { - return nil, fmt.Errorf("unable to decode receipts, bytes=%x, err=%w", encodedReceipts, err) + return nil, fmt.Errorf("unable to decode receipts, bytes=%x, err=%w", encodedData, err) } - return receipts, nil + return &processed, nil } func toRPCError(err common.SystemError) *generated.SystemError { diff --git a/go/ethadapter/erc20contractlib/erc20_contract_lib.go b/go/ethadapter/erc20contractlib/erc20_contract_lib.go index 162d0f4da8..351eb00587 100644 --- a/go/ethadapter/erc20contractlib/erc20_contract_lib.go +++ b/go/ethadapter/erc20contractlib/erc20_contract_lib.go @@ -1,6 +1,7 @@ package erc20contractlib import ( + "github.com/ten-protocol/go-ten/go/common" "math/big" "strings" @@ -17,7 +18,7 @@ const methodBytesLen = 4 type ERC20ContractLib interface { // DecodeTx receives a *types.Transaction and converts it to an common.L1Transaction // returns nil if the transaction is not convertible - DecodeTx(tx *types.Transaction) ethadapter.L1Transaction + DecodeTx(tx *types.Transaction) common.TenTransaction // CreateDepositTx receives an common.L1Transaction and converts it to an eth transaction CreateDepositTx(tx *ethadapter.L1DepositTx) types.TxData @@ -56,7 +57,7 @@ func (c *erc20ContractLibImpl) CreateDepositTx(tx *ethadapter.L1DepositTx) types } } -func (c *erc20ContractLibImpl) DecodeTx(tx *types.Transaction) ethadapter.L1Transaction { +func (c *erc20ContractLibImpl) DecodeTx(tx *types.Transaction) common.TenTransaction { if !c.isRelevant(tx) { return nil } diff --git a/go/ethadapter/l1_transaction.go b/go/ethadapter/l1_transaction.go index ed5efc50fb..1b57405cdf 100644 --- a/go/ethadapter/l1_transaction.go +++ b/go/ethadapter/l1_transaction.go @@ -5,18 +5,15 @@ import ( "fmt" "math/big" - "github.com/ethereum/go-ethereum/core/types" - "github.com/ethereum/go-ethereum/crypto/kzg4844" - "github.com/ten-protocol/go-ten/go/common" gethcommon "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/crypto" ) -// L1Transaction is an abstraction that transforms an Ethereum transaction into a format that can be consumed more -// easily by TEN. -type L1Transaction interface{} +//// L1Transaction is an abstraction that transforms an Ethereum transaction into a format that can be consumed more +//// easily by TEN. +//type L1Transaction interface{} type L1RollupTx struct { Rollup common.EncodedRollup @@ -80,30 +77,31 @@ type L1InitializeSecretTx struct { Attestation common.EncodedAttestationReport } -type L1TxType int - -const ( - RollupTx L1TxType = iota - SecretRequestTx - InitialiseSecretTx - CrossChainMessageTx - CrossChainValueTranserTx - SequencerAddedTx - SetImportantContractsTx -) - -// ProcessedL1Data is submitted to the enclave by the guardian -type ProcessedL1Data struct { - BlockHeader *types.Header - Events map[L1TxType][]*L1TxData -} - -// L1TxData represents an L1 transaction that's relevant to us -type L1TxData struct { - Type *L1Transaction - Transaction *types.Transaction - Receipt *types.Receipt - Blobs []*kzg4844.Blob // Only populated for blob transactions - CrossChainMessages *common.CrossChainMessages // Only populated for xchain messages - ValueTransfers *common.ValueTransferEvents // Only populated for xchain transfers -} +// +//type L1TxType int +// +//const ( +// RollupTx L1TxType = iota +// SecretRequestTx +// InitialiseSecretTx +// CrossChainMessageTx +// CrossChainValueTranserTx +// SequencerAddedTx +// SetImportantContractsTx +//) +// +//// ProcessedL1Data is submitted to the enclave by the guardian +//type ProcessedL1Data struct { +// BlockHeader *types.Header +// Events map[L1TxType][]*L1TxData +//} +// +//// L1TxData represents an L1 transaction that's relevant to us +//type L1TxData struct { +// Type *L1Transaction +// Transaction *types.Transaction +// Receipt *types.Receipt +// Blobs []*kzg4844.Blob // Only populated for blob transactions +// CrossChainMessages *common.CrossChainMessages // Only populated for xchain messages +// ValueTransfers *common.ValueTransferEvents // Only populated for xchain transfers +//} diff --git a/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go b/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go index d6184cc4d0..911f52df5c 100644 --- a/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go +++ b/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go @@ -31,7 +31,7 @@ type MgmtContractLib interface { CreateInitializeSecret(tx *ethadapter.L1InitializeSecretTx) types.TxData // DecodeTx receives a *types.Transaction and converts it to a common.L1Transaction - DecodeTx(tx *types.Transaction) ethadapter.L1Transaction + DecodeTx(tx *types.Transaction) common.TenTransaction GetContractAddr() *gethcommon.Address // The methods below are used to create call messages for mgmt contract data and unpack the responses @@ -75,7 +75,7 @@ func (c *contractLibImpl) GetContractAddr() *gethcommon.Address { return c.addr } -func (c *contractLibImpl) DecodeTx(tx *types.Transaction) ethadapter.L1Transaction { +func (c *contractLibImpl) DecodeTx(tx *types.Transaction) common.TenTransaction { if tx.To() == nil || tx.To().Hex() != c.addr.Hex() || len(tx.Data()) == 0 { return nil } diff --git a/go/host/container/host_container.go b/go/host/container/host_container.go index e05dfd3a17..b704544d89 100644 --- a/go/host/container/host_container.go +++ b/go/host/container/host_container.go @@ -2,6 +2,7 @@ package container import ( "fmt" + gethcommon "github.com/ethereum/go-ethereum/common" "net/http" "time" @@ -148,7 +149,11 @@ func NewHostContainerFromConfig(cfg *hostconfig.HostConfig, logger gethlog.Logge beaconFallback := ethadapter.NewBeaconHTTPClient(new(http.Client), cfg.L1BlobArchiveUrl) // we can add more fallback clients as they become available blobResolver := l1.NewBlobResolver(ethadapter.NewL1BeaconClient(beaconClient, beaconFallback)) - l1Repo := l1.NewL1Repository(l1Client, logger, mgmtContractLib, blobResolver, cfg.ManagementContractAddress, cfg.MessageBusAddress) + contractAddresses := map[l1.ContractType][]gethcommon.Address{ + l1.MgmtContract: {cfg.ManagementContractAddress}, + l1.MsgBus: {cfg.MessageBusAddress}, + } + l1Repo := l1.NewL1Repository(l1Client, logger, mgmtContractLib, blobResolver, contractAddresses) return NewHostContainer(cfg, services, aggP2P, l1Client, l1Repo, enclaveClients, mgmtContractLib, ethWallet, rpcServer, logger, metricsService, blobResolver) } diff --git a/go/host/enclave/guardian.go b/go/host/enclave/guardian.go index eafc529cd4..0e05d3d5f7 100644 --- a/go/host/enclave/guardian.go +++ b/go/host/enclave/guardian.go @@ -755,13 +755,13 @@ func (g *Guardian) getLatestBatchNo() (uint64, error) { return fromBatch, nil } -func (g *Guardian) getRollupsAndContractAddrTxs(data ethadapter.ProcessedL1Data) ([]*ethadapter.L1RollupTx, []*ethadapter.L1SetImportantContractsTx) { +func (g *Guardian) getRollupsAndContractAddrTxs(data common.ProcessedL1Data) ([]*ethadapter.L1RollupTx, []*ethadapter.L1SetImportantContractsTx) { rollupTxs := make([]*ethadapter.L1RollupTx, 0) contractAddressTxs := make([]*ethadapter.L1SetImportantContractsTx, 0) for !g.hostInterrupter.IsStopping() { // Get rollup transactions - for _, event := range data.Events[ethadapter.RollupTx] { + for _, event := range data.Events[common.RollupTx] { encodedRlp, err := ethadapter.DecodeBlobs(event.Blobs) if err != nil { g.logger.Crit("could not decode blobs.", log.ErrKey, err) @@ -775,7 +775,7 @@ func (g *Guardian) getRollupsAndContractAddrTxs(data ethadapter.ProcessedL1Data) } // Get contract address transactions - for _, event := range data.Events[ethadapter.SetImportantContractsTx] { + for _, event := range data.Events[common.SetImportantContractsTx] { if contractTx, ok := event.Type.(*ethadapter.L1SetImportantContractsTx); ok { contractAddressTxs = append(contractAddressTxs, contractTx) } else { diff --git a/go/host/l1/blockrepository.go b/go/host/l1/blockrepository.go index 0ba7195e1b..d253b5414c 100644 --- a/go/host/l1/blockrepository.go +++ b/go/host/l1/blockrepository.go @@ -32,6 +32,13 @@ var ( ErrNoNextBlock = errors.New("no next block") ) +type ContractType int + +const ( + MgmtContract ContractType = iota + MsgBus +) + // Repository is a host service for subscribing to new blocks and looking up L1 data type Repository struct { blockSubscribers *subscription.Manager[host.L1BlockHandler] @@ -41,10 +48,9 @@ type Repository struct { mgmtContractLib mgmtcontractlib.MgmtContractLib blobResolver BlobResolver - running atomic.Bool - head gethcommon.Hash - managementContractAddr gethcommon.Address - messageBusAddr gethcommon.Address + running atomic.Bool + head gethcommon.Hash + contractAddresses map[ContractType][]gethcommon.Address } func NewL1Repository( @@ -52,18 +58,16 @@ func NewL1Repository( logger gethlog.Logger, mgmtContractLib mgmtcontractlib.MgmtContractLib, blobResolver BlobResolver, - managementContractAddr gethcommon.Address, - messageBusAddr gethcommon.Address, + contractAddresses map[ContractType][]gethcommon.Address, ) *Repository { return &Repository{ - blockSubscribers: subscription.NewManager[host.L1BlockHandler](), - ethClient: ethClient, - running: atomic.Bool{}, - logger: logger, - mgmtContractLib: mgmtContractLib, - blobResolver: blobResolver, - managementContractAddr: managementContractAddr, - messageBusAddr: messageBusAddr, + blockSubscribers: subscription.NewManager[host.L1BlockHandler](), + ethClient: ethClient, + running: atomic.Bool{}, + logger: logger, + mgmtContractLib: mgmtContractLib, + blobResolver: blobResolver, + contractAddresses: contractAddresses, } } @@ -153,7 +157,10 @@ func (r *Repository) FetchObscuroReceipts(block *common.L1Block) (types.Receipts blkHash := block.Hash() // we want to send receipts for any transactions that produced obscuro-relevant log events - logs, err := r.ethClient.GetLogs(ethereum.FilterQuery{BlockHash: &blkHash, Addresses: []gethcommon.Address{r.managementContractAddr, r.messageBusAddr}}) + var allAddresses []gethcommon.Address + allAddresses = append(allAddresses, r.contractAddresses[MgmtContract]...) + allAddresses = append(allAddresses, r.contractAddresses[MsgBus]...) + logs, err := r.ethClient.GetLogs(ethereum.FilterQuery{BlockHash: &blkHash, Addresses: allAddresses}) if err != nil { return nil, fmt.Errorf("unable to fetch logs for L1 block - %w", err) } @@ -188,10 +195,10 @@ func (r *Repository) FetchObscuroReceipts(block *common.L1Block) (types.Receipts // ExtractTenTransactions does all the filtering of txs to find all the transaction types we care about on the L2. These // are pulled from the data in the L1 blocks and then submitted to the enclave for processing -func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*ethadapter.ProcessedL1Data, error) { - processed := ðadapter.ProcessedL1Data{ +func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.ProcessedL1Data, error) { + processed := &common.ProcessedL1Data{ BlockHeader: block.Header(), - Events: make(map[ethadapter.L1TxType][]*ethadapter.L1TxData), + Events: make(map[common.L1TxType][]*common.L1TxData), } txsWithReceipts, err := r.getRelevantTxReceiptsAndBlobs(block) if err != nil { @@ -214,7 +221,7 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*ethadapter. r.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) } - txData := ðadapter.L1TxData{ + txData := &common.L1TxData{ Transaction: txWithReceipt.Tx, Receipt: txWithReceipt.Receipt, Blobs: txWithReceipt.Blobs, @@ -223,19 +230,19 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*ethadapter. } if len(*txData.CrossChainMessages) > 0 { - processed.Events[ethadapter.CrossChainMessageTx] = append(processed.Events[ethadapter.CrossChainMessageTx], txData) + processed.Events[common.CrossChainMessageTx] = append(processed.Events[common.CrossChainMessageTx], txData) } if len(*txData.ValueTransfers) > 0 { - processed.Events[ethadapter.CrossChainValueTranserTx] = append(processed.Events[ethadapter.CrossChainValueTranserTx], txData) + processed.Events[common.CrossChainValueTranserTx] = append(processed.Events[common.CrossChainValueTranserTx], txData) } if len(txData.Blobs) > 0 { - processed.Events[ethadapter.RollupTx] = append(processed.Events[ethadapter.RollupTx], txData) + processed.Events[common.RollupTx] = append(processed.Events[common.RollupTx], txData) } if len(sequencerLogs) > 0 { - processed.Events[ethadapter.SequencerAddedTx] = append(processed.Events[ethadapter.SequencerAddedTx], txData) + processed.Events[common.SequencerAddedTx] = append(processed.Events[common.SequencerAddedTx], txData) } decodedTx := r.mgmtContractLib.DecodeTx(txWithReceipt.Tx) @@ -244,13 +251,13 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*ethadapter. } txData.Type = decodedTx - switch _ := decodedTx.(type) { + switch decodedTx.(type) { case *ethadapter.L1RequestSecretTx: - processed.Events[ethadapter.SecretRequestTx] = append(processed.Events[ethadapter.SecretRequestTx], txData) + processed.Events[common.SecretRequestTx] = append(processed.Events[common.SecretRequestTx], txData) case *ethadapter.L1InitializeSecretTx: - processed.Events[ethadapter.InitialiseSecretTx] = append(processed.Events[ethadapter.InitialiseSecretTx], txData) + processed.Events[common.InitialiseSecretTx] = append(processed.Events[common.InitialiseSecretTx], txData) case *ethadapter.L1SetImportantContractsTx: - processed.Events[ethadapter.SetImportantContractsTx] = append(processed.Events[ethadapter.SetImportantContractsTx], txData) + processed.Events[common.SetImportantContractsTx] = append(processed.Events[common.SetImportantContractsTx], txData) } } @@ -313,8 +320,10 @@ func (r *Repository) FetchBlockByHeight(height *big.Int) (*types.Block, error) { // isObscuroTransaction will look at the 'to' address of the transaction, we are only interested in management contract and bridge transactions func (r *Repository) isObscuroTransaction(transaction *types.Transaction) bool { - contracts := []gethcommon.Address{r.managementContractAddr, r.messageBusAddr} - for _, address := range contracts { + var allAddresses []gethcommon.Address + allAddresses = append(allAddresses, r.contractAddresses[MgmtContract]...) + allAddresses = append(allAddresses, r.contractAddresses[MsgBus]...) + for _, address := range allAddresses { if transaction.To() != nil && *transaction.To() == address { return true } @@ -362,7 +371,7 @@ func (r *Repository) getRelevantTxReceiptsAndBlobs(block *common.L1Block) ([]*co } func (r *Repository) getCrossChainMessages(receipt *types.Receipt) (common.CrossChainMessages, error) { - logsForReceipt, err := crosschain.FilterLogsFromReceipt(receipt, &r.messageBusAddr, &crosschain.CrossChainEventID) + logsForReceipt, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MsgBus][0], &crosschain.CrossChainEventID) if err != nil { r.logger.Error("Error encountered when filtering receipt logs for cross chain messages.", log.ErrKey, err) return make(common.CrossChainMessages, 0), err @@ -377,7 +386,7 @@ func (r *Repository) getCrossChainMessages(receipt *types.Receipt) (common.Cross } func (r *Repository) getValueTransferEvents(receipt *types.Receipt) (common.ValueTransferEvents, error) { - logsForReceipt, err := crosschain.FilterLogsFromReceipt(receipt, &r.messageBusAddr, &crosschain.ValueTransferEventID) + logsForReceipt, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MsgBus][0], &crosschain.ValueTransferEventID) if err != nil { r.logger.Error("Error encountered when filtering receipt logs for value transfers.", log.ErrKey, err) return make(common.ValueTransferEvents, 0), err @@ -392,7 +401,7 @@ func (r *Repository) getValueTransferEvents(receipt *types.Receipt) (common.Valu } func (r *Repository) getSequencerEventLogs(receipt *types.Receipt) ([]types.Log, error) { - sequencerLogs, err := crosschain.FilterLogsFromReceipt(receipt, &r.managementContractAddr, &crosschain.SequencerEnclaveGrantedEventID) + sequencerLogs, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MgmtContract][0], &crosschain.SequencerEnclaveGrantedEventID) if err != nil { r.logger.Error("Error filtering sequencer logs", log.ErrKey, err) return []types.Log{}, err diff --git a/go/host/rpc/enclaverpc/enclave_client.go b/go/host/rpc/enclaverpc/enclave_client.go index d3a136f960..e251278464 100644 --- a/go/host/rpc/enclaverpc/enclave_client.go +++ b/go/host/rpc/enclaverpc/enclave_client.go @@ -8,8 +8,6 @@ import ( "math/big" "time" - "github.com/ten-protocol/go-ten/go/ethadapter" - "github.com/ethereum/go-ethereum/core/types" "github.com/ten-protocol/go-ten/go/enclave/core" @@ -200,7 +198,7 @@ func (c *Client) EnclaveID(ctx context.Context) (common.EnclaveID, common.System return common.EnclaveID(response.EnclaveID), nil } -func (c *Client) SubmitL1Block(ctx context.Context, blockHeader *types.Header, processedData *ethadapter.ProcessedL1Data) (*common.BlockSubmissionResponse, common.SystemError) { +func (c *Client) SubmitL1Block(ctx context.Context, blockHeader *types.Header, processedData *common.ProcessedL1Data) (*common.BlockSubmissionResponse, common.SystemError) { var buffer bytes.Buffer if err := blockHeader.EncodeRLP(&buffer); err != nil { return nil, fmt.Errorf("could not encode block. Cause: %w", err) diff --git a/integration/ethereummock/erc20_contract_lib.go b/integration/ethereummock/erc20_contract_lib.go index e9b0117c86..1ab0023834 100644 --- a/integration/ethereummock/erc20_contract_lib.go +++ b/integration/ethereummock/erc20_contract_lib.go @@ -2,11 +2,12 @@ package ethereummock import ( "bytes" - - "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" + "github.com/ten-protocol/go-ten/go/common" "github.com/ten-protocol/go-ten/go/ethadapter" "github.com/ten-protocol/go-ten/go/ethadapter/erc20contractlib" + + gethcommon "github.com/ethereum/go-ethereum/common" ) type contractLib struct{} @@ -15,8 +16,8 @@ func (c *contractLib) CreateDepositTx(tx *ethadapter.L1DepositTx) types.TxData { return encodeTx(tx, depositTxAddr) } -// Return only deposit transactions to the management contract -func (c *contractLib) DecodeTx(tx *types.Transaction) ethadapter.L1Transaction { +// DecodeTx - return only deposit transactions to the management contract +func (c *contractLib) DecodeTx(tx *types.Transaction) common.TenTransaction { if bytes.Equal(tx.To().Bytes(), depositTxAddr.Bytes()) { depositTx, ok := decodeTx(tx).(*ethadapter.L1DepositTx) if !ok { @@ -25,7 +26,7 @@ func (c *contractLib) DecodeTx(tx *types.Transaction) ethadapter.L1Transaction { // Mock deposits towards the L1 bridge target nil as the management contract address // is not set. - if bytes.Equal(depositTx.To.Bytes(), common.BigToAddress(common.Big0).Bytes()) { + if bytes.Equal(depositTx.To.Bytes(), gethcommon.BigToAddress(gethcommon.Big0).Bytes()) { return depositTx } } diff --git a/integration/ethereummock/mgmt_contract_lib.go b/integration/ethereummock/mgmt_contract_lib.go index 500a40a889..e2d2f0904d 100644 --- a/integration/ethereummock/mgmt_contract_lib.go +++ b/integration/ethereummock/mgmt_contract_lib.go @@ -4,6 +4,8 @@ import ( "bytes" "encoding/gob" "fmt" + "github.com/ten-protocol/go-ten/go/common" + "github.com/ten-protocol/go-ten/go/host/l1" "github.com/ten-protocol/go-ten/go/ethadapter" "github.com/ten-protocol/go-ten/integration/datagenerator" @@ -22,13 +24,19 @@ var ( storeSecretTxAddr = datagenerator.RandomAddress() requestSecretTxAddr = datagenerator.RandomAddress() initializeSecretTxAddr = datagenerator.RandomAddress() - // MgmtContractAddresses make all these addresses available for the host to know what receipts will be forwarded to the enclave - MgmtContractAddresses = []gethcommon.Address{ - depositTxAddr, - rollupTxAddr, - storeSecretTxAddr, - requestSecretTxAddr, - initializeSecretTxAddr, + messageBusAddr = datagenerator.RandomAddress() + // ContractAddresses maps contract types to their addresses + ContractAddresses = map[l1.ContractType][]gethcommon.Address{ + l1.MgmtContract: { + depositTxAddr, + rollupTxAddr, + storeSecretTxAddr, + requestSecretTxAddr, + initializeSecretTxAddr, + }, + l1.MsgBus: { + messageBusAddr, + }, } ) @@ -49,7 +57,7 @@ func (m *mockContractLib) GetContractAddr() *gethcommon.Address { return &rollupTxAddr } -func (m *mockContractLib) DecodeTx(tx *types.Transaction) ethadapter.L1Transaction { +func (m *mockContractLib) DecodeTx(tx *types.Transaction) common.TenTransaction { // Do not decode erc20 transactions, this is the responsibility // of the erc20 contract lib. if tx.To().Hex() == depositTxAddr.Hex() { @@ -134,7 +142,7 @@ func (m *mockContractLib) DecodeImportantAddressResponse([]byte) (gethcommon.Add return gethcommon.Address{}, nil } -func decodeTx(tx *types.Transaction) ethadapter.L1Transaction { +func decodeTx(tx *types.Transaction) common.TenTransaction { if len(tx.Data()) == 0 { panic("Data cannot be 0 in the mock implementation") } @@ -146,7 +154,7 @@ func decodeTx(tx *types.Transaction) ethadapter.L1Transaction { // in the mock implementation we use the To address field to specify the L1 operation (rollup/storesecret/requestsecret) // the mock implementation does not process contracts // so this is a way that we can differentiate different contract calls - var t ethadapter.L1Transaction + var t common.TenTransaction switch tx.To().Hex() { case storeSecretTxAddr.Hex(): t = ðadapter.L1RespondSecretTx{} @@ -168,7 +176,7 @@ func decodeTx(tx *types.Transaction) ethadapter.L1Transaction { return t } -func encodeTx(tx ethadapter.L1Transaction, opType gethcommon.Address) types.TxData { +func encodeTx(tx common.TenTransaction, opType gethcommon.Address) types.TxData { var buf bytes.Buffer enc := gob.NewEncoder(&buf) diff --git a/integration/simulation/network/network_utils.go b/integration/simulation/network/network_utils.go index 52a3b25192..d333eb934f 100644 --- a/integration/simulation/network/network_utils.go +++ b/integration/simulation/network/network_utils.go @@ -111,7 +111,7 @@ func createInMemTenNode( // create an in memory TEN node hostLogger := testlog.Logger().New(log.NodeIDKey, id, log.CmpKey, log.HostCmp) metricsService := metrics.New(hostConfig.MetricsEnabled, hostConfig.MetricsHTTPPort, hostLogger) - l1Repo := l1.NewL1Repository(ethClient, ethereummock.MgmtContractAddresses, hostLogger) + l1Repo := l1.NewL1Repository(ethClient, hostLogger, mgmtContractLib, blobResolver, ethereummock.ContractAddresses) currentContainer := hostcontainer.NewHostContainer(hostConfig, host.NewServicesRegistry(hostLogger), mockP2P, ethClient, l1Repo, enclaveClients, mgmtContractLib, ethWallet, nil, hostLogger, metricsService, blobResolver) return currentContainer diff --git a/integration/simulation/transaction_injector_tracker.go b/integration/simulation/transaction_injector_tracker.go index e6b678fc65..c2b4f472fe 100644 --- a/integration/simulation/transaction_injector_tracker.go +++ b/integration/simulation/transaction_injector_tracker.go @@ -4,7 +4,6 @@ import ( "sync" "github.com/ethereum/go-ethereum/core/types" - "github.com/ten-protocol/go-ten/go/ethadapter" "github.com/ten-protocol/go-ten/go/wallet" "github.com/ten-protocol/go-ten/go/common" @@ -13,7 +12,7 @@ import ( type txInjectorTracker struct { gasTransactionsLock sync.RWMutex l1TransactionsLock sync.RWMutex - L1Transactions []ethadapter.L1Transaction + L1Transactions []common.TenTransaction l2TransactionsLock sync.RWMutex TransferL2Transactions []*common.L2Tx NativeValueTransferL2Transactions []*common.L2Tx @@ -29,7 +28,7 @@ type GasBridgingRecord struct { func newCounter() *txInjectorTracker { return &txInjectorTracker{ l1TransactionsLock: sync.RWMutex{}, - L1Transactions: []ethadapter.L1Transaction{}, + L1Transactions: []common.TenTransaction{}, l2TransactionsLock: sync.RWMutex{}, TransferL2Transactions: []*common.L2Tx{}, WithdrawalL2Transactions: []*common.L2Tx{}, @@ -48,7 +47,7 @@ func (m *txInjectorTracker) trackGasBridgingTx(tx *types.Transaction, receiverWa } // trackL1Tx adds an L1Tx to the internal list -func (m *txInjectorTracker) trackL1Tx(tx ethadapter.L1Transaction) { +func (m *txInjectorTracker) trackL1Tx(tx common.TenTransaction) { m.l1TransactionsLock.Lock() defer m.l1TransactionsLock.Unlock() m.L1Transactions = append(m.L1Transactions, tx) @@ -73,7 +72,7 @@ func (m *txInjectorTracker) trackNativeValueTransferL2Tx(tx *common.L2Tx) { } // GetL1Transactions returns all generated L1 L2Txs -func (m *txInjectorTracker) GetL1Transactions() []ethadapter.L1Transaction { +func (m *txInjectorTracker) GetL1Transactions() []common.TenTransaction { return m.L1Transactions } From d97469ff9c6814707ac5880297a80d1ea29d61cd Mon Sep 17 00:00:00 2001 From: Will Hester Date: Fri, 29 Nov 2024 14:37:12 +0000 Subject: [PATCH 07/21] fix nil txs with failed receipt --- go/common/host/services.go | 6 +-- go/common/l1_transaction.go | 41 ++++++++++++++++++- go/common/types.go | 30 -------------- go/enclave/components/rollup_consumer.go | 2 +- .../components/shared_secret_process.go | 4 +- .../crosschain/block_message_extractor.go | 4 +- go/enclave/enclave_admin_service.go | 7 ++-- .../erc20contractlib/erc20_contract_lib.go | 3 +- go/ethadapter/l1_transaction.go | 33 --------------- go/host/container/host_container.go | 3 +- go/host/enclave/guardian.go | 38 ++++++++--------- go/host/l1/blockrepository.go | 27 +++++++----- go/host/rpc/enclaverpc/enclave_client.go | 2 +- .../ethereummock/erc20_contract_lib.go | 1 + integration/ethereummock/mgmt_contract_lib.go | 1 + 15 files changed, 92 insertions(+), 110 deletions(-) diff --git a/go/common/host/services.go b/go/common/host/services.go index 3b68d7e31b..40f89b4344 100644 --- a/go/common/host/services.go +++ b/go/common/host/services.go @@ -2,7 +2,7 @@ package host import ( "context" - "github.com/ten-protocol/go-ten/go/common/l1" + "github.com/ten-protocol/go-ten/go/ethadapter" "math/big" "github.com/ten-protocol/go-ten/go/responses" @@ -104,9 +104,9 @@ type L1Publisher interface { // RequestSecret will send a management contract transaction to request a secret from the enclave, returning the L1 head at time of sending RequestSecret(report *common.AttestationReport) (gethcommon.Hash, error) // ExtractRelevantTenTransactions will return all TEN relevant tx from an L1 block - ExtractRelevantTenTransactions(block *types.Block, receipts types.Receipts) ([]*common.TxAndReceiptAndBlobs, []*l1.L1RollupTx, []*l1.L1SetImportantContractsTx) + ExtractRelevantTenTransactions(block *types.Block, receipts types.Receipts) ([]*common.TxAndReceiptAndBlobs, []*ethadapter.L1RollupTx, []*ethadapter.L1SetImportantContractsTx) // FindSecretResponseTx will return the secret response tx from an L1 block - FindSecretResponseTx(block *types.Block) []*l1.L1RespondSecretTx + FindSecretResponseTx(block *types.Block) []*ethadapter.L1RespondSecretTx // PublishRollup will create and publish a rollup tx to the management contract - fire and forget we don't wait for receipt // todo (#1624) - With a single sequencer, it is problematic if rollup publication fails; handle this case better PublishRollup(producedRollup *common.ExtRollup) diff --git a/go/common/l1_transaction.go b/go/common/l1_transaction.go index c1616648fd..88999e4cfc 100644 --- a/go/common/l1_transaction.go +++ b/go/common/l1_transaction.go @@ -9,7 +9,8 @@ import ( // easily by TEN. type TenTransaction interface{} -type L1TxType int +// L1TxType represents different types of L1 transactions +type L1TxType uint8 // Change to uint8 for RLP serialization const ( RollupTx L1TxType = iota @@ -21,10 +22,16 @@ const ( SetImportantContractsTx ) +// L1Event represents a single event type and its associated transactions +type L1Event struct { + Type uint8 // Change to uint8 for RLP serialization + Txs []*L1TxData +} + // ProcessedL1Data is submitted to the enclave by the guardian type ProcessedL1Data struct { BlockHeader *types.Header - Events map[L1TxType][]*L1TxData + Events []L1Event // Changed from map to slice of L1Event } // L1TxData represents an L1 transaction that's relevant to us @@ -36,3 +43,33 @@ type L1TxData struct { CrossChainMessages *CrossChainMessages // Only populated for xchain messages ValueTransfers *ValueTransferEvents // Only populated for xchain transfers } + +// helper methods as we can't serialize a map +func (p *ProcessedL1Data) AddEvent(txType L1TxType, tx *L1TxData) { + for i := range p.Events { + if p.Events[i].Type == uint8(txType) { + p.Events[i].Txs = append(p.Events[i].Txs, tx) + return + } + } + p.Events = append(p.Events, L1Event{ + Type: uint8(txType), // Convert to uint8 when storing + Txs: []*L1TxData{tx}, + }) +} + +func (p *ProcessedL1Data) GetEvents(txType L1TxType) []*L1TxData { + if p == nil || len(p.Events) == 0 { + return nil + } + + for _, event := range p.Events { + if event.Type == uint8(txType) { + if event.Txs == nil { + return nil + } + return event.Txs + } + } + return nil +} diff --git a/go/common/types.go b/go/common/types.go index cfc126909b..dea6606040 100644 --- a/go/common/types.go +++ b/go/common/types.go @@ -2,8 +2,6 @@ package common import ( "fmt" - "github.com/ethereum/go-ethereum/crypto/kzg4844" - "github.com/ten-protocol/go-ten/go/common/l1" "math/big" "github.com/ethereum/go-ethereum/common" @@ -190,31 +188,3 @@ func (cf *ChainFork) String() string { func MaskedSender(address L2Address) L2Address { return common.BigToAddress(big.NewInt(0).Sub(address.Big(), big.NewInt(1))) } - -type L1TxType int - -const ( - RollupTx L1TxType = iota - SecretRequestTx - InitialiseSecretTx - CrossChainMessageTx - CrossChainValueTranserTx - SequencerAddedTx - SetImportantContractsTx -) - -// ProcessedL1Data is submitted to the enclave by the guardian -type ProcessedL1Data struct { - BlockHeader *types.Header - Events map[L1TxType][]*L1TxData -} - -// L1TxData represents an L1 transaction that's relevant to us -type L1TxData struct { - Type l1.L1Transaction - Transaction *types.Transaction - Receipt *types.Receipt - Blobs []*kzg4844.Blob // Only populated for blob transactions - CrossChainMessages *CrossChainMessages // Only populated for xchain messages - ValueTransfers *ValueTransferEvents // Only populated for xchain transfers -} diff --git a/go/enclave/components/rollup_consumer.go b/go/enclave/components/rollup_consumer.go index ea619849cd..2e2b1db47e 100644 --- a/go/enclave/components/rollup_consumer.go +++ b/go/enclave/components/rollup_consumer.go @@ -123,7 +123,7 @@ func (rc *rollupConsumerImpl) getSignedRollup(rollups []*common.ExtRollup) ([]*c // If a transaction is not a rollup or fails verification, it's skipped // The function only returns an error if there's a critical failure in rollup reconstruction func (rc *rollupConsumerImpl) extractAndVerifyRollups(processed *common.ProcessedL1Data) ([]*common.ExtRollup, error) { - rollupTxs := processed.Events[common.RollupTx] + rollupTxs := processed.GetEvents(common.RollupTx) rollups := make([]*common.ExtRollup, 0, len(rollupTxs)) blobs, blobHashes, err := rc.extractBlobsAndHashes(rollupTxs) diff --git a/go/enclave/components/shared_secret_process.go b/go/enclave/components/shared_secret_process.go index 2fd520de3e..0b46636554 100644 --- a/go/enclave/components/shared_secret_process.go +++ b/go/enclave/components/shared_secret_process.go @@ -39,7 +39,7 @@ func (ssp *SharedSecretProcessor) ProcessNetworkSecretMsgs(ctx context.Context, block := processed.BlockHeader // process secret requests - for _, txData := range processed.Events[common.SecretRequestTx] { + for _, txData := range processed.GetEvents(common.SecretRequestTx) { scrtReqTx, ok := txData.Type.(*ethadapter.L1RequestSecretTx) if !ok { continue @@ -58,7 +58,7 @@ func (ssp *SharedSecretProcessor) ProcessNetworkSecretMsgs(ctx context.Context, } // process initialize secret events - for _, txData := range processed.Events[common.InitialiseSecretTx] { + for _, txData := range processed.GetEvents(common.InitialiseSecretTx) { initSecretTx, ok := txData.Type.(*ethadapter.L1InitializeSecretTx) if !ok { continue diff --git a/go/enclave/crosschain/block_message_extractor.go b/go/enclave/crosschain/block_message_extractor.go index efea5450f7..b3b35238a7 100644 --- a/go/enclave/crosschain/block_message_extractor.go +++ b/go/enclave/crosschain/block_message_extractor.go @@ -44,7 +44,7 @@ func (m *blockMessageExtractor) StoreCrossChainValueTransfers(ctx context.Contex // collect all value transfer events from processed data var transfers common.ValueTransferEvents - for _, txData := range processedData.Events[common.CrossChainValueTranserTx] { + for _, txData := range processedData.GetEvents(common.CrossChainValueTranserTx) { if txData.ValueTransfers != nil { transfers = append(transfers, *txData.ValueTransfers...) } @@ -70,7 +70,7 @@ func (m *blockMessageExtractor) StoreCrossChainMessages(ctx context.Context, blo // collect all messages from the events var xchain common.CrossChainMessages var receipts types.Receipts - for _, txData := range processedData.Events[common.CrossChainMessageTx] { + for _, txData := range processedData.GetEvents(common.CrossChainMessageTx) { if txData.CrossChainMessages != nil { xchain = append(xchain, *txData.CrossChainMessages...) receipts = append(receipts, txData.Receipt) diff --git a/go/enclave/enclave_admin_service.go b/go/enclave/enclave_admin_service.go index 6fe99cd4eb..01cc7a8da1 100644 --- a/go/enclave/enclave_admin_service.go +++ b/go/enclave/enclave_admin_service.go @@ -4,13 +4,14 @@ import ( "context" "errors" "fmt" - "github.com/ethereum/go-ethereum/params" - "github.com/ten-protocol/go-ten/go/enclave/txpool" - "github.com/ten-protocol/go-ten/go/ethadapter/mgmtcontractlib" "math/big" "sync" "time" + "github.com/ethereum/go-ethereum/params" + "github.com/ten-protocol/go-ten/go/enclave/txpool" + "github.com/ten-protocol/go-ten/go/ethadapter/mgmtcontractlib" + gethcommon "github.com/ethereum/go-ethereum/common" enclaveconfig "github.com/ten-protocol/go-ten/go/enclave/config" diff --git a/go/ethadapter/erc20contractlib/erc20_contract_lib.go b/go/ethadapter/erc20contractlib/erc20_contract_lib.go index 351eb00587..e4a8ce7ef2 100644 --- a/go/ethadapter/erc20contractlib/erc20_contract_lib.go +++ b/go/ethadapter/erc20contractlib/erc20_contract_lib.go @@ -1,10 +1,11 @@ package erc20contractlib import ( - "github.com/ten-protocol/go-ten/go/common" "math/big" "strings" + "github.com/ten-protocol/go-ten/go/common" + "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/core/types" "github.com/ten-protocol/go-ten/go/ethadapter" diff --git a/go/ethadapter/l1_transaction.go b/go/ethadapter/l1_transaction.go index 1b57405cdf..79636bbb6b 100644 --- a/go/ethadapter/l1_transaction.go +++ b/go/ethadapter/l1_transaction.go @@ -11,10 +11,6 @@ import ( "github.com/ethereum/go-ethereum/crypto" ) -//// L1Transaction is an abstraction that transforms an Ethereum transaction into a format that can be consumed more -//// easily by TEN. -//type L1Transaction interface{} - type L1RollupTx struct { Rollup common.EncodedRollup } @@ -76,32 +72,3 @@ type L1InitializeSecretTx struct { InitialSecret []byte Attestation common.EncodedAttestationReport } - -// -//type L1TxType int -// -//const ( -// RollupTx L1TxType = iota -// SecretRequestTx -// InitialiseSecretTx -// CrossChainMessageTx -// CrossChainValueTranserTx -// SequencerAddedTx -// SetImportantContractsTx -//) -// -//// ProcessedL1Data is submitted to the enclave by the guardian -//type ProcessedL1Data struct { -// BlockHeader *types.Header -// Events map[L1TxType][]*L1TxData -//} -// -//// L1TxData represents an L1 transaction that's relevant to us -//type L1TxData struct { -// Type *L1Transaction -// Transaction *types.Transaction -// Receipt *types.Receipt -// Blobs []*kzg4844.Blob // Only populated for blob transactions -// CrossChainMessages *common.CrossChainMessages // Only populated for xchain messages -// ValueTransfers *common.ValueTransferEvents // Only populated for xchain transfers -//} diff --git a/go/host/container/host_container.go b/go/host/container/host_container.go index b704544d89..a7cefac49a 100644 --- a/go/host/container/host_container.go +++ b/go/host/container/host_container.go @@ -2,10 +2,11 @@ package container import ( "fmt" - gethcommon "github.com/ethereum/go-ethereum/common" "net/http" "time" + gethcommon "github.com/ethereum/go-ethereum/common" + "github.com/ten-protocol/go-ten/lib/gethfork/node" "github.com/ten-protocol/go-ten/go/host/l1" diff --git a/go/host/enclave/guardian.go b/go/host/enclave/guardian.go index 0e05d3d5f7..e3b84dae9a 100644 --- a/go/host/enclave/guardian.go +++ b/go/host/enclave/guardian.go @@ -427,7 +427,7 @@ func (g *Guardian) submitL1Block(block *common.L1Block, isLatest bool) (bool, er processedData, err := g.sl.L1Repo().ExtractTenTransactions(block) if err != nil { g.submitDataLock.Unlock() // lock must be released before returning - return false, fmt.Errorf("could not fetch obscuro receipts for block=%s - %w", block.Hash(), err) + return false, fmt.Errorf("could not extract ten transactions for block=%s - %w", block.Hash(), err) } rollupTxs, contractAddressTxs := g.getRollupsAndContractAddrTxs(*processedData) @@ -759,30 +759,26 @@ func (g *Guardian) getRollupsAndContractAddrTxs(data common.ProcessedL1Data) ([] rollupTxs := make([]*ethadapter.L1RollupTx, 0) contractAddressTxs := make([]*ethadapter.L1SetImportantContractsTx, 0) - for !g.hostInterrupter.IsStopping() { - // Get rollup transactions - for _, event := range data.Events[common.RollupTx] { - encodedRlp, err := ethadapter.DecodeBlobs(event.Blobs) - if err != nil { - g.logger.Crit("could not decode blobs.", log.ErrKey, err) - continue - } - - rlp := ðadapter.L1RollupTx{ - Rollup: encodedRlp, - } - rollupTxs = append(rollupTxs, rlp) + for _, event := range data.GetEvents(common.RollupTx) { + encodedRlp, err := ethadapter.DecodeBlobs(event.Blobs) + if err != nil { + g.logger.Crit("could not decode blobs.", log.ErrKey, err) + continue } - // Get contract address transactions - for _, event := range data.Events[common.SetImportantContractsTx] { - if contractTx, ok := event.Type.(*ethadapter.L1SetImportantContractsTx); ok { - contractAddressTxs = append(contractAddressTxs, contractTx) - } else { - g.logger.Warn("Unexpected type for SetImportantContractsTx event", "type", fmt.Sprintf("%T", event.Type)) - } + rlp := ðadapter.L1RollupTx{ + Rollup: encodedRlp, } + rollupTxs = append(rollupTxs, rlp) + } + // Get contract address transactions + for _, event := range data.GetEvents(common.SetImportantContractsTx) { + if contractTx, ok := event.Type.(*ethadapter.L1SetImportantContractsTx); ok { + contractAddressTxs = append(contractAddressTxs, contractTx) + } else { + g.logger.Warn("Unexpected type for SetImportantContractsTx event", "type", fmt.Sprintf("%T", event.Type)) + } } return rollupTxs, contractAddressTxs } diff --git a/go/host/l1/blockrepository.go b/go/host/l1/blockrepository.go index d253b5414c..85a8238899 100644 --- a/go/host/l1/blockrepository.go +++ b/go/host/l1/blockrepository.go @@ -198,7 +198,7 @@ func (r *Repository) FetchObscuroReceipts(block *common.L1Block) (types.Receipts func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.ProcessedL1Data, error) { processed := &common.ProcessedL1Data{ BlockHeader: block.Header(), - Events: make(map[common.L1TxType][]*common.L1TxData), + Events: []common.L1Event{}, } txsWithReceipts, err := r.getRelevantTxReceiptsAndBlobs(block) if err != nil { @@ -206,6 +206,11 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc } for _, txWithReceipt := range txsWithReceipts { + // Skip if the entire txWithReceipt is nil + if txWithReceipt == nil { + println("TX IS NIL WHY") + continue + } messages, err := r.getCrossChainMessages(txWithReceipt.Receipt) if err != nil { r.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) @@ -230,19 +235,19 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc } if len(*txData.CrossChainMessages) > 0 { - processed.Events[common.CrossChainMessageTx] = append(processed.Events[common.CrossChainMessageTx], txData) + processed.AddEvent(common.CrossChainMessageTx, txData) } if len(*txData.ValueTransfers) > 0 { - processed.Events[common.CrossChainValueTranserTx] = append(processed.Events[common.CrossChainValueTranserTx], txData) + processed.AddEvent(common.CrossChainValueTranserTx, txData) } if len(txData.Blobs) > 0 { - processed.Events[common.RollupTx] = append(processed.Events[common.RollupTx], txData) + processed.AddEvent(common.RollupTx, txData) } if len(sequencerLogs) > 0 { - processed.Events[common.SequencerAddedTx] = append(processed.Events[common.SequencerAddedTx], txData) + processed.AddEvent(common.SequencerAddedTx, txData) } decodedTx := r.mgmtContractLib.DecodeTx(txWithReceipt.Tx) @@ -253,11 +258,11 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc switch decodedTx.(type) { case *ethadapter.L1RequestSecretTx: - processed.Events[common.SecretRequestTx] = append(processed.Events[common.SecretRequestTx], txData) + processed.AddEvent(common.SecretRequestTx, txData) case *ethadapter.L1InitializeSecretTx: - processed.Events[common.InitialiseSecretTx] = append(processed.Events[common.InitialiseSecretTx], txData) + processed.AddEvent(common.InitialiseSecretTx, txData) case *ethadapter.L1SetImportantContractsTx: - processed.Events[common.SetImportantContractsTx] = append(processed.Events[common.SetImportantContractsTx], txData) + processed.AddEvent(common.SetImportantContractsTx, txData) } } @@ -332,7 +337,8 @@ func (r *Repository) isObscuroTransaction(transaction *types.Transaction) bool { } func (r *Repository) getRelevantTxReceiptsAndBlobs(block *common.L1Block) ([]*common.TxAndReceiptAndBlobs, error) { - txsWithReceipts := make([]*common.TxAndReceiptAndBlobs, len(block.Transactions())) + // Create a slice that will only contain valid transactions + var txsWithReceipts []*common.TxAndReceiptAndBlobs receipts, err := r.FetchObscuroReceipts(block) if err != nil { @@ -364,7 +370,8 @@ func (r *Repository) getRelevantTxReceiptsAndBlobs(block *common.L1Block) ([]*co txWithReceipt.Blobs = blobs } - txsWithReceipts[i] = txWithReceipt + // Append only valid transactions + txsWithReceipts = append(txsWithReceipts, txWithReceipt) } return txsWithReceipts, nil diff --git a/go/host/rpc/enclaverpc/enclave_client.go b/go/host/rpc/enclaverpc/enclave_client.go index e251278464..4fe706fa27 100644 --- a/go/host/rpc/enclaverpc/enclave_client.go +++ b/go/host/rpc/enclaverpc/enclave_client.go @@ -206,7 +206,7 @@ func (c *Client) SubmitL1Block(ctx context.Context, blockHeader *types.Header, p serializedProcessedData, err := rlp.EncodeToBytes(processedData) if err != nil { - return nil, fmt.Errorf("could not encode receipts. Cause: %w", err) + return nil, fmt.Errorf("could not encode processed data. Cause: %w", err) } response, err := c.protoClient.SubmitL1Block(ctx, &generated.SubmitBlockRequest{EncodedBlock: buffer.Bytes(), EncodedProcessedData: serializedProcessedData}) diff --git a/integration/ethereummock/erc20_contract_lib.go b/integration/ethereummock/erc20_contract_lib.go index 1ab0023834..428fcddd50 100644 --- a/integration/ethereummock/erc20_contract_lib.go +++ b/integration/ethereummock/erc20_contract_lib.go @@ -2,6 +2,7 @@ package ethereummock import ( "bytes" + "github.com/ethereum/go-ethereum/core/types" "github.com/ten-protocol/go-ten/go/common" "github.com/ten-protocol/go-ten/go/ethadapter" diff --git a/integration/ethereummock/mgmt_contract_lib.go b/integration/ethereummock/mgmt_contract_lib.go index e2d2f0904d..5c89827dd0 100644 --- a/integration/ethereummock/mgmt_contract_lib.go +++ b/integration/ethereummock/mgmt_contract_lib.go @@ -4,6 +4,7 @@ import ( "bytes" "encoding/gob" "fmt" + "github.com/ten-protocol/go-ten/go/common" "github.com/ten-protocol/go-ten/go/host/l1" From 9572ca91e4a6b1e40b20fca7f49207803a339993 Mon Sep 17 00:00:00 2001 From: Will Hester Date: Mon, 2 Dec 2024 13:50:22 +0000 Subject: [PATCH 08/21] stash --- go/common/l1_transaction.go | 3 +- go/enclave/components/rollup_consumer.go | 3 ++ go/ethadapter/geth_rpc_client.go | 7 +++ go/ethadapter/interface.go | 1 + go/host/l1/blockrepository.go | 69 ++++++++++++++++-------- integration/ethereummock/node.go | 4 ++ 6 files changed, 62 insertions(+), 25 deletions(-) diff --git a/go/common/l1_transaction.go b/go/common/l1_transaction.go index 88999e4cfc..2bd3b67e07 100644 --- a/go/common/l1_transaction.go +++ b/go/common/l1_transaction.go @@ -24,7 +24,7 @@ const ( // L1Event represents a single event type and its associated transactions type L1Event struct { - Type uint8 // Change to uint8 for RLP serialization + Type uint8 Txs []*L1TxData } @@ -44,7 +44,6 @@ type L1TxData struct { ValueTransfers *ValueTransferEvents // Only populated for xchain transfers } -// helper methods as we can't serialize a map func (p *ProcessedL1Data) AddEvent(txType L1TxType, tx *L1TxData) { for i := range p.Events { if p.Events[i].Type == uint8(txType) { diff --git a/go/enclave/components/rollup_consumer.go b/go/enclave/components/rollup_consumer.go index 2e2b1db47e..7887a87d11 100644 --- a/go/enclave/components/rollup_consumer.go +++ b/go/enclave/components/rollup_consumer.go @@ -126,6 +126,9 @@ func (rc *rollupConsumerImpl) extractAndVerifyRollups(processed *common.Processe rollupTxs := processed.GetEvents(common.RollupTx) rollups := make([]*common.ExtRollup, 0, len(rollupTxs)) + if len(rollupTxs) > 0 { + println("BLOBS PRESENT") + } blobs, blobHashes, err := rc.extractBlobsAndHashes(rollupTxs) if err != nil { return nil, err diff --git a/go/ethadapter/geth_rpc_client.go b/go/ethadapter/geth_rpc_client.go index a9290cad6e..298b8af7e2 100644 --- a/go/ethadapter/geth_rpc_client.go +++ b/go/ethadapter/geth_rpc_client.go @@ -151,6 +151,13 @@ func (e *gethRPCClient) TransactionReceipt(hash gethcommon.Hash) (*types.Receipt return e.client.TransactionReceipt(ctx, hash) } +func (e *gethRPCClient) TransactionByHash(hash gethcommon.Hash) (*types.Transaction, bool, error) { + ctx, cancel := context.WithTimeout(context.Background(), e.timeout) + defer cancel() + + return e.client.TransactionByHash(ctx, hash) +} + func (e *gethRPCClient) Nonce(account gethcommon.Address) (uint64, error) { ctx, cancel := context.WithTimeout(context.Background(), e.timeout) defer cancel() diff --git a/go/ethadapter/interface.go b/go/ethadapter/interface.go index 1245da18d4..59e4daa770 100644 --- a/go/ethadapter/interface.go +++ b/go/ethadapter/interface.go @@ -21,6 +21,7 @@ type EthClient interface { BlockByNumber(n *big.Int) (*types.Block, error) // retrieves a block given a number - returns head block if n is nil SendTransaction(signedTx *types.Transaction) error // issues an ethereum transaction (expects signed tx) TransactionReceipt(hash gethcommon.Hash) (*types.Receipt, error) // fetches the ethereum transaction receipt + TransactionByHash(hash gethcommon.Hash) (*types.Transaction, bool, error) // fetches the ethereum tx Nonce(address gethcommon.Address) (uint64, error) // fetches the account nonce to use in the next transaction BalanceAt(account gethcommon.Address, blockNumber *big.Int) (*big.Int, error) // fetches the balance of the account GetLogs(q ethereum.FilterQuery) ([]types.Log, error) // fetches the logs for a given query diff --git a/go/host/l1/blockrepository.go b/go/host/l1/blockrepository.go index 85a8238899..7c444537ba 100644 --- a/go/host/l1/blockrepository.go +++ b/go/host/l1/blockrepository.go @@ -200,40 +200,63 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc BlockHeader: block.Header(), Events: []common.L1Event{}, } - txsWithReceipts, err := r.getRelevantTxReceiptsAndBlobs(block) + + blkHash := block.Hash() + var allAddresses []gethcommon.Address + allAddresses = append(allAddresses, r.contractAddresses[MgmtContract]...) + allAddresses = append(allAddresses, r.contractAddresses[MsgBus]...) + + // Query for logs emitted by relevant contracts in the block + logs, err := r.ethClient.GetLogs(ethereum.FilterQuery{BlockHash: &blkHash, Addresses: allAddresses}) if err != nil { - return nil, err + return nil, fmt.Errorf("unable to fetch logs for L1 block - %w", err) } - for _, txWithReceipt := range txsWithReceipts { - // Skip if the entire txWithReceipt is nil - if txWithReceipt == nil { - println("TX IS NIL WHY") + for _, log := range logs { + + // Fetch the transaction and receipt for each log + tx, _, err := r.ethClient.TransactionByHash(log.TxHash) + if err != nil { + r.logger.Error("Error fetching transaction by hash", log.TxHash, err) continue } - messages, err := r.getCrossChainMessages(txWithReceipt.Receipt) + + receipt, err := r.ethClient.TransactionReceipt(log.TxHash) if err != nil { - r.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) + r.logger.Error("Error fetching transaction receipt with tx hash", log.TxHash, err) + continue + } + + txData := &common.L1TxData{ + Transaction: tx, + Receipt: receipt, + // Initialize with empty slices instead of nil pointers + CrossChainMessages: &common.CrossChainMessages{}, + ValueTransfers: &common.ValueTransferEvents{}, } - transfers, err := r.getValueTransferEvents(txWithReceipt.Receipt) + // Process the transaction based on the log + messages, err := r.getCrossChainMessages(receipt) if err != nil { - r.logger.Error("Error encountered converting the extracted logs to value transfers", log.ErrKey, err) + r.logger.Error("Error encountered converting logs to messages", err) + } else { + txData.CrossChainMessages = &messages } - sequencerLogs, err := r.getSequencerEventLogs(txWithReceipt.Receipt) + transfers, err := r.getValueTransferEvents(receipt) if err != nil { - r.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) + r.logger.Error("Error encountered converting logs to transfers", err) + } else { + txData.ValueTransfers = &transfers } - txData := &common.L1TxData{ - Transaction: txWithReceipt.Tx, - Receipt: txWithReceipt.Receipt, - Blobs: txWithReceipt.Blobs, - CrossChainMessages: &messages, - ValueTransfers: &transfers, + sequencerLogs, err := r.getSequencerEventLogs(receipt) + if err != nil { + r.logger.Error("Error encountered converting logs to sequencer events", err) + sequencerLogs = []types.Log{} // Initialize to empty slice on error } + // Add events only if we have valid data if len(*txData.CrossChainMessages) > 0 { processed.AddEvent(common.CrossChainMessageTx, txData) } @@ -242,15 +265,11 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc processed.AddEvent(common.CrossChainValueTranserTx, txData) } - if len(txData.Blobs) > 0 { - processed.AddEvent(common.RollupTx, txData) - } - if len(sequencerLogs) > 0 { processed.AddEvent(common.SequencerAddedTx, txData) } - decodedTx := r.mgmtContractLib.DecodeTx(txWithReceipt.Tx) + decodedTx := r.mgmtContractLib.DecodeTx(tx) if decodedTx == nil { continue } @@ -263,6 +282,10 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc processed.AddEvent(common.InitialiseSecretTx, txData) case *ethadapter.L1SetImportantContractsTx: processed.AddEvent(common.SetImportantContractsTx, txData) + //case *ethadapter.L1RollupTx: + // println("ROLLUP ADDED") + // processed.AddEvent(common.RollupTx, txData) + } } diff --git a/integration/ethereummock/node.go b/integration/ethereummock/node.go index e01b412b30..bb604b3a44 100644 --- a/integration/ethereummock/node.go +++ b/integration/ethereummock/node.go @@ -145,6 +145,10 @@ func (m *Node) TransactionReceipt(_ gethcommon.Hash) (*types.Receipt, error) { }, nil } +func (m *Node) TransactionByHash(_ gethcommon.Hash) (*types.Transaction, bool, error) { + panic("not yet implemented") +} + func (m *Node) Nonce(gethcommon.Address) (uint64, error) { return 0, nil } From 32acfb787a283a65d1eb80b623a28a6e3c2d08c6 Mon Sep 17 00:00:00 2001 From: Will Hester Date: Mon, 2 Dec 2024 20:39:51 +0000 Subject: [PATCH 09/21] initial --- go/common/host/services.go | 5 +- go/common/l1/l1_transaction.go | 5 - go/common/l1_transaction.go | 149 +++++++++++++++++- go/enclave/components/block_processor.go | 4 + go/enclave/components/rollup_consumer.go | 4 +- .../components/shared_secret_process.go | 9 +- .../erc20contractlib/erc20_contract_lib.go | 10 +- go/ethadapter/l1_transaction.go | 74 --------- .../mgmtcontractlib/mgmt_contract_lib.go | 34 ++-- go/host/enclave/guardian.go | 16 +- go/host/l1/blockrepository.go | 27 ++-- go/host/l1/publisher.go | 26 +-- .../ethereummock/erc20_contract_lib.go | 5 +- integration/ethereummock/mgmt_contract_lib.go | 20 +-- integration/ethereummock/mock_l1_network.go | 6 +- integration/ethereummock/node.go | 2 +- integration/simulation/output_stats.go | 4 +- integration/simulation/simulation.go | 5 +- integration/simulation/validate_chain.go | 6 +- 19 files changed, 244 insertions(+), 167 deletions(-) delete mode 100644 go/common/l1/l1_transaction.go delete mode 100644 go/ethadapter/l1_transaction.go diff --git a/go/common/host/services.go b/go/common/host/services.go index 40f89b4344..49eea62d82 100644 --- a/go/common/host/services.go +++ b/go/common/host/services.go @@ -2,7 +2,6 @@ package host import ( "context" - "github.com/ten-protocol/go-ten/go/ethadapter" "math/big" "github.com/ten-protocol/go-ten/go/responses" @@ -104,9 +103,9 @@ type L1Publisher interface { // RequestSecret will send a management contract transaction to request a secret from the enclave, returning the L1 head at time of sending RequestSecret(report *common.AttestationReport) (gethcommon.Hash, error) // ExtractRelevantTenTransactions will return all TEN relevant tx from an L1 block - ExtractRelevantTenTransactions(block *types.Block, receipts types.Receipts) ([]*common.TxAndReceiptAndBlobs, []*ethadapter.L1RollupTx, []*ethadapter.L1SetImportantContractsTx) + ExtractRelevantTenTransactions(block *types.Block, receipts types.Receipts) ([]*common.TxAndReceiptAndBlobs, []*common.L1RollupTx, []*common.L1SetImportantContractsTx) // FindSecretResponseTx will return the secret response tx from an L1 block - FindSecretResponseTx(block *types.Block) []*ethadapter.L1RespondSecretTx + FindSecretResponseTx(block *types.Block) []*common.L1RespondSecretTx // PublishRollup will create and publish a rollup tx to the management contract - fire and forget we don't wait for receipt // todo (#1624) - With a single sequencer, it is problematic if rollup publication fails; handle this case better PublishRollup(producedRollup *common.ExtRollup) diff --git a/go/common/l1/l1_transaction.go b/go/common/l1/l1_transaction.go deleted file mode 100644 index 73d993476b..0000000000 --- a/go/common/l1/l1_transaction.go +++ /dev/null @@ -1,5 +0,0 @@ -package l1 - -// L1Transaction is an abstraction that transforms an Ethereum transaction into a format that can be consumed more -// easily by TEN. -type L1Transaction interface{} diff --git a/go/common/l1_transaction.go b/go/common/l1_transaction.go index 2bd3b67e07..dd33ad4a57 100644 --- a/go/common/l1_transaction.go +++ b/go/common/l1_transaction.go @@ -1,14 +1,82 @@ package common import ( + "crypto/ecdsa" + "fmt" + gethcommon "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" + "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/crypto/kzg4844" + "github.com/ethereum/go-ethereum/rlp" + "math/big" ) // TenTransaction is an abstraction that transforms an Ethereum transaction into a format that can be consumed more // easily by TEN. type TenTransaction interface{} +type L1RollupTx struct { + Rollup EncodedRollup +} + +type L1RollupHashes struct { + BlobHashes []gethcommon.Hash +} + +type L1DepositTx struct { + Amount *big.Int // Amount to be deposited + To *gethcommon.Address // Address the ERC20 Transfer was made to (always be the Management Contract Addr) + Sender *gethcommon.Address // Address that issued the ERC20, the token holder or tx.origin + TokenContract *gethcommon.Address // Address of the ERC20 Contract address that was executed +} + +type L1RespondSecretTx struct { + Secret []byte + RequesterID gethcommon.Address + AttesterID gethcommon.Address + AttesterSig []byte +} + +type L1SetImportantContractsTx struct { + Key string + NewAddress gethcommon.Address +} + +type L1RequestSecretTx struct { + Attestation EncodedAttestationReport +} + +type L1InitializeSecretTx struct { + EnclaveID *gethcommon.Address + InitialSecret []byte + Attestation EncodedAttestationReport +} + +// Sign signs the payload with a given private key +func (l *L1RespondSecretTx) Sign(privateKey *ecdsa.PrivateKey) *L1RespondSecretTx { + var data []byte + data = append(data, l.AttesterID.Bytes()...) + data = append(data, l.RequesterID.Bytes()...) + data = append(data, string(l.Secret)...) + + ethereumMessageHash := func(data []byte) []byte { + prefix := fmt.Sprintf("\x19Ethereum Signed Message:\n%d", len(data)) + return crypto.Keccak256([]byte(prefix), data) + } + + hashedData := ethereumMessageHash(data) + // sign the hash + signedHash, err := crypto.Sign(hashedData, privateKey) + if err != nil { + return nil + } + + // set recovery id to 27; prevent malleable signatures + signedHash[64] += 27 + l.AttesterSig = signedHash + return l +} + // L1TxType represents different types of L1 transactions type L1TxType uint8 // Change to uint8 for RLP serialization @@ -34,9 +102,15 @@ type ProcessedL1Data struct { Events []L1Event // Changed from map to slice of L1Event } +// TenTransactionWrapper wraps a TenTransaction with its concrete type +type TenTransactionWrapper struct { + TypeName string // The concrete type name + Data []byte // The encoded transaction data +} + // L1TxData represents an L1 transaction that's relevant to us type L1TxData struct { - Type TenTransaction + Type *TenTransactionWrapper Transaction *types.Transaction Receipt *types.Receipt Blobs []*kzg4844.Blob // Only populated for blob transactions @@ -72,3 +146,76 @@ func (p *ProcessedL1Data) GetEvents(txType L1TxType) []*L1TxData { } return nil } + +func WrapTenTransaction(tx TenTransaction) (*TenTransactionWrapper, error) { + if tx == nil { + return nil, nil + } + + data, err := rlp.EncodeToBytes(tx) + if err != nil { + return nil, err + } + + return &TenTransactionWrapper{ + TypeName: fmt.Sprintf("%T", tx), + Data: data, + }, nil +} + +func (w *TenTransactionWrapper) UnwrapTransaction() (TenTransaction, error) { + if w == nil { + return nil, nil + } + + var result TenTransaction + switch w.TypeName { + case "*L1InitializeSecretTx": + var tx L1InitializeSecretTx + if err := rlp.DecodeBytes(w.Data, &tx); err != nil { + return nil, err + } + result = &tx + case "*L1RequestSecretTx": + var tx L1RequestSecretTx + if err := rlp.DecodeBytes(w.Data, &tx); err != nil { + return nil, err + } + result = &tx + + case "*L1SetImportantContractsTx": + var tx L1SetImportantContractsTx + if err := rlp.DecodeBytes(w.Data, &tx); err != nil { + return nil, err + } + result = &tx + case "*L1RespondSecretTx": + var tx L1RespondSecretTx + if err := rlp.DecodeBytes(w.Data, &tx); err != nil { + return nil, err + } + result = &tx + case "*L1DepositTx": + var tx L1DepositTx + if err := rlp.DecodeBytes(w.Data, &tx); err != nil { + return nil, err + } + result = &tx + case "*L1RollupHashes": + var tx L1RollupHashes + if err := rlp.DecodeBytes(w.Data, &tx); err != nil { + return nil, err + } + result = &tx + case "*L1RollupTx": + var tx L1RollupTx + if err := rlp.DecodeBytes(w.Data, &tx); err != nil { + return nil, err + } + result = &tx + default: + return nil, fmt.Errorf("unknown transaction type: %s", w.TypeName) + } + + return result, nil +} diff --git a/go/enclave/components/block_processor.go b/go/enclave/components/block_processor.go index f8c1e0ee4e..9eef282f46 100644 --- a/go/enclave/components/block_processor.go +++ b/go/enclave/components/block_processor.go @@ -63,6 +63,10 @@ func (bp *l1BlockProcessor) Process(ctx context.Context, processed *common.Proce defer core.LogMethodDuration(bp.logger, measure.NewStopwatch(), "L1 block processed", log.BlockHashKey, processed.BlockHeader.Hash()) header := processed.BlockHeader ingestion, err := bp.tryAndInsertBlock(ctx, processed.BlockHeader) + + if len(processed.Events) > 0 { + println("EVENTS PRESENT") + } if err != nil { return nil, err } diff --git a/go/enclave/components/rollup_consumer.go b/go/enclave/components/rollup_consumer.go index 7887a87d11..0e3fe1135a 100644 --- a/go/enclave/components/rollup_consumer.go +++ b/go/enclave/components/rollup_consumer.go @@ -140,7 +140,7 @@ func (rc *rollupConsumerImpl) extractAndVerifyRollups(processed *common.Processe continue } - rollupHashes, ok := t.(*ethadapter.L1RollupHashes) + rollupHashes, ok := t.(*common.L1RollupHashes) if !ok { continue } @@ -166,7 +166,7 @@ func (rc *rollupConsumerImpl) extractAndVerifyRollups(processed *common.Processe // there may be many rollups in one block so the blobHashes array, so it is possible that the rollupHashes array is a // subset of the blobHashes array -func verifyBlobHashes(rollupHashes *ethadapter.L1RollupHashes, blobHashes []gethcommon.Hash) error { +func verifyBlobHashes(rollupHashes *common.L1RollupHashes, blobHashes []gethcommon.Hash) error { // more efficient lookup blobHashSet := make(map[gethcommon.Hash]struct{}, len(blobHashes)) for _, h := range blobHashes { diff --git a/go/enclave/components/shared_secret_process.go b/go/enclave/components/shared_secret_process.go index 0b46636554..7b22bf6fa3 100644 --- a/go/enclave/components/shared_secret_process.go +++ b/go/enclave/components/shared_secret_process.go @@ -11,7 +11,6 @@ import ( "github.com/ten-protocol/go-ten/go/common/log" "github.com/ten-protocol/go-ten/go/enclave/crypto" "github.com/ten-protocol/go-ten/go/enclave/storage" - "github.com/ten-protocol/go-ten/go/ethadapter" "github.com/ten-protocol/go-ten/go/ethadapter/mgmtcontractlib" ) @@ -40,7 +39,8 @@ func (ssp *SharedSecretProcessor) ProcessNetworkSecretMsgs(ctx context.Context, // process secret requests for _, txData := range processed.GetEvents(common.SecretRequestTx) { - scrtReqTx, ok := txData.Type.(*ethadapter.L1RequestSecretTx) + t := ssp.mgmtContractLib.DecodeTx(txData.Transaction) + scrtReqTx, ok := t.(*common.L1RequestSecretTx) if !ok { continue } @@ -59,7 +59,8 @@ func (ssp *SharedSecretProcessor) ProcessNetworkSecretMsgs(ctx context.Context, // process initialize secret events for _, txData := range processed.GetEvents(common.InitialiseSecretTx) { - initSecretTx, ok := txData.Type.(*ethadapter.L1InitializeSecretTx) + t := ssp.mgmtContractLib.DecodeTx(txData.Transaction) + initSecretTx, ok := t.(*common.L1InitializeSecretTx) if !ok { continue } @@ -78,7 +79,7 @@ func (ssp *SharedSecretProcessor) ProcessNetworkSecretMsgs(ctx context.Context, return responses } -func (ssp *SharedSecretProcessor) processSecretRequest(ctx context.Context, req *ethadapter.L1RequestSecretTx) (*common.ProducedSecretResponse, error) { +func (ssp *SharedSecretProcessor) processSecretRequest(ctx context.Context, req *common.L1RequestSecretTx) (*common.ProducedSecretResponse, error) { att, err := common.DecodeAttestation(req.Attestation) if err != nil { return nil, fmt.Errorf("failed to decode attestation - %w", err) diff --git a/go/ethadapter/erc20contractlib/erc20_contract_lib.go b/go/ethadapter/erc20contractlib/erc20_contract_lib.go index e4a8ce7ef2..2edd8a74ad 100644 --- a/go/ethadapter/erc20contractlib/erc20_contract_lib.go +++ b/go/ethadapter/erc20contractlib/erc20_contract_lib.go @@ -7,10 +7,8 @@ import ( "github.com/ten-protocol/go-ten/go/common" "github.com/ethereum/go-ethereum/accounts/abi" - "github.com/ethereum/go-ethereum/core/types" - "github.com/ten-protocol/go-ten/go/ethadapter" - gethcommon "github.com/ethereum/go-ethereum/common" + "github.com/ethereum/go-ethereum/core/types" ) const methodBytesLen = 4 @@ -22,7 +20,7 @@ type ERC20ContractLib interface { DecodeTx(tx *types.Transaction) common.TenTransaction // CreateDepositTx receives an common.L1Transaction and converts it to an eth transaction - CreateDepositTx(tx *ethadapter.L1DepositTx) types.TxData + CreateDepositTx(tx *common.L1DepositTx) types.TxData } // erc20ContractLibImpl takes a mgmtContractAddr and processes multiple erc20ContractAddrs @@ -46,7 +44,7 @@ func NewERC20ContractLib(mgmtContractAddr *gethcommon.Address, contractAddrs ... } } -func (c *erc20ContractLibImpl) CreateDepositTx(tx *ethadapter.L1DepositTx) types.TxData { +func (c *erc20ContractLibImpl) CreateDepositTx(tx *common.L1DepositTx) types.TxData { data, err := c.contractABI.Pack("transfer", &tx.To, tx.Amount) if err != nil { panic(err) @@ -94,7 +92,7 @@ func (c *erc20ContractLibImpl) DecodeTx(tx *types.Transaction) common.TenTransac panic(err) } - return ðadapter.L1DepositTx{ + return &common.L1DepositTx{ Amount: amount.(*big.Int), To: &toAddr, TokenContract: tx.To(), diff --git a/go/ethadapter/l1_transaction.go b/go/ethadapter/l1_transaction.go deleted file mode 100644 index 79636bbb6b..0000000000 --- a/go/ethadapter/l1_transaction.go +++ /dev/null @@ -1,74 +0,0 @@ -package ethadapter - -import ( - "crypto/ecdsa" - "fmt" - "math/big" - - "github.com/ten-protocol/go-ten/go/common" - - gethcommon "github.com/ethereum/go-ethereum/common" - "github.com/ethereum/go-ethereum/crypto" -) - -type L1RollupTx struct { - Rollup common.EncodedRollup -} - -type L1RollupHashes struct { - BlobHashes []gethcommon.Hash -} - -type L1DepositTx struct { - Amount *big.Int // Amount to be deposited - To *gethcommon.Address // Address the ERC20 Transfer was made to (always be the Management Contract Addr) - Sender *gethcommon.Address // Address that issued the ERC20, the token holder or tx.origin - TokenContract *gethcommon.Address // Address of the ERC20 Contract address that was executed -} - -type L1RespondSecretTx struct { - Secret []byte - RequesterID gethcommon.Address - AttesterID gethcommon.Address - AttesterSig []byte -} - -type L1SetImportantContractsTx struct { - Key string - NewAddress gethcommon.Address -} - -// Sign signs the payload with a given private key -func (l *L1RespondSecretTx) Sign(privateKey *ecdsa.PrivateKey) *L1RespondSecretTx { - var data []byte - data = append(data, l.AttesterID.Bytes()...) - data = append(data, l.RequesterID.Bytes()...) - data = append(data, string(l.Secret)...) - - ethereumMessageHash := func(data []byte) []byte { - prefix := fmt.Sprintf("\x19Ethereum Signed Message:\n%d", len(data)) - return crypto.Keccak256([]byte(prefix), data) - } - - hashedData := ethereumMessageHash(data) - // sign the hash - signedHash, err := crypto.Sign(hashedData, privateKey) - if err != nil { - return nil - } - - // set recovery id to 27; prevent malleable signatures - signedHash[64] += 27 - l.AttesterSig = signedHash - return l -} - -type L1RequestSecretTx struct { - Attestation common.EncodedAttestationReport -} - -type L1InitializeSecretTx struct { - EnclaveID *gethcommon.Address - InitialSecret []byte - Attestation common.EncodedAttestationReport -} diff --git a/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go b/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go index 911f52df5c..350a7864ba 100644 --- a/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go +++ b/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go @@ -25,10 +25,10 @@ const methodBytesLen = 4 // messages for call requests, and converting ethereum transactions into L1Transactions. type MgmtContractLib interface { IsMock() bool - CreateBlobRollup(t *ethadapter.L1RollupTx) (types.TxData, error) - CreateRequestSecret(tx *ethadapter.L1RequestSecretTx) types.TxData - CreateRespondSecret(tx *ethadapter.L1RespondSecretTx, verifyAttester bool) types.TxData - CreateInitializeSecret(tx *ethadapter.L1InitializeSecretTx) types.TxData + CreateBlobRollup(t *common.L1RollupTx) (types.TxData, error) + CreateRequestSecret(tx *common.L1RequestSecretTx) types.TxData + CreateRespondSecret(tx *common.L1RespondSecretTx, verifyAttester bool) types.TxData + CreateInitializeSecret(tx *common.L1InitializeSecretTx) types.TxData // DecodeTx receives a *types.Transaction and converts it to a common.L1Transaction DecodeTx(tx *types.Transaction) common.TenTransaction @@ -88,7 +88,7 @@ func (c *contractLibImpl) DecodeTx(tx *types.Transaction) common.TenTransaction switch method.Name { case AddRollupMethod: if tx.Type() == types.BlobTxType { - return ðadapter.L1RollupHashes{ + return &common.L1RollupHashes{ BlobHashes: tx.BlobHashes(), } } else { @@ -116,7 +116,7 @@ func (c *contractLibImpl) DecodeTx(tx *types.Transaction) common.TenTransaction } // CreateBlobRollup creates a BlobTx, encoding the rollup data into blobs. -func (c *contractLibImpl) CreateBlobRollup(t *ethadapter.L1RollupTx) (types.TxData, error) { +func (c *contractLibImpl) CreateBlobRollup(t *common.L1RollupTx) (types.TxData, error) { decodedRollup, err := common.DecodeRollup(t.Rollup) if err != nil { panic(err) @@ -161,7 +161,7 @@ func (c *contractLibImpl) CreateBlobRollup(t *ethadapter.L1RollupTx) (types.TxDa }, nil } -func (c *contractLibImpl) CreateRequestSecret(tx *ethadapter.L1RequestSecretTx) types.TxData { +func (c *contractLibImpl) CreateRequestSecret(tx *common.L1RequestSecretTx) types.TxData { data, err := c.contractABI.Pack(RequestSecretMethod, base64EncodeToString(tx.Attestation)) if err != nil { panic(err) @@ -173,7 +173,7 @@ func (c *contractLibImpl) CreateRequestSecret(tx *ethadapter.L1RequestSecretTx) } } -func (c *contractLibImpl) CreateRespondSecret(tx *ethadapter.L1RespondSecretTx, verifyAttester bool) types.TxData { +func (c *contractLibImpl) CreateRespondSecret(tx *common.L1RespondSecretTx, verifyAttester bool) types.TxData { data, err := c.contractABI.Pack( RespondSecretMethod, tx.AttesterID, @@ -191,7 +191,7 @@ func (c *contractLibImpl) CreateRespondSecret(tx *ethadapter.L1RespondSecretTx, } } -func (c *contractLibImpl) CreateInitializeSecret(tx *ethadapter.L1InitializeSecretTx) types.TxData { +func (c *contractLibImpl) CreateInitializeSecret(tx *common.L1InitializeSecretTx) types.TxData { data, err := c.contractABI.Pack( InitializeSecretMethod, tx.EnclaveID, @@ -319,7 +319,7 @@ func (c *contractLibImpl) DecodeImportantAddressResponse(callResponse []byte) (g return address, nil } -func (c *contractLibImpl) unpackInitSecretTx(tx *types.Transaction, method *abi.Method, contractCallData map[string]interface{}) *ethadapter.L1InitializeSecretTx { +func (c *contractLibImpl) unpackInitSecretTx(tx *types.Transaction, method *abi.Method, contractCallData map[string]interface{}) *common.L1InitializeSecretTx { err := method.Inputs.UnpackIntoMap(contractCallData, tx.Data()[methodBytesLen:]) if err != nil { panic(err) @@ -335,12 +335,12 @@ func (c *contractLibImpl) unpackInitSecretTx(tx *types.Transaction, method *abi. } // todo (#1275) - add the other fields - return ðadapter.L1InitializeSecretTx{ + return &common.L1InitializeSecretTx{ Attestation: att, } } -func (c *contractLibImpl) unpackRequestSecretTx(tx *types.Transaction, method *abi.Method, contractCallData map[string]interface{}) *ethadapter.L1RequestSecretTx { +func (c *contractLibImpl) unpackRequestSecretTx(tx *types.Transaction, method *abi.Method, contractCallData map[string]interface{}) *common.L1RequestSecretTx { err := method.Inputs.UnpackIntoMap(contractCallData, tx.Data()[methodBytesLen:]) if err != nil { panic(err) @@ -354,12 +354,12 @@ func (c *contractLibImpl) unpackRequestSecretTx(tx *types.Transaction, method *a if err != nil { c.logger.Crit("could not decode attestation request.", log.ErrKey, err) } - return ðadapter.L1RequestSecretTx{ + return &common.L1RequestSecretTx{ Attestation: att, } } -func (c *contractLibImpl) unpackRespondSecretTx(tx *types.Transaction, method *abi.Method, contractCallData map[string]interface{}) *ethadapter.L1RespondSecretTx { +func (c *contractLibImpl) unpackRespondSecretTx(tx *types.Transaction, method *abi.Method, contractCallData map[string]interface{}) *common.L1RespondSecretTx { err := method.Inputs.UnpackIntoMap(contractCallData, tx.Data()[methodBytesLen:]) if err != nil { c.logger.Crit("could not unpack transaction.", log.ErrKey, err) @@ -392,14 +392,14 @@ func (c *contractLibImpl) unpackRespondSecretTx(tx *types.Transaction, method *a c.logger.Crit("could not decode responseSecret data") } - return ðadapter.L1RespondSecretTx{ + return &common.L1RespondSecretTx{ AttesterID: attesterAddr, RequesterID: requesterAddr, Secret: responseSecretBytes[:], } } -func (c *contractLibImpl) unpackSetImportantContractsTx(tx *types.Transaction, method *abi.Method, contractCallData map[string]interface{}) (*ethadapter.L1SetImportantContractsTx, error) { +func (c *contractLibImpl) unpackSetImportantContractsTx(tx *types.Transaction, method *abi.Method, contractCallData map[string]interface{}) (*common.L1SetImportantContractsTx, error) { err := method.Inputs.UnpackIntoMap(contractCallData, tx.Data()[methodBytesLen:]) if err != nil { return nil, fmt.Errorf("could not unpack transaction. Cause: %w", err) @@ -423,7 +423,7 @@ func (c *contractLibImpl) unpackSetImportantContractsTx(tx *types.Transaction, m return nil, fmt.Errorf("could not decode newAddress data") } - return ðadapter.L1SetImportantContractsTx{ + return &common.L1SetImportantContractsTx{ Key: keyString, NewAddress: contractAddress, }, nil diff --git a/go/host/enclave/guardian.go b/go/host/enclave/guardian.go index e3b84dae9a..5f921fe4b9 100644 --- a/go/host/enclave/guardian.go +++ b/go/host/enclave/guardian.go @@ -465,7 +465,7 @@ func (g *Guardian) submitL1Block(block *common.L1Block, isLatest bool) (bool, er return true, nil } -func (g *Guardian) processL1BlockTransactions(block *common.L1Block, rollupTxs []*ethadapter.L1RollupTx, contractAddressTxs []*ethadapter.L1SetImportantContractsTx) { +func (g *Guardian) processL1BlockTransactions(block *common.L1Block, rollupTxs []*common.L1RollupTx, contractAddressTxs []*common.L1SetImportantContractsTx) { // TODO (@will) this should be removed and pulled from the L1 err := g.storage.AddBlock(block.Header()) if err != nil { @@ -755,9 +755,9 @@ func (g *Guardian) getLatestBatchNo() (uint64, error) { return fromBatch, nil } -func (g *Guardian) getRollupsAndContractAddrTxs(data common.ProcessedL1Data) ([]*ethadapter.L1RollupTx, []*ethadapter.L1SetImportantContractsTx) { - rollupTxs := make([]*ethadapter.L1RollupTx, 0) - contractAddressTxs := make([]*ethadapter.L1SetImportantContractsTx, 0) +func (g *Guardian) getRollupsAndContractAddrTxs(data common.ProcessedL1Data) ([]*common.L1RollupTx, []*common.L1SetImportantContractsTx) { + rollupTxs := make([]*common.L1RollupTx, 0) + contractAddressTxs := make([]*common.L1SetImportantContractsTx, 0) for _, event := range data.GetEvents(common.RollupTx) { encodedRlp, err := ethadapter.DecodeBlobs(event.Blobs) @@ -766,7 +766,7 @@ func (g *Guardian) getRollupsAndContractAddrTxs(data common.ProcessedL1Data) ([] continue } - rlp := ðadapter.L1RollupTx{ + rlp := &common.L1RollupTx{ Rollup: encodedRlp, } rollupTxs = append(rollupTxs, rlp) @@ -774,7 +774,11 @@ func (g *Guardian) getRollupsAndContractAddrTxs(data common.ProcessedL1Data) ([] // Get contract address transactions for _, event := range data.GetEvents(common.SetImportantContractsTx) { - if contractTx, ok := event.Type.(*ethadapter.L1SetImportantContractsTx); ok { + unwrappedTx, err := event.Type.UnwrapTransaction() + if err != nil { + g.logger.Error("Could not unwrap ten transaction", "type", err) + } + if contractTx, ok := unwrappedTx.(*common.L1SetImportantContractsTx); ok { contractAddressTxs = append(contractAddressTxs, contractTx) } else { g.logger.Warn("Unexpected type for SetImportantContractsTx event", "type", fmt.Sprintf("%T", event.Type)) diff --git a/go/host/l1/blockrepository.go b/go/host/l1/blockrepository.go index 7c444537ba..2f784ac92b 100644 --- a/go/host/l1/blockrepository.go +++ b/go/host/l1/blockrepository.go @@ -213,7 +213,7 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc } for _, log := range logs { - + println("LOG") // Fetch the transaction and receipt for each log tx, _, err := r.ethClient.TransactionByHash(log.TxHash) if err != nil { @@ -259,33 +259,40 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc // Add events only if we have valid data if len(*txData.CrossChainMessages) > 0 { processed.AddEvent(common.CrossChainMessageTx, txData) + println("CrossChainMessageTx ADDED") } if len(*txData.ValueTransfers) > 0 { processed.AddEvent(common.CrossChainValueTranserTx, txData) + println("CrossChainValueTranserTx ADDED") } if len(sequencerLogs) > 0 { processed.AddEvent(common.SequencerAddedTx, txData) + println("SequencerAddedTx ADDED") } decodedTx := r.mgmtContractLib.DecodeTx(tx) - if decodedTx == nil { + wrappedTx, err := common.WrapTenTransaction(decodedTx) + if err != nil { + r.logger.Error("Failed to wrap transaction", "error", err) continue } - txData.Type = decodedTx + txData.Type = wrappedTx switch decodedTx.(type) { - case *ethadapter.L1RequestSecretTx: + case *common.L1RequestSecretTx: + println("L1RequestSecretTx ADDED") processed.AddEvent(common.SecretRequestTx, txData) - case *ethadapter.L1InitializeSecretTx: + case *common.L1InitializeSecretTx: + println("InitialiseSecretTx ADDED") processed.AddEvent(common.InitialiseSecretTx, txData) - case *ethadapter.L1SetImportantContractsTx: + case *common.L1SetImportantContractsTx: + println("SetImportantContractsTx ADDED") processed.AddEvent(common.SetImportantContractsTx, txData) - //case *ethadapter.L1RollupTx: - // println("ROLLUP ADDED") - // processed.AddEvent(common.RollupTx, txData) - + case *common.L1RollupTx: + println("L1RollupTx ADDED") + processed.AddEvent(common.RollupTx, txData) } } diff --git a/go/host/l1/publisher.go b/go/host/l1/publisher.go index 9c84f795b2..adb80f0562 100644 --- a/go/host/l1/publisher.go +++ b/go/host/l1/publisher.go @@ -167,7 +167,7 @@ func (p *Publisher) InitializeSecret(attestation *common.AttestationReport, encS if err != nil { return errors.Wrap(err, "could not encode attestation") } - l1tx := ðadapter.L1InitializeSecretTx{ + l1tx := &common.L1InitializeSecretTx{ EnclaveID: &attestation.EnclaveID, Attestation: encodedAttestation, InitialSecret: encSecret, @@ -182,7 +182,7 @@ func (p *Publisher) RequestSecret(attestation *common.AttestationReport) (gethco if err != nil { return gethcommon.Hash{}, errors.Wrap(err, "could not encode attestation") } - l1tx := ðadapter.L1RequestSecretTx{ + l1tx := &common.L1RequestSecretTx{ Attestation: encodedAttestation, } // record the L1 head height before we submit the secret request, so we know which block to watch from @@ -208,7 +208,7 @@ func (p *Publisher) RequestSecret(attestation *common.AttestationReport) (gethco } func (p *Publisher) PublishSecretResponse(secretResponse *common.ProducedSecretResponse) error { - l1tx := ðadapter.L1RespondSecretTx{ + l1tx := &common.L1RespondSecretTx{ Secret: secretResponse.Secret, RequesterID: secretResponse.RequesterID, AttesterID: secretResponse.AttesterID, @@ -230,12 +230,12 @@ func (p *Publisher) PublishSecretResponse(secretResponse *common.ProducedSecretR // ExtractRelevantTenTransactions will extract any transactions from the block that are relevant to TEN // todo (#2495) we should monitor for relevant L1 events instead of scanning every transaction in the block -func (p *Publisher) ExtractRelevantTenTransactions(block *types.Block, receipts types.Receipts) ([]*common.TxAndReceiptAndBlobs, []*ethadapter.L1RollupTx, []*ethadapter.L1SetImportantContractsTx) { +func (p *Publisher) ExtractRelevantTenTransactions(block *types.Block, receipts types.Receipts) ([]*common.TxAndReceiptAndBlobs, []*common.L1RollupTx, []*common.L1SetImportantContractsTx) { // temporarily add this host stopping check to prevent sim test failures until a more robust solution is implemented for !p.hostStopper.IsStopping() { txWithReceiptsAndBlobs := make([]*common.TxAndReceiptAndBlobs, 0) - rollupTxs := make([]*ethadapter.L1RollupTx, 0) - contractAddressTxs := make([]*ethadapter.L1SetImportantContractsTx, 0) + rollupTxs := make([]*common.L1RollupTx, 0) + contractAddressTxs := make([]*common.L1SetImportantContractsTx, 0) txs := block.Transactions() for i, rec := range receipts { @@ -248,9 +248,9 @@ func (p *Publisher) ExtractRelevantTenTransactions(block *types.Block, receipts var err error switch typedTx := decodedTx.(type) { - case *ethadapter.L1SetImportantContractsTx: + case *common.L1SetImportantContractsTx: contractAddressTxs = append(contractAddressTxs, typedTx) - case *ethadapter.L1RollupHashes: + case *common.L1RollupHashes: blobs, err = p.blobResolver.FetchBlobs(p.sendingContext, block.Header(), typedTx.BlobHashes) if err != nil { if errors.Is(err, ethereum.NotFound) { @@ -267,7 +267,7 @@ func (p *Publisher) ExtractRelevantTenTransactions(block *types.Block, receipts continue } - rlp := ðadapter.L1RollupTx{ + rlp := &common.L1RollupTx{ Rollup: encodedRlp, } rollupTxs = append(rollupTxs, rlp) @@ -288,15 +288,15 @@ func (p *Publisher) ExtractRelevantTenTransactions(block *types.Block, receipts // FindSecretResponseTx will scan the block for any secret response transactions. This is separate from the above method // as we do not require the receipts for these transactions. -func (p *Publisher) FindSecretResponseTx(block *types.Block) []*ethadapter.L1RespondSecretTx { - secretRespTxs := make([]*ethadapter.L1RespondSecretTx, 0) +func (p *Publisher) FindSecretResponseTx(block *types.Block) []*common.L1RespondSecretTx { + secretRespTxs := make([]*common.L1RespondSecretTx, 0) for _, tx := range block.Transactions() { t := p.mgmtContractLib.DecodeTx(tx) if t == nil { continue } - if scrtTx, ok := t.(*ethadapter.L1RespondSecretTx); ok { + if scrtTx, ok := t.(*common.L1RespondSecretTx); ok { secretRespTxs = append(secretRespTxs, scrtTx) continue } @@ -313,7 +313,7 @@ func (p *Publisher) PublishRollup(producedRollup *common.ExtRollup) { if err != nil { p.logger.Crit("could not encode rollup.", log.ErrKey, err) } - tx := ðadapter.L1RollupTx{ + tx := &common.L1RollupTx{ Rollup: encRollup, } p.logger.Info("Publishing rollup", "size", len(encRollup)/1024, log.RollupHashKey, producedRollup.Hash()) diff --git a/integration/ethereummock/erc20_contract_lib.go b/integration/ethereummock/erc20_contract_lib.go index 428fcddd50..285619f08b 100644 --- a/integration/ethereummock/erc20_contract_lib.go +++ b/integration/ethereummock/erc20_contract_lib.go @@ -5,7 +5,6 @@ import ( "github.com/ethereum/go-ethereum/core/types" "github.com/ten-protocol/go-ten/go/common" - "github.com/ten-protocol/go-ten/go/ethadapter" "github.com/ten-protocol/go-ten/go/ethadapter/erc20contractlib" gethcommon "github.com/ethereum/go-ethereum/common" @@ -13,14 +12,14 @@ import ( type contractLib struct{} -func (c *contractLib) CreateDepositTx(tx *ethadapter.L1DepositTx) types.TxData { +func (c *contractLib) CreateDepositTx(tx *common.L1DepositTx) types.TxData { return encodeTx(tx, depositTxAddr) } // DecodeTx - return only deposit transactions to the management contract func (c *contractLib) DecodeTx(tx *types.Transaction) common.TenTransaction { if bytes.Equal(tx.To().Bytes(), depositTxAddr.Bytes()) { - depositTx, ok := decodeTx(tx).(*ethadapter.L1DepositTx) + depositTx, ok := decodeTx(tx).(*common.L1DepositTx) if !ok { return nil } diff --git a/integration/ethereummock/mgmt_contract_lib.go b/integration/ethereummock/mgmt_contract_lib.go index 5c89827dd0..f7ef63d733 100644 --- a/integration/ethereummock/mgmt_contract_lib.go +++ b/integration/ethereummock/mgmt_contract_lib.go @@ -66,14 +66,14 @@ func (m *mockContractLib) DecodeTx(tx *types.Transaction) common.TenTransaction } if tx.To().Hex() == rollupTxAddr.Hex() { - return ðadapter.L1RollupHashes{ + return &common.L1RollupHashes{ BlobHashes: tx.BlobHashes(), } } return decodeTx(tx) } -func (m *mockContractLib) CreateBlobRollup(t *ethadapter.L1RollupTx) (types.TxData, error) { +func (m *mockContractLib) CreateBlobRollup(t *common.L1RollupTx) (types.TxData, error) { var err error blobs, err := ethadapter.EncodeBlobs(t.Rollup) if err != nil { @@ -86,7 +86,7 @@ func (m *mockContractLib) CreateBlobRollup(t *ethadapter.L1RollupTx) (types.TxDa return nil, fmt.Errorf("failed to make sidecar: %w", err) } - hashesTx := ethadapter.L1RollupHashes{BlobHashes: blobHashes} + hashesTx := common.L1RollupHashes{BlobHashes: blobHashes} var buf bytes.Buffer enc := gob.NewEncoder(&buf) @@ -103,15 +103,15 @@ func (m *mockContractLib) CreateBlobRollup(t *ethadapter.L1RollupTx) (types.TxDa }, nil } -func (m *mockContractLib) CreateRequestSecret(tx *ethadapter.L1RequestSecretTx) types.TxData { +func (m *mockContractLib) CreateRequestSecret(tx *common.L1RequestSecretTx) types.TxData { return encodeTx(tx, requestSecretTxAddr) } -func (m *mockContractLib) CreateRespondSecret(tx *ethadapter.L1RespondSecretTx, _ bool) types.TxData { +func (m *mockContractLib) CreateRespondSecret(tx *common.L1RespondSecretTx, _ bool) types.TxData { return encodeTx(tx, storeSecretTxAddr) } -func (m *mockContractLib) CreateInitializeSecret(tx *ethadapter.L1InitializeSecretTx) types.TxData { +func (m *mockContractLib) CreateInitializeSecret(tx *common.L1InitializeSecretTx) types.TxData { return encodeTx(tx, initializeSecretTxAddr) } @@ -158,13 +158,13 @@ func decodeTx(tx *types.Transaction) common.TenTransaction { var t common.TenTransaction switch tx.To().Hex() { case storeSecretTxAddr.Hex(): - t = ðadapter.L1RespondSecretTx{} + t = &common.L1RespondSecretTx{} case depositTxAddr.Hex(): - t = ðadapter.L1DepositTx{} + t = &common.L1DepositTx{} case requestSecretTxAddr.Hex(): - t = ðadapter.L1RequestSecretTx{} + t = &common.L1RequestSecretTx{} case initializeSecretTxAddr.Hex(): - t = ðadapter.L1InitializeSecretTx{} + t = &common.L1InitializeSecretTx{} default: panic("unexpected type") } diff --git a/integration/ethereummock/mock_l1_network.go b/integration/ethereummock/mock_l1_network.go index 9829ea92f7..5c35d2fc14 100644 --- a/integration/ethereummock/mock_l1_network.go +++ b/integration/ethereummock/mock_l1_network.go @@ -15,8 +15,6 @@ import ( testcommon "github.com/ten-protocol/go-ten/integration/common" - "github.com/ten-protocol/go-ten/go/ethadapter" - "github.com/ten-protocol/go-ten/go/common" "github.com/ethereum/go-ethereum/core/types" @@ -92,14 +90,14 @@ func printBlock(b *types.Block, m *Node) string { } switch l1Tx := t.(type) { - case *ethadapter.L1RollupTx: + case *common.L1RollupTx: r, err := common.DecodeRollup(l1Tx.Rollup) if err != nil { testlog.Logger().Crit("failed to decode rollup") } txs = append(txs, fmt.Sprintf("r_%d(nonce=%d)", common.ShortHash(r.Hash()), tx.Nonce())) - case *ethadapter.L1DepositTx: + case *common.L1DepositTx: var to uint64 if l1Tx.To != nil { to = common.ShortAddress(*l1Tx.To) diff --git a/integration/ethereummock/node.go b/integration/ethereummock/node.go index bb604b3a44..a6bd8d9aca 100644 --- a/integration/ethereummock/node.go +++ b/integration/ethereummock/node.go @@ -160,7 +160,7 @@ func (m *Node) getRollupFromBlock(block *types.Block) *common.ExtRollup { continue } switch l1tx := decodedTx.(type) { - case *ethadapter.L1RollupHashes: + case *common.L1RollupHashes: ctx := context.TODO() blobs, _ := m.BlobResolver.FetchBlobs(ctx, block.Header(), l1tx.BlobHashes) r, err := ethadapter.ReconstructRollup(blobs) diff --git a/integration/simulation/output_stats.go b/integration/simulation/output_stats.go index 27f652cec2..441388f89e 100644 --- a/integration/simulation/output_stats.go +++ b/integration/simulation/output_stats.go @@ -97,7 +97,7 @@ func (o *OutputStats) incrementStats(block *types.Block, _ ethadapter.EthClient) } switch l1Tx := t.(type) { - case *ethadapter.L1RollupTx: + case *common.L1RollupTx: _, err := common.DecodeRollup(l1Tx.Rollup) if err != nil { testlog.Logger().Crit("could not decode rollup.", log.ErrKey, err) @@ -109,7 +109,7 @@ func (o *OutputStats) incrementStats(block *types.Block, _ ethadapter.EthClient) // } //} - case *ethadapter.L1DepositTx: + case *common.L1DepositTx: o.canonicalERC20DepositCount++ } } diff --git a/integration/simulation/simulation.go b/integration/simulation/simulation.go index bd1982aeaf..32f1cba0b4 100644 --- a/integration/simulation/simulation.go +++ b/integration/simulation/simulation.go @@ -21,7 +21,6 @@ import ( "github.com/ten-protocol/go-ten/go/common/errutil" "github.com/ten-protocol/go-ten/go/common/log" "github.com/ten-protocol/go-ten/go/common/retry" - "github.com/ten-protocol/go-ten/go/ethadapter" "github.com/ten-protocol/go-ten/go/wallet" "github.com/ten-protocol/go-ten/integration/common/testlog" "github.com/ten-protocol/go-ten/integration/erc20contract" @@ -139,7 +138,7 @@ func (s *Simulation) waitForTenGenesisOnL1() { if t == nil { continue } - if _, ok := t.(*ethadapter.L1RollupHashes); ok { + if _, ok := t.(*common.L1RollupHashes); ok { // exit at the first TEN rollup we see return } @@ -425,7 +424,7 @@ func (s *Simulation) prefundL1Accounts() { receiver := w.Address() tokenOwner := s.Params.Wallets.Tokens[testcommon.HOC].L1Owner ownerAddr := tokenOwner.Address() - txData := ðadapter.L1DepositTx{ + txData := &common.L1DepositTx{ Amount: initialBalance, To: &receiver, TokenContract: s.Params.Wallets.Tokens[testcommon.HOC].L1ContractAddress, diff --git a/integration/simulation/validate_chain.go b/integration/simulation/validate_chain.go index 1fded15ca0..8976972105 100644 --- a/integration/simulation/validate_chain.go +++ b/integration/simulation/validate_chain.go @@ -280,12 +280,12 @@ func ExtractDataFromEthereumChain( } switch l1tx := t.(type) { - case *ethadapter.L1DepositTx: + case *common.L1DepositTx: // todo (@stefan) - remove this hack once the old integrated bridge is removed. deposits = append(deposits, tx.Hash()) totalDeposited.Add(totalDeposited, l1tx.Amount) successfulDeposits++ - case *ethadapter.L1RollupHashes: + case *common.L1RollupHashes: r, err := getRollupFromBlobHashes(s.ctx, s.Params.BlobResolver, block, l1tx.BlobHashes) if err != nil { testlog.Logger().Crit("could not decode rollup. ", log.ErrKey, err) @@ -453,7 +453,7 @@ func checkBlockchainOfTenNode(t *testing.T, rpcHandles *network.RPCHandles, minT injectorDepositedAmt := big.NewInt(0) for _, tx := range s.TxInjector.TxTracker.GetL1Transactions() { - if depTx, ok := tx.(*ethadapter.L1DepositTx); ok { + if depTx, ok := tx.(*common.L1DepositTx); ok { injectorDepositedAmt.Add(injectorDepositedAmt, depTx.Amount) } } From c1b55e559645164fd203b7beecc85930ab1e805b Mon Sep 17 00:00:00 2001 From: Will Hester Date: Tue, 3 Dec 2024 10:23:29 +0000 Subject: [PATCH 10/21] fix rollup processing --- go/common/l1_transaction.go | 157 +++++++++++------------ go/enclave/components/rollup_consumer.go | 3 - go/host/enclave/guardian.go | 27 ++-- go/host/l1/blockrepository.go | 40 ++++-- 4 files changed, 121 insertions(+), 106 deletions(-) diff --git a/go/common/l1_transaction.go b/go/common/l1_transaction.go index dd33ad4a57..45245179ba 100644 --- a/go/common/l1_transaction.go +++ b/go/common/l1_transaction.go @@ -7,7 +7,6 @@ import ( "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/crypto/kzg4844" - "github.com/ethereum/go-ethereum/rlp" "math/big" ) @@ -102,15 +101,15 @@ type ProcessedL1Data struct { Events []L1Event // Changed from map to slice of L1Event } -// TenTransactionWrapper wraps a TenTransaction with its concrete type -type TenTransactionWrapper struct { - TypeName string // The concrete type name - Data []byte // The encoded transaction data -} +//// TenTransactionWrapper wraps a TenTransaction with its concrete type +//type TenTransactionWrapper struct { +// TypeName string // The concrete type name +// Data []byte // The encoded transaction data +//} // L1TxData represents an L1 transaction that's relevant to us type L1TxData struct { - Type *TenTransactionWrapper + //Type *TenTransactionWrapper Transaction *types.Transaction Receipt *types.Receipt Blobs []*kzg4844.Blob // Only populated for blob transactions @@ -147,75 +146,75 @@ func (p *ProcessedL1Data) GetEvents(txType L1TxType) []*L1TxData { return nil } -func WrapTenTransaction(tx TenTransaction) (*TenTransactionWrapper, error) { - if tx == nil { - return nil, nil - } - - data, err := rlp.EncodeToBytes(tx) - if err != nil { - return nil, err - } - - return &TenTransactionWrapper{ - TypeName: fmt.Sprintf("%T", tx), - Data: data, - }, nil -} - -func (w *TenTransactionWrapper) UnwrapTransaction() (TenTransaction, error) { - if w == nil { - return nil, nil - } - - var result TenTransaction - switch w.TypeName { - case "*L1InitializeSecretTx": - var tx L1InitializeSecretTx - if err := rlp.DecodeBytes(w.Data, &tx); err != nil { - return nil, err - } - result = &tx - case "*L1RequestSecretTx": - var tx L1RequestSecretTx - if err := rlp.DecodeBytes(w.Data, &tx); err != nil { - return nil, err - } - result = &tx - - case "*L1SetImportantContractsTx": - var tx L1SetImportantContractsTx - if err := rlp.DecodeBytes(w.Data, &tx); err != nil { - return nil, err - } - result = &tx - case "*L1RespondSecretTx": - var tx L1RespondSecretTx - if err := rlp.DecodeBytes(w.Data, &tx); err != nil { - return nil, err - } - result = &tx - case "*L1DepositTx": - var tx L1DepositTx - if err := rlp.DecodeBytes(w.Data, &tx); err != nil { - return nil, err - } - result = &tx - case "*L1RollupHashes": - var tx L1RollupHashes - if err := rlp.DecodeBytes(w.Data, &tx); err != nil { - return nil, err - } - result = &tx - case "*L1RollupTx": - var tx L1RollupTx - if err := rlp.DecodeBytes(w.Data, &tx); err != nil { - return nil, err - } - result = &tx - default: - return nil, fmt.Errorf("unknown transaction type: %s", w.TypeName) - } - - return result, nil -} +//func WrapTenTransaction(tx TenTransaction) (*TenTransactionWrapper, error) { +// if tx == nil { +// return nil, nil +// } +// +// data, err := rlp.EncodeToBytes(tx) +// if err != nil { +// return nil, err +// } +// +// return &TenTransactionWrapper{ +// TypeName: fmt.Sprintf("%T", tx), +// Data: data, +// }, nil +//} +// +//func (w *TenTransactionWrapper) UnwrapTransaction() (TenTransaction, error) { +// if w == nil { +// return nil, nil +// } +// +// var result TenTransaction +// switch w.TypeName { +// case "*L1InitializeSecretTx": +// var tx L1InitializeSecretTx +// if err := rlp.DecodeBytes(w.Data, &tx); err != nil { +// return nil, err +// } +// result = &tx +// case "*L1RequestSecretTx": +// var tx L1RequestSecretTx +// if err := rlp.DecodeBytes(w.Data, &tx); err != nil { +// return nil, err +// } +// result = &tx +// +// case "*L1SetImportantContractsTx": +// var tx L1SetImportantContractsTx +// if err := rlp.DecodeBytes(w.Data, &tx); err != nil { +// return nil, err +// } +// result = &tx +// case "*L1RespondSecretTx": +// var tx L1RespondSecretTx +// if err := rlp.DecodeBytes(w.Data, &tx); err != nil { +// return nil, err +// } +// result = &tx +// case "*L1DepositTx": +// var tx L1DepositTx +// if err := rlp.DecodeBytes(w.Data, &tx); err != nil { +// return nil, err +// } +// result = &tx +// case "*L1RollupHashes": +// var tx L1RollupHashes +// if err := rlp.DecodeBytes(w.Data, &tx); err != nil { +// return nil, err +// } +// result = &tx +// case "*L1RollupTx": +// var tx L1RollupTx +// if err := rlp.DecodeBytes(w.Data, &tx); err != nil { +// return nil, err +// } +// result = &tx +// default: +// return nil, fmt.Errorf("unknown transaction type: %s", w.TypeName) +// } +// +// return result, nil +//} diff --git a/go/enclave/components/rollup_consumer.go b/go/enclave/components/rollup_consumer.go index 0e3fe1135a..29615f5c12 100644 --- a/go/enclave/components/rollup_consumer.go +++ b/go/enclave/components/rollup_consumer.go @@ -126,9 +126,6 @@ func (rc *rollupConsumerImpl) extractAndVerifyRollups(processed *common.Processe rollupTxs := processed.GetEvents(common.RollupTx) rollups := make([]*common.ExtRollup, 0, len(rollupTxs)) - if len(rollupTxs) > 0 { - println("BLOBS PRESENT") - } blobs, blobHashes, err := rc.extractBlobsAndHashes(rollupTxs) if err != nil { return nil, err diff --git a/go/host/enclave/guardian.go b/go/host/enclave/guardian.go index 5f921fe4b9..a3e58c4568 100644 --- a/go/host/enclave/guardian.go +++ b/go/host/enclave/guardian.go @@ -755,12 +755,12 @@ func (g *Guardian) getLatestBatchNo() (uint64, error) { return fromBatch, nil } -func (g *Guardian) getRollupsAndContractAddrTxs(data common.ProcessedL1Data) ([]*common.L1RollupTx, []*common.L1SetImportantContractsTx) { +func (g *Guardian) getRollupsAndContractAddrTxs(processed common.ProcessedL1Data) ([]*common.L1RollupTx, []*common.L1SetImportantContractsTx) { rollupTxs := make([]*common.L1RollupTx, 0) contractAddressTxs := make([]*common.L1SetImportantContractsTx, 0) - for _, event := range data.GetEvents(common.RollupTx) { - encodedRlp, err := ethadapter.DecodeBlobs(event.Blobs) + for _, txData := range processed.GetEvents(common.RollupTx) { + encodedRlp, err := ethadapter.DecodeBlobs(txData.Blobs) if err != nil { g.logger.Crit("could not decode blobs.", log.ErrKey, err) continue @@ -773,16 +773,17 @@ func (g *Guardian) getRollupsAndContractAddrTxs(data common.ProcessedL1Data) ([] } // Get contract address transactions - for _, event := range data.GetEvents(common.SetImportantContractsTx) { - unwrappedTx, err := event.Type.UnwrapTransaction() - if err != nil { - g.logger.Error("Could not unwrap ten transaction", "type", err) - } - if contractTx, ok := unwrappedTx.(*common.L1SetImportantContractsTx); ok { - contractAddressTxs = append(contractAddressTxs, contractTx) - } else { - g.logger.Warn("Unexpected type for SetImportantContractsTx event", "type", fmt.Sprintf("%T", event.Type)) - } + for _, txData := range processed.GetEvents(common.SetImportantContractsTx) { + println("I NEED TO SETIMPORTANT CONTRACTS: ", txData) + //unwrappedTx, err := event.Type.UnwrapTransaction() + //if err != nil { + // g.logger.Error("Could not unwrap ten transaction", "type", err) + //} + //if contractTx, ok := unwrappedTx.(*common.L1SetImportantContractsTx); ok { + // contractAddressTxs = append(contractAddressTxs, contractTx) + //} else { + // g.logger.Warn("Unexpected type for SetImportantContractsTx event", "type", fmt.Sprintf("%T", event.Type)) + //} } return rollupTxs, contractAddressTxs } diff --git a/go/host/l1/blockrepository.go b/go/host/l1/blockrepository.go index 2f784ac92b..e7b63cbae5 100644 --- a/go/host/l1/blockrepository.go +++ b/go/host/l1/blockrepository.go @@ -213,7 +213,6 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc } for _, log := range logs { - println("LOG") // Fetch the transaction and receipt for each log tx, _, err := r.ethClient.TransactionByHash(log.TxHash) if err != nil { @@ -228,14 +227,12 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc } txData := &common.L1TxData{ - Transaction: tx, - Receipt: receipt, - // Initialize with empty slices instead of nil pointers + Transaction: tx, + Receipt: receipt, CrossChainMessages: &common.CrossChainMessages{}, ValueTransfers: &common.ValueTransferEvents{}, } - // Process the transaction based on the log messages, err := r.getCrossChainMessages(receipt) if err != nil { r.logger.Error("Error encountered converting logs to messages", err) @@ -256,7 +253,6 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc sequencerLogs = []types.Log{} // Initialize to empty slice on error } - // Add events only if we have valid data if len(*txData.CrossChainMessages) > 0 { processed.AddEvent(common.CrossChainMessageTx, txData) println("CrossChainMessageTx ADDED") @@ -273,14 +269,12 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc } decodedTx := r.mgmtContractLib.DecodeTx(tx) - wrappedTx, err := common.WrapTenTransaction(decodedTx) if err != nil { r.logger.Error("Failed to wrap transaction", "error", err) continue } - txData.Type = wrappedTx - switch decodedTx.(type) { + switch t := decodedTx.(type) { case *common.L1RequestSecretTx: println("L1RequestSecretTx ADDED") processed.AddEvent(common.SecretRequestTx, txData) @@ -290,8 +284,32 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc case *common.L1SetImportantContractsTx: println("SetImportantContractsTx ADDED") processed.AddEvent(common.SetImportantContractsTx, txData) - case *common.L1RollupTx: - println("L1RollupTx ADDED") + case *common.L1RollupHashes: + println("L1RollupHashes ADDED") + blobs, err := r.blobResolver.FetchBlobs(context.Background(), block.Header(), t.BlobHashes) + if err != nil { + if errors.Is(err, ethereum.NotFound) { + r.logger.Crit("Blobs were not found on beacon chain or archive service", "block", block.Hash(), "error", err) + } else { + r.logger.Crit("could not fetch blobs", err) + } + continue + } + + txData.Blobs = blobs + + //encodedRlp, err := ethadapter.DecodeBlobs(blobs) + //if err != nil { + // r.logger.Crit("could not decode blobs.", err) + // continue + //} + // + //rlp := &common.L1RollupTx{ + // Rollup: encodedRlp, + //} + //rollupTxs = append(rollupTxs, rlp) + //println("L1RollupTx ADDED") + //txData.Blobs = t. processed.AddEvent(common.RollupTx, txData) } } From 9477c71eae14209d53a7927b67bc96e110bfb549 Mon Sep 17 00:00:00 2001 From: Will Hester Date: Tue, 3 Dec 2024 11:39:46 +0000 Subject: [PATCH 11/21] stashing - xchain receipt unsuccessful --- go/common/host/services.go | 2 - go/common/l1_transaction.go | 1 + go/enclave/components/block_processor.go | 4 -- .../mgmtcontractlib/mgmt_contract_lib.go | 9 +++ go/host/l1/blockrepository.go | 21 ++++--- go/host/l1/publisher.go | 62 ------------------- .../simulation_full_network_test.go | 4 +- 7 files changed, 23 insertions(+), 80 deletions(-) diff --git a/go/common/host/services.go b/go/common/host/services.go index 49eea62d82..da53887604 100644 --- a/go/common/host/services.go +++ b/go/common/host/services.go @@ -102,8 +102,6 @@ type L1Publisher interface { InitializeSecret(attestation *common.AttestationReport, encSecret common.EncryptedSharedEnclaveSecret) error // RequestSecret will send a management contract transaction to request a secret from the enclave, returning the L1 head at time of sending RequestSecret(report *common.AttestationReport) (gethcommon.Hash, error) - // ExtractRelevantTenTransactions will return all TEN relevant tx from an L1 block - ExtractRelevantTenTransactions(block *types.Block, receipts types.Receipts) ([]*common.TxAndReceiptAndBlobs, []*common.L1RollupTx, []*common.L1SetImportantContractsTx) // FindSecretResponseTx will return the secret response tx from an L1 block FindSecretResponseTx(block *types.Block) []*common.L1RespondSecretTx // PublishRollup will create and publish a rollup tx to the management contract - fire and forget we don't wait for receipt diff --git a/go/common/l1_transaction.go b/go/common/l1_transaction.go index 45245179ba..ffa2d81352 100644 --- a/go/common/l1_transaction.go +++ b/go/common/l1_transaction.go @@ -82,6 +82,7 @@ type L1TxType uint8 // Change to uint8 for RLP serialization const ( RollupTx L1TxType = iota SecretRequestTx + SecretResponseTx InitialiseSecretTx CrossChainMessageTx CrossChainValueTranserTx diff --git a/go/enclave/components/block_processor.go b/go/enclave/components/block_processor.go index 9eef282f46..f8c1e0ee4e 100644 --- a/go/enclave/components/block_processor.go +++ b/go/enclave/components/block_processor.go @@ -63,10 +63,6 @@ func (bp *l1BlockProcessor) Process(ctx context.Context, processed *common.Proce defer core.LogMethodDuration(bp.logger, measure.NewStopwatch(), "L1 block processed", log.BlockHashKey, processed.BlockHeader.Hash()) header := processed.BlockHeader ingestion, err := bp.tryAndInsertBlock(ctx, processed.BlockHeader) - - if len(processed.Events) > 0 { - println("EVENTS PRESENT") - } if err != nil { return nil, err } diff --git a/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go b/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go index 350a7864ba..957ec95864 100644 --- a/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go +++ b/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go @@ -87,6 +87,7 @@ func (c *contractLibImpl) DecodeTx(tx *types.Transaction) common.TenTransaction contractCallData := map[string]interface{}{} switch method.Name { case AddRollupMethod: + println("DECODE TX: AddRollupMethod") if tx.Type() == types.BlobTxType { return &common.L1RollupHashes{ BlobHashes: tx.BlobHashes(), @@ -95,15 +96,19 @@ func (c *contractLibImpl) DecodeTx(tx *types.Transaction) common.TenTransaction return nil } case RespondSecretMethod: + println("DECODE TX: RespondSecretMethod") return c.unpackRespondSecretTx(tx, method, contractCallData) case RequestSecretMethod: + println("DECODE TX: RequestSecretMethod") return c.unpackRequestSecretTx(tx, method, contractCallData) case InitializeSecretMethod: + println("DECODE TX: InitializeSecretMethod") return c.unpackInitSecretTx(tx, method, contractCallData) case SetImportantContractsMethod: + println("DECODE TX: SetImportantContractsMethod") tx, err := c.unpackSetImportantContractsTx(tx, method, contractCallData) if err != nil { c.logger.Warn("could not unpack set important contracts tx", log.ErrKey, err) @@ -117,6 +122,7 @@ func (c *contractLibImpl) DecodeTx(tx *types.Transaction) common.TenTransaction // CreateBlobRollup creates a BlobTx, encoding the rollup data into blobs. func (c *contractLibImpl) CreateBlobRollup(t *common.L1RollupTx) (types.TxData, error) { + println("CREATING L1RollupTx") decodedRollup, err := common.DecodeRollup(t.Rollup) if err != nil { panic(err) @@ -162,6 +168,7 @@ func (c *contractLibImpl) CreateBlobRollup(t *common.L1RollupTx) (types.TxData, } func (c *contractLibImpl) CreateRequestSecret(tx *common.L1RequestSecretTx) types.TxData { + println("CREATING L1RequestSecretTx") data, err := c.contractABI.Pack(RequestSecretMethod, base64EncodeToString(tx.Attestation)) if err != nil { panic(err) @@ -174,6 +181,7 @@ func (c *contractLibImpl) CreateRequestSecret(tx *common.L1RequestSecretTx) type } func (c *contractLibImpl) CreateRespondSecret(tx *common.L1RespondSecretTx, verifyAttester bool) types.TxData { + println("CREATING L1RespondSecretTx") data, err := c.contractABI.Pack( RespondSecretMethod, tx.AttesterID, @@ -192,6 +200,7 @@ func (c *contractLibImpl) CreateRespondSecret(tx *common.L1RespondSecretTx, veri } func (c *contractLibImpl) CreateInitializeSecret(tx *common.L1InitializeSecretTx) types.TxData { + println("CREATING L1InitializeSecretTx") data, err := c.contractABI.Pack( InitializeSecretMethod, tx.EnclaveID, diff --git a/go/host/l1/blockrepository.go b/go/host/l1/blockrepository.go index e7b63cbae5..8f216f05a3 100644 --- a/go/host/l1/blockrepository.go +++ b/go/host/l1/blockrepository.go @@ -206,23 +206,21 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc allAddresses = append(allAddresses, r.contractAddresses[MgmtContract]...) allAddresses = append(allAddresses, r.contractAddresses[MsgBus]...) - // Query for logs emitted by relevant contracts in the block logs, err := r.ethClient.GetLogs(ethereum.FilterQuery{BlockHash: &blkHash, Addresses: allAddresses}) if err != nil { return nil, fmt.Errorf("unable to fetch logs for L1 block - %w", err) } - for _, log := range logs { - // Fetch the transaction and receipt for each log - tx, _, err := r.ethClient.TransactionByHash(log.TxHash) + for _, l := range logs { + tx, _, err := r.ethClient.TransactionByHash(l.TxHash) if err != nil { - r.logger.Error("Error fetching transaction by hash", log.TxHash, err) + r.logger.Error("Error fetching transaction by hash", l.TxHash, err) continue } - receipt, err := r.ethClient.TransactionReceipt(log.TxHash) + receipt, err := r.ethClient.TransactionReceipt(l.TxHash) if err != nil { - r.logger.Error("Error fetching transaction receipt with tx hash", log.TxHash, err) + r.logger.Error("Error fetching transaction receipt with tx hash", l.TxHash, err) continue } @@ -275,12 +273,15 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc } switch t := decodedTx.(type) { - case *common.L1RequestSecretTx: - println("L1RequestSecretTx ADDED") - processed.AddEvent(common.SecretRequestTx, txData) case *common.L1InitializeSecretTx: println("InitialiseSecretTx ADDED") processed.AddEvent(common.InitialiseSecretTx, txData) + case *common.L1RequestSecretTx: + println("L1RequestSecretTx ADDED") + processed.AddEvent(common.SecretRequestTx, txData) + case *common.L1RespondSecretTx: + println("L1RespondSecretTx ADDED") + processed.AddEvent(common.SecretResponseTx, txData) case *common.L1SetImportantContractsTx: println("SetImportantContractsTx ADDED") processed.AddEvent(common.SetImportantContractsTx, txData) diff --git a/go/host/l1/publisher.go b/go/host/l1/publisher.go index adb80f0562..ef2f02cfd9 100644 --- a/go/host/l1/publisher.go +++ b/go/host/l1/publisher.go @@ -8,10 +8,6 @@ import ( "sync" "time" - "github.com/ethereum/go-ethereum/crypto/kzg4844" - - "github.com/ethereum/go-ethereum" - "github.com/ten-protocol/go-ten/contracts/generated/ManagementContract" "github.com/ten-protocol/go-ten/go/common/errutil" "github.com/ten-protocol/go-ten/go/common/stopcontrol" @@ -228,64 +224,6 @@ func (p *Publisher) PublishSecretResponse(secretResponse *common.ProducedSecretR return nil } -// ExtractRelevantTenTransactions will extract any transactions from the block that are relevant to TEN -// todo (#2495) we should monitor for relevant L1 events instead of scanning every transaction in the block -func (p *Publisher) ExtractRelevantTenTransactions(block *types.Block, receipts types.Receipts) ([]*common.TxAndReceiptAndBlobs, []*common.L1RollupTx, []*common.L1SetImportantContractsTx) { - // temporarily add this host stopping check to prevent sim test failures until a more robust solution is implemented - for !p.hostStopper.IsStopping() { - txWithReceiptsAndBlobs := make([]*common.TxAndReceiptAndBlobs, 0) - rollupTxs := make([]*common.L1RollupTx, 0) - contractAddressTxs := make([]*common.L1SetImportantContractsTx, 0) - - txs := block.Transactions() - for i, rec := range receipts { - if rec.BlockNumber == nil { - continue // Skip non-relevant transactions - } - - decodedTx := p.mgmtContractLib.DecodeTx(txs[i]) - var blobs []*kzg4844.Blob - var err error - - switch typedTx := decodedTx.(type) { - case *common.L1SetImportantContractsTx: - contractAddressTxs = append(contractAddressTxs, typedTx) - case *common.L1RollupHashes: - blobs, err = p.blobResolver.FetchBlobs(p.sendingContext, block.Header(), typedTx.BlobHashes) - if err != nil { - if errors.Is(err, ethereum.NotFound) { - p.logger.Crit("Blobs were not found on beacon chain or archive service", "block", block.Hash(), "error", err) - } else { - p.logger.Crit("could not fetch blobs", log.ErrKey, err) - } - continue - } - - encodedRlp, err := ethadapter.DecodeBlobs(blobs) - if err != nil { - p.logger.Crit("could not decode blobs.", log.ErrKey, err) - continue - } - - rlp := &common.L1RollupTx{ - Rollup: encodedRlp, - } - rollupTxs = append(rollupTxs, rlp) - } - - // compile the tx, receipt and blobs into a single struct for submission to the enclave - txWithReceiptsAndBlobs = append(txWithReceiptsAndBlobs, &common.TxAndReceiptAndBlobs{ - Tx: txs[i], - Receipt: rec, - Blobs: blobs, - }) - } - - return txWithReceiptsAndBlobs, rollupTxs, contractAddressTxs - } - return nil, nil, nil -} - // FindSecretResponseTx will scan the block for any secret response transactions. This is separate from the above method // as we do not require the receipts for these transactions. func (p *Publisher) FindSecretResponseTx(block *types.Block) []*common.L1RespondSecretTx { diff --git a/integration/simulation/simulation_full_network_test.go b/integration/simulation/simulation_full_network_test.go index a25cf0d3d6..7acfb4e34d 100644 --- a/integration/simulation/simulation_full_network_test.go +++ b/integration/simulation/simulation_full_network_test.go @@ -17,8 +17,8 @@ import ( func TestFullNetworkMonteCarloSimulation(t *testing.T) { setupSimTestLog("full-network") - numberOfNodes := 5 - numberOfSimWallets := 5 + numberOfNodes := 2 + numberOfSimWallets := 2 wallets := params.NewSimWallets(numberOfSimWallets, numberOfNodes, integration.EthereumChainID, integration.TenChainID) From d5731454259bc25fe313c7b00fe439fadbf00c53 Mon Sep 17 00:00:00 2001 From: Will Hester Date: Tue, 3 Dec 2024 17:36:35 +0000 Subject: [PATCH 12/21] stashing --- go/host/l1/publisher.go | 4 +++- integration/simulation/simulation_full_network_test.go | 4 ++-- integration/simulation/utils.go | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/go/host/l1/publisher.go b/go/host/l1/publisher.go index ef2f02cfd9..11a5907c58 100644 --- a/go/host/l1/publisher.go +++ b/go/host/l1/publisher.go @@ -310,7 +310,8 @@ func (p *Publisher) PublishCrossChainBundle(bundle *common.ExtCrossChainBundle, } transactor.Nonce = big.NewInt(0).SetUint64(nonce) - + println("HOST WALLET NONCE: ", p.hostWallet.GetNonce()) + println("TRANSACTOR NONCE: ", transactor.Nonce.Uint64()) tx, err := managementCtr.AddCrossChainMessagesRoot(transactor, [32]byte(bundle.LastBatchHash.Bytes()), bundle.L1BlockHash, bundle.L1BlockNum, bundle.CrossChainRootHashes, bundle.Signature, rollupNum, forkID) if err != nil { if !errors.Is(err, errutil.ErrCrossChainBundleRepublished) { @@ -321,6 +322,7 @@ func (p *Publisher) PublishCrossChainBundle(bundle *common.ExtCrossChainBundle, return fmt.Errorf("unable to submit cross chain bundle transaction. Cause: %w", err) } + println("HASH: ", tx.Hash().Hex()) err = p.awaitTransaction(tx) if err != nil { p.logger.Error("Error with receipt of cross chain publish transaction", log.TxKey, tx.Hash(), log.ErrKey, err) diff --git a/integration/simulation/simulation_full_network_test.go b/integration/simulation/simulation_full_network_test.go index 7acfb4e34d..a25cf0d3d6 100644 --- a/integration/simulation/simulation_full_network_test.go +++ b/integration/simulation/simulation_full_network_test.go @@ -17,8 +17,8 @@ import ( func TestFullNetworkMonteCarloSimulation(t *testing.T) { setupSimTestLog("full-network") - numberOfNodes := 2 - numberOfSimWallets := 2 + numberOfNodes := 5 + numberOfSimWallets := 5 wallets := params.NewSimWallets(numberOfSimWallets, numberOfNodes, integration.EthereumChainID, integration.TenChainID) diff --git a/integration/simulation/utils.go b/integration/simulation/utils.go index 9445b9c7be..68523b132a 100644 --- a/integration/simulation/utils.go +++ b/integration/simulation/utils.go @@ -28,7 +28,7 @@ func setupSimTestLog(simType string) { LogDir: testLogs, TestType: "sim-log", TestSubtype: simType, - LogLevel: log.LvlTrace, + LogLevel: log.LvlDebug, }) } From de382dbf0ce5f2b293a0eecb2dd23a7ded5c1e5c Mon Sep 17 00:00:00 2001 From: Will Hester Date: Thu, 5 Dec 2024 12:04:27 +0000 Subject: [PATCH 13/21] rework log filtering --- .../ManagementContract/ManagementContract.go | 302 ++- .../src/management/ManagementContract.sol | 5 + go/common/l1_transaction.go | 3 +- go/config/loader.go | 2 +- go/enclave/components/rollup_consumer.go | 4 + .../components/shared_secret_process.go | 44 +- go/enclave/crosschain/common.go | 14 +- go/enclave/enclave_admin_service.go | 11 + .../mgmtcontractlib/mgmt_contract_lib.go | 11 +- go/host/enclave/guardian.go | 5 +- go/host/l1/blockrepository.go | 305 +-- go/host/l1/publisher.go | 7 +- go/host/l2/batchrepository.go | 3 + go/node/docker_node.go | 2 +- integration/simulation/utils.go | 2 +- nodelogs-working.txt | 2055 +++++++++++++++++ nodelogs.txt | 2001 ++++++++++++++++ 17 files changed, 4591 insertions(+), 185 deletions(-) create mode 100644 nodelogs-working.txt create mode 100644 nodelogs.txt diff --git a/contracts/generated/ManagementContract/ManagementContract.go b/contracts/generated/ManagementContract/ManagementContract.go index f757acd50d..f26bc60a28 100644 --- a/contracts/generated/ManagementContract/ManagementContract.go +++ b/contracts/generated/ManagementContract/ManagementContract.go @@ -61,8 +61,8 @@ type StructsValueTransferMessage struct { // ManagementContractMetaData contains all meta data concerning the ManagementContract contract. var ManagementContractMetaData = &bind.MetaData{ - ABI: "[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"key\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"ImportantContractAddressUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"messageBusAddress\",\"type\":\"address\"}],\"name\":\"LogManagementContractCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"rollupHash\",\"type\":\"bytes32\"}],\"name\":\"RollupAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"enclaveID\",\"type\":\"address\"}],\"name\":\"SequencerEnclaveGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"enclaveID\",\"type\":\"address\"}],\"name\":\"SequencerEnclaveRevoked\",\"type\":\"event\"},{\"inputs\":[{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"Hash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"Signature\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"LastSequenceNumber\",\"type\":\"uint256\"}],\"internalType\":\"structStructs.MetaRollup\",\"name\":\"r\",\"type\":\"tuple\"},{\"components\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"sequence\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"topic\",\"type\":\"uint32\"},{\"internalType\":\"bytes\",\"name\":\"payload\",\"type\":\"bytes\"},{\"internalType\":\"uint8\",\"name\":\"consistencyLevel\",\"type\":\"uint8\"}],\"internalType\":\"structStructs.CrossChainMessage[]\",\"name\":\"messages\",\"type\":\"tuple[]\"}],\"internalType\":\"structStructs.HeaderCrossChainData\",\"name\":\"\",\"type\":\"tuple\"}],\"name\":\"AddRollup\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_addr\",\"type\":\"address\"}],\"name\":\"Attested\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint64\",\"name\":\"sequence\",\"type\":\"uint64\"}],\"internalType\":\"structStructs.ValueTransferMessage\",\"name\":\"_msg\",\"type\":\"tuple\"},{\"internalType\":\"bytes32[]\",\"name\":\"proof\",\"type\":\"bytes32[]\"},{\"internalType\":\"bytes32\",\"name\":\"root\",\"type\":\"bytes32\"}],\"name\":\"ExtractNativeValue\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"GetImportantContractKeys\",\"outputs\":[{\"internalType\":\"string[]\",\"name\":\"\",\"type\":\"string[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"rollupHash\",\"type\":\"bytes32\"}],\"name\":\"GetRollupByHash\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"Hash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"Signature\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"LastSequenceNumber\",\"type\":\"uint256\"}],\"internalType\":\"structStructs.MetaRollup\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"number\",\"type\":\"uint256\"}],\"name\":\"GetRollupByNumber\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"Hash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"Signature\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"LastSequenceNumber\",\"type\":\"uint256\"}],\"internalType\":\"structStructs.MetaRollup\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"number\",\"type\":\"uint256\"}],\"name\":\"GetUniqueForkID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"Hash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"Signature\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"LastSequenceNumber\",\"type\":\"uint256\"}],\"internalType\":\"structStructs.MetaRollup\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_addr\",\"type\":\"address\"}],\"name\":\"GrantSequencerEnclave\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_enclaveID\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_initSecret\",\"type\":\"bytes\"},{\"internalType\":\"string\",\"name\":\"_genesisAttestation\",\"type\":\"string\"}],\"name\":\"InitializeNetworkSecret\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_addr\",\"type\":\"address\"}],\"name\":\"IsSequencerEnclave\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"IsWithdrawalAvailable\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"requestReport\",\"type\":\"string\"}],\"name\":\"RequestNetworkSecret\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"attesterID\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"requesterID\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"attesterSig\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"responseSecret\",\"type\":\"bytes\"},{\"internalType\":\"bool\",\"name\":\"verifyAttester\",\"type\":\"bool\"}],\"name\":\"RespondNetworkSecret\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"RetrieveAllBridgeFunds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_addr\",\"type\":\"address\"}],\"name\":\"RevokeSequencerEnclave\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"key\",\"type\":\"string\"},{\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"SetImportantContractAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_lastBatchHash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"blockHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"blockNum\",\"type\":\"uint256\"},{\"internalType\":\"bytes[]\",\"name\":\"crossChainHashes\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"rollupNumber\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"forkID\",\"type\":\"bytes32\"}],\"name\":\"addCrossChainMessagesRoot\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"name\":\"importantContractAddresses\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"importantContractKeys\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"crossChainHashes\",\"type\":\"bytes[]\"}],\"name\":\"isBundleAvailable\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"name\":\"isBundleSaved\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"name\":\"isWithdrawalSpent\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lastBatchHash\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lastBatchSeqNo\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"merkleMessageBus\",\"outputs\":[{\"internalType\":\"contractIMerkleTreeMessageBus\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"messageBus\",\"outputs\":[{\"internalType\":\"contractIMessageBus\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}]", - Bin: "0x6080604052348015600f57600080fd5b50601733601b565b608c565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b6151e18061009b6000396000f3fe608060405234801561001057600080fd5b50600436106101d95760003560e01c80638129fc1c11610104578063a25eb31c116100a2578063db5d91b111610071578063db5d91b114610475578063e34fbfc8146104a1578063e874eb20146104b3578063f2fde38b146104c657600080fd5b8063a25eb31c1461042c578063a4ab2faa1461043f578063a52f433c14610452578063d4fab8871461046257600080fd5b806387059edb116100de57806387059edb146103a95780638da5cb5b146103bc57806398077e86146103ec578063a1a227fa1461040c57600080fd5b80638129fc1c1461035d5780638236a7ba14610365578063841548261461038657600080fd5b8063476657381161017c5780636a30d26c1161014b5780636a30d26c146103255780636b9707d61461033a578063715018a61461034d578063728109961461035557600080fd5b806347665738146102cb5780635371a216146102de578063568699c8146102f157806368e103831461031257600080fd5b80632f0cb9e3116101b85780632f0cb9e3146102255780633e60a22f1461025557806343348b2f14610296578063440c953b146102c257600080fd5b80620ddd27146101de57806303e72e48146101fd578063073b6ef314610212575b600080fd5b6101e7600e5481565b6040516101f491906119de565b60405180910390f35b61021061020b366004611b14565b6104d9565b005b610210610220366004611c89565b6105e1565b610248610233366004611d57565b600c6020526000908152604090205460ff1681565b6040516101f49190611d7e565b610289610263366004611d8c565b80516020818301810180516003825292820191909301209152546001600160a01b031681565b6040516101f49190611dd8565b6102486102a4366004611de6565b6001600160a01b031660009081526020819052604090205460ff1690565b6101e760055481565b6102106102d9366004611de6565b6107d8565b6102106102ec366004611e6b565b610878565b6103046102ff366004611d57565b610a1d565b6040516101f4929190611f6d565b610210610320366004611f8d565b610a73565b61032d610b17565b6040516101f49190612090565b610210610348366004611de6565b610bf0565b610210610c80565b610210610c94565b610210610d19565b610378610373366004611d57565b610ef4565b6040516101f49291906120a1565b610248610394366004611d57565b600d6020526000908152604090205460ff1681565b6103786103b7366004611d57565b610fdc565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b0316610289565b6103ff6103fa366004611d57565b611053565b6040516101f491906120af565b600a5461041f906001600160a01b031681565b6040516101f49190612102565b61021061043a36600461213a565b6110ff565b61024861044d3660046121ac565b611207565b600454610100900460ff16610248565b6102106104703660046121fa565b611285565b610248610483366004611de6565b6001600160a01b031660009081526001602052604090205460ff1690565b6102106104af3660046122a1565b5050565b600b5461041f906001600160a01b031681565b6102106104d4366004611de6565b611361565b6104e16113b8565b60006001600160a01b03166003836040516104fc919061230b565b908152604051908190036020019020546001600160a01b03160361055857600280546001810182556000919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0161055683826123e7565b505b80600383604051610569919061230b565b90815260405190819003602001812080546001600160a01b039390931673ffffffffffffffffffffffffffffffffffffffff19909316929092179091557f17b2f9f5748931099ffee882b5b64f4a560b5c55da9b4f4e396dae3bb9f98cb5906105d590849084906124a7565b60405180910390a15050565b60008281526008602052604090205481146106175760405162461bcd60e51b815260040161060e906124f9565b60405180910390fd5b6000610685898989896040516020016106339493929190612561565b6040516020818303038152906040528051906020012086868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061142c92505050565b6001600160a01b03811660009081526020819052604090205490915060ff166106c05760405162461bcd60e51b815260040161060e906125d7565b600e8990556000805b87518110156107b357600b5488516001600160a01b039091169063b6aed0cb908a90849081106106fb576106fb6125e7565b602002602001015161070c90612607565b426040518363ffffffff1660e01b815260040161072a92919061263d565b600060405180830381600087803b15801561074457600080fd5b505af1158015610758573d6000803e3d6000fd5b505050508188828151811061076f5761076f6125e7565b602002602001015161078090612607565b60405160200161079192919061263d565b60408051601f19818403018152919052805160209091012091506001016106c9565b506000908152600d60205260409020805460ff19166001179055505050505050505050565b6107e06113b8565b6001600160a01b03811660009081526020819052604090205460ff166108185760405162461bcd60e51b815260040161060e906125d7565b6001600160a01b038116600090815260016020819052604091829020805460ff19169091179055517ffe64c7181f0fc60e300dc02cca368cdfa94d7ca45902de3b9a9d80070e7609369061086d908390611dd8565b60405180910390a150565b600b546040517fb201246f0000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063b201246f906108c7908790879087908790600401612773565b60006040518083038186803b1580156108df57600080fd5b505afa1580156108f3573d6000803e3d6000fd5b5050505060008460405160200161090a91906127ac565b60408051601f1981840301815291815281516020928301206000818152600c90935291205490915060ff16156109525760405162461bcd60e51b815260040161060e906127ec565b6001600c60008760405160200161096991906127ac565b60408051808303601f190181529181528151602092830120835282820193909352908201600020805460ff191693151593909317909255600a546001600160a01b0316916399a3ad21916109c291908901908901611de6565b87604001356040518363ffffffff1660e01b81526004016109e49291906127fc565b600060405180830381600087803b1580156109fe57600080fd5b505af1158015610a12573d6000803e3d6000fd5b505050505050505050565b604080516060808201835260008083526020830191909152918101829052600080610a4785610fdc565b9150915081610a5c5760009590945092505050565b600094855260086020526040909420549492505050565b60045460ff1615610a965760405162461bcd60e51b815260040161060e90612864565b60048054600160ff1991821681179092556001600160a01b0387166000908152602081815260408083208054851686179055908490529081902080549092169092179055517ffe64c7181f0fc60e300dc02cca368cdfa94d7ca45902de3b9a9d80070e76093690610b08908790611dd8565b60405180910390a15050505050565b60606002805480602002602001604051908101604052809291908181526020016000905b82821015610be7578382906000526020600020018054610b5a9061232b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b869061232b565b8015610bd35780601f10610ba857610100808354040283529160200191610bd3565b820191906000526020600020905b815481529060010190602001808311610bb657829003601f168201915b505050505081526020019060010190610b3b565b50505050905090565b610bf86113b8565b6001600160a01b03811660009081526001602052604090205460ff16610c305760405162461bcd60e51b815260040161060e906128a6565b6001600160a01b03811660009081526001602052604090819020805460ff19169055517f0f279980343c7ca542fde9fa5396555068efb5cd560d9cf9c191aa2911079b479061086d908390611dd8565b610c886113b8565b610c926000611458565b565b610c9c6113b8565b600a546040517f36d2da900000000000000000000000000000000000000000000000000000000081526001600160a01b03909116906336d2da9090610ce5903390600401611dd8565b600060405180830381600087803b158015610cff57600080fd5b505af1158015610d13573d6000803e3d6000fd5b50505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff16600081158015610d645750825b905060008267ffffffffffffffff166001148015610d815750303b155b905081158015610d8f575080155b15610dc6576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610dfa57845468ff00000000000000001916680100000000000000001785555b610e03336114d6565b60006005556001600955604051610e19906119c9565b604051809103906000f080158015610e35573d6000803e3d6000fd5b50600b80546001600160a01b039290921673ffffffffffffffffffffffffffffffffffffffff199283168117909155600a805490921681179091556040517fbd726cf82ac9c3260b1495107182e336e0654b25c10915648c0cc15b2bb72cbf91610e9e91611dd8565b60405180910390a18315610eed57845468ff0000000000000000191685556040517fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290610b08906001906128d1565b5050505050565b604080516060808201835260008083526020808401839052838501829052858252600681528482208551938401909552845483526001850180549295869493909284019190610f429061232b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6e9061232b565b8015610fbb5780601f10610f9057610100808354040283529160200191610fbb565b820191906000526020600020905b815481529060010190602001808311610f9e57829003601f168201915b50505091835250506002919091015460209091015280519094149492505050565b6040805160608082018352600080835260208301919091529181018290526000838152600760205260408120549081900361104057505060408051606081018252600080825282516020818101855282825283015291810182905290939092509050565b61104981610ef4565b9250925050915091565b6002818154811061106357600080fd5b90600052602060002001600091509050805461107e9061232b565b80601f01602080910402602001604051908101604052809291908181526020018280546110aa9061232b565b80156110f75780601f106110cc576101008083540402835291602001916110f7565b820191906000526020600020905b8154815290600101906020018083116110da57829003601f168201915b505050505081565b600061114d833561111360208601866128df565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061142c92505050565b6001600160a01b03811660009081526020819052604090205490915060ff166111885760405162461bcd60e51b815260040161060e906125d7565b6001600160a01b03811660009081526001602052604090205460ff166111c05760405162461bcd60e51b815260040161060e906128a6565b6111c9836114e7565b6040517fd6555bff8670bd3008dc064c30bb56d6ac7cb14ae801e36146fe4e7c6a504a58906111fa908535906119de565b60405180910390a1505050565b600080805b835181101561126c5781848281518110611228576112286125e7565b602002602001015161123990612607565b60405160200161124a92919061263d565b60408051601f198184030181529190528051602090910120915060010161120c565b506000908152600d602052604090205460ff1692915050565b6001600160a01b03851660009081526020819052604090205460ff16806112be5760405162461bcd60e51b815260040161060e9061298c565b81156113365760006112f28787866040516020016112de939291906129c4565b60405160208183030381529060405261158b565b90506000611300828761142c565b9050876001600160a01b0316816001600160a01b0316146113335760405162461bcd60e51b815260040161060e90612a40565b50505b5050506001600160a01b039091166000908152602081905260409020805460ff191660011790555050565b6113696113b8565b6001600160a01b0381166113ac5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161060e9190611dd8565b6113b581611458565b50565b336113ea7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b031614610c9257336040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161060e9190611dd8565b60008060008061143c86866115c6565b92509250925061144c8282611613565b50909150505b92915050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300805473ffffffffffffffffffffffffffffffffffffffff1981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b6114de611715565b6113b58161177c565b8035600090815260066020526040902081906115038282612bb3565b50506009546000908152600760205260409020813590819055611527600143612bd3565b4060405160200161153992919061263d565b60408051601f19818403018152918152815160209283012060098054600090815260089094529183205580549161156f83612be6565b9190505550600554816040013511156113b55760400135600555565b60006115978251611784565b826040516020016115a9929190612bff565b604051602081830303815290604052805190602001209050919050565b600080600083516041036116005760208401516040850151606086015160001a6115f288828585611825565b95509550955050505061160c565b50508151600091506002905b9250925092565b600082600381111561162757611627612c3b565b03611630575050565b600182600381111561164457611644612c3b565b0361167b576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600282600381111561168f5761168f612c3b565b036116c8576040517ffce698f700000000000000000000000000000000000000000000000000000000815261060e9082906004016119de565b60038260038111156116dc576116dc612c3b565b036104af57806040517fd78bce0c00000000000000000000000000000000000000000000000000000000815260040161060e91906119de565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16610c92576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611369611715565b60606000611791836118e7565b600101905060008167ffffffffffffffff8111156117b1576117b16119ec565b6040519080825280601f01601f1916602001820160405280156117db576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85049450846117e5575b509392505050565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084111561186057506000915060039050826118dd565b6000600188888888604051600081526020016040526040516118859493929190612c5a565b6020604051602081039080840390855afa1580156118a7573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166118d3575060009250600191508290506118dd565b9250600091508190505b9450945094915050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611930577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef8100000000831061195c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061197a57662386f26fc10000830492506010015b6305f5e1008310611992576305f5e100830492506008015b61271083106119a657612710830492506004015b606483106119b8576064830492506002015b600a83106114525760010192915050565b61251c80612c9083390190565b805b82525050565b6020810161145282846119d6565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715611a2857611a286119ec565b6040525050565b6000611a3a60405190565b9050611a468282611a02565b919050565b600067ffffffffffffffff821115611a6557611a656119ec565b601f19601f83011660200192915050565b82818337506000910152565b6000611a95611a9084611a4b565b611a2f565b9050828152838383011115611aac57611aac600080fd5b611aba836020830184611a76565b9392505050565b600082601f830112611ad557611ad5600080fd5b611aba83833560208501611a82565b60006001600160a01b038216611452565b611afe81611ae4565b81146113b557600080fd5b803561145281611af5565b60008060408385031215611b2a57611b2a600080fd5b823567ffffffffffffffff811115611b4457611b44600080fd5b611b5085828601611ac1565b925050611b608460208501611b09565b90509250929050565b80611afe565b803561145281611b69565b600067ffffffffffffffff821115611b9457611b946119ec565b5060209081020190565b6000611bac611a9084611b7a565b83815290506020808201908402830185811115611bcb57611bcb600080fd5b835b81811015611c0a57803567ffffffffffffffff811115611bef57611bef600080fd5b611bfb88828801611ac1565b84525060209283019201611bcd565b5050509392505050565b600082601f830112611c2857611c28600080fd5b611aba83833560208501611b9e565b60008083601f840112611c4c57611c4c600080fd5b50813567ffffffffffffffff811115611c6757611c67600080fd5b602083019150836001820283011115611c8257611c82600080fd5b9250929050565b60008060008060008060008060e0898b031215611ca857611ca8600080fd5b611cb28a8a611b6f565b9750611cc18a60208b01611b6f565b9650611cd08a60408b01611b6f565b9550606089013567ffffffffffffffff811115611cef57611cef600080fd5b611cfb8b828c01611c14565b955050608089013567ffffffffffffffff811115611d1b57611d1b600080fd5b611d278b828c01611c37565b9450945050611d398a60a08b01611b6f565b9150611d488a60c08b01611b6f565b90509295985092959890939650565b600060208284031215611d6c57611d6c600080fd5b611aba8383611b6f565b8015156119d8565b602081016114528284611d76565b600060208284031215611da157611da1600080fd5b813567ffffffffffffffff811115611dbb57611dbb600080fd5b611dc784828501611ac1565b949350505050565b6119d881611ae4565b602081016114528284611dcf565b600060208284031215611dfb57611dfb600080fd5b611aba8383611b09565b600060808284031215611e1a57611e1a600080fd5b50919050565b60008083601f840112611e3557611e35600080fd5b50813567ffffffffffffffff811115611e5057611e50600080fd5b602083019150836020820283011115611c8257611c82600080fd5b60008060008060c08587031215611e8457611e84600080fd5b611e8e8686611e05565b9350608085013567ffffffffffffffff811115611ead57611ead600080fd5b611eb987828801611e20565b9350935050611ecb8660a08701611b6f565b905092959194509250565b60005b83811015611ef1578181015183820152602001611ed9565b50506000910152565b6000611f04825190565b808452602084019350611f1b818560208601611ed6565b601f01601f19169290920192915050565b80516000906060840190611f4085826119d6565b5060208301518482036020860152611f588282611efa565b915050604083015161181d60408601826119d6565b60408101611f7b82856119d6565b8181036020830152611dc78184611f2c565b600080600080600060608688031215611fa857611fa8600080fd5b611fb28787611b09565b9450602086013567ffffffffffffffff811115611fd157611fd1600080fd5b611fdd88828901611c37565b9450945050604086013567ffffffffffffffff811115611fff57611fff600080fd5b61200b88828901611c37565b92509250509295509295909350565b6000611aba8383611efa565b60200190565b6000612036825190565b808452602084019350836020820285016120508560200190565b60005b84811015612084578383038852815161206c848261201a565b93505060208201602098909801979150600101612053565b50909695505050505050565b60208082528101611aba818461202c565b60408101611f7b8285611d76565b60208082528101611aba8184611efa565b60006114526001600160a01b0383166120d7565b90565b6001600160a01b031690565b6000611452826120c0565b6000611452826120e3565b6119d8816120ee565b6020810161145282846120f9565b600060608284031215611e1a57611e1a600080fd5b600060208284031215611e1a57611e1a600080fd5b6000806040838503121561215057612150600080fd5b823567ffffffffffffffff81111561216a5761216a600080fd5b61217685828601612110565b925050602083013567ffffffffffffffff81111561219657612196600080fd5b6121a285828601612125565b9150509250929050565b6000602082840312156121c1576121c1600080fd5b813567ffffffffffffffff8111156121db576121db600080fd5b611dc784828501611c14565b801515611afe565b8035611452816121e7565b600080600080600060a0868803121561221557612215600080fd5b61221f8787611b09565b945061222e8760208801611b09565b9350604086013567ffffffffffffffff81111561224d5761224d600080fd5b61225988828901611ac1565b935050606086013567ffffffffffffffff81111561227957612279600080fd5b61228588828901611ac1565b92505061229587608088016121ef565b90509295509295909350565b600080602083850312156122b7576122b7600080fd5b823567ffffffffffffffff8111156122d1576122d1600080fd5b6122dd85828601611c37565b92509250509250929050565b60006122f3825190565b612301818560208601611ed6565b9290920192915050565b61145281836122e9565b634e487b7160e01b600052602260045260246000fd5b60028104600182168061233f57607f821691505b602082108103611e1a57611e1a612315565b60006114526120d48381565b61236683612351565b815460001960089490940293841b1916921b91909117905550565b600061238e81848461235d565b505050565b818110156104af576123a6600082612381565b600101612393565b601f82111561238e576000818152602090206020601f850104810160208510156123d55750805b610eed6020601f860104830182612393565b815167ffffffffffffffff811115612401576124016119ec565b61240b825461232b565b6124168282856123ae565b506020601f82116001811461244b57600083156124335750848201515b600019600885021c1981166002850217855550610eed565b600084815260208120601f198516915b8281101561247b578785015182556020948501946001909201910161245b565b50848210156124985783870151600019601f87166008021c191681555b50505050600202600101905550565b604080825281016124b88185611efa565b9050611aba6020830184611dcf565b600e8152602081017f496e76616c696420666f726b494400000000000000000000000000000000000081529050612026565b60208082528101611452816124c7565b6000612513825190565b8084526020840193508360208202850161252d8560200190565b60005b848110156120845783830388528151612549848261201a565b93505060208201602098909801979150600101612530565b6080810161256f82876119d6565b61257c60208301866119d6565b61258960408301856119d6565b818103606083015261259b8184612509565b9695505050505050565b60168152602081017f656e636c6176654944206e6f742061747465737465640000000000000000000081529050612026565b60208082528101611452816125a5565b634e487b7160e01b600052603260045260246000fd5b6000611452825190565b6000612611825190565b6020830161261e816125fd565b9250506020811015611e1a576000196020919091036008021b16919050565b6040810161264b82856119d6565b611aba60208301846119d6565b5060006114526020830183611b09565b5060006114526020830183611b6f565b67ffffffffffffffff8116611afe565b803561145281612678565b5060006114526020830183612688565b67ffffffffffffffff81166119d8565b6126bd8180612658565b6126c78382611dcf565b506126d56020820182612658565b6126e26020840182611dcf565b506126f06040820182612668565b6126fd60408401826119d6565b5061270b6060820182612693565b61238e60608401826126a3565b82818337505050565b81835260208301925060007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83111561275c5761275c600080fd5b60208302925061276d838584612718565b50500190565b60c0810161278182876126b3565b8181036080830152612794818587612721565b90506127a360a08301846119d6565b95945050505050565b6080810161145282846126b3565b60188152602081017f7769746864726177616c20616c7265616479207370656e74000000000000000081529050612026565b60208082528101611452816127ba565b6040810161264b8285611dcf565b60228152602081017f6e6574776f726b2073656372657420616c726561647920696e697469616c697a81527f6564000000000000000000000000000000000000000000000000000000000000602082015290505b60400190565b602080825281016114528161280a565b60198152602081017f656e636c6176654944206e6f7420612073657175656e6365720000000000000081529050612026565b6020808252810161145281612874565b600067ffffffffffffffff8216611452565b6119d8816128b6565b6020810161145282846128c8565b6000808335601e19368590030181126128fa576128fa600080fd5b8301915050803567ffffffffffffffff81111561291957612919600080fd5b602082019150600181023603821315611c8257611c82600080fd5b60238152602081017f726573706f6e64696e67206174746573746572206973206e6f7420617474657381527f74656400000000000000000000000000000000000000000000000000000000006020820152905061285e565b6020808252810161145281612934565b60006114528260601b90565b60006114528261299c565b6119d86129bf82611ae4565b6129a8565b6129ce81856129b3565b6014016129db81846129b3565b601401611dc781836122e9565b602c8152602081017f63616c63756c61746564206164647265737320616e642061747465737465724981527f4420646f6e74206d6174636800000000000000000000000000000000000000006020820152905061285e565b60208082528101611452816129e8565b6000813561145281611b69565b600081611452565b612a6e82612a5d565b612a7a6120d482612a5d565b8255505050565b8267ffffffffffffffff811115612a9a57612a9a6119ec565b612aa4825461232b565b612aaf8282856123ae565b506000601f821160018114612ae45760008315612acc5750848201355b600019600885021c1981166002850217855550612b3e565b600084815260209020601f19841690835b82811015612b155787850135825560209485019460019092019101612af5565b5084821015612b32576000196008601f8716021c19878501351681555b50506001600284020184555b505050505050565b61238e838383612a81565b612b5a82612351565b80612a7a565b8180612b6b81612a50565b9050612b778184612a65565b5050612b8660208301836128df565b612b94818360018601612b46565b50506040820180612ba482612a50565b9050610d138160028501612b51565b6104af8282612b60565b634e487b7160e01b600052601160045260246000fd5b8181038181111561145257611452612bbd565b600060018201612bf857612bf8612bbd565b5060010190565b7f19457468657265756d205369676e6564204d6573736167653a0a0000000000008152601a01612c2f81846122e9565b9050611aba81836122e9565b634e487b7160e01b600052602160045260246000fd5b60ff81166119d8565b60808101612c6882876119d6565b612c756020830186612c51565b612c8260408301856119d6565b6127a360608301846119d656fe608060405234801561001057600080fd5b5061001a33610027565b610022610098565b61014a565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100e85760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101475780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6123c3806101596000396000f3fe6080604052600436106100ec5760003560e01c80638da5cb5b1161008a578063b201246f11610059578063b201246f14610311578063b6aed0cb14610331578063e138a8d214610351578063f2fde38b1461037157610160565b80638da5cb5b1461026c5780639730886d146102b157806399a3ad21146102d1578063b1454caa146102f157610160565b8063346633fb116100c6578063346633fb1461020457806336d2da9014610217578063485cc95514610237578063715018a61461025757610160565b80630fcfbd11146101815780630fe9188e146101b757806333a88c72146101d757610160565b36610160576040517f346633fb000000000000000000000000000000000000000000000000000000008152309063346633fb9034906101319033908390600401611141565b6000604051808303818588803b15801561014a57600080fd5b505af115801561015e573d6000803e3d6000fd5b005b60405162461bcd60e51b815260040161017890611190565b60405180910390fd5b34801561018d57600080fd5b506101a161019c3660046111bb565b610391565b6040516101ae91906111f6565b60405180910390f35b3480156101c357600080fd5b5061015e6101d236600461121c565b6103f0565b3480156101e357600080fd5b506101f76101f23660046111bb565b610436565b6040516101ae9190611243565b61015e610212366004611265565b610488565b34801561022357600080fd5b5061015e61023236600461129d565b6105d7565b34801561024357600080fd5b5061015e6102523660046112bc565b610656565b34801561026357600080fd5b5061015e6107c1565b34801561027857600080fd5b507f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b03166040516101ae91906112eb565b3480156102bd57600080fd5b5061015e6102cc3660046112f9565b6107d5565b3480156102dd57600080fd5b5061015e6102ec366004611265565b610941565b6103046102ff3660046113c2565b6109c1565b6040516101ae919061144f565b34801561031d57600080fd5b5061015e61032c3660046114bd565b610ac9565b34801561033d57600080fd5b5061015e61034c366004611528565b610bca565b34801561035d57600080fd5b5061015e61036c366004611548565b610c10565b34801561037d57600080fd5b5061015e61038c36600461129d565b610d5b565b600080826040516020016103a59190611764565b60408051601f198184030181529181528151602092830120600081815292839052912054909150806103e95760405162461bcd60e51b8152600401610178906117b3565b9392505050565b6103f8610db2565b60008181526004602052604081205490036104255760405162461bcd60e51b8152600401610178906117f5565b600090815260046020526040812055565b6000808260405160200161044a9190611764565b60408051601f19818403018152918152815160209283012060008181529283905291205490915080158015906104805750428111155b949350505050565b60003411801561049757508034145b6104b35760405162461bcd60e51b81526004016101789061185d565b60035434906001600160a01b0316156105775760006104d0610e26565b9050803410156104f25760405162461bcd60e51b81526004016101789061189d565b6104fc81346118c3565b6003546040519193506000916001600160a01b039091169083908381818185875af1925050503d806000811461054e576040519150601f19603f3d011682016040523d82523d6000602084013e610553565b606091505b50509050806105745760405162461bcd60e51b81526004016101789061192e565b50505b600061058233610eb7565b9050836001600160a01b0316336001600160a01b03167f50c536ac33a920f00755865b831d17bf4cff0b2e0345f65b16d52bfc004068b684846040516105c992919061193e565b60405180910390a350505050565b6105df610db2565b6000816001600160a01b03164760405160006040518083038185875af1925050503d806000811461062c576040519150601f19603f3d011682016040523d82523d6000602084013e610631565b606091505b50509050806106525760405162461bcd60e51b81526004016101789061198b565b5050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff166000811580156106a15750825b905060008267ffffffffffffffff1660011480156106be5750303b155b9050811580156106cc575080155b15610703576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561073757845468ff00000000000000001916680100000000000000001785555b61074087610f15565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03881617905583156107b857845468ff0000000000000000191685556040517fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906107af906001906119bf565b60405180910390a15b50505050505050565b6107c9610db2565b6107d36000610f26565b565b60006107e26001306119cd565b90506108157f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b0316336001600160a01b0316148061083c5750336001600160a01b038216145b6108585760405162461bcd60e51b815260040161017890611a22565b60006108648342611a32565b90506000846040516020016108799190611764565b60408051601f198184030181529181528151602092830120600081815292839052912054909150156108bd5760405162461bcd60e51b815260040161017890611a9d565b6000818152602081815260408220849055600191906108de9088018861129d565b6001600160a01b03168152602081019190915260400160009081209061090a6080880160608901611aad565b63ffffffff168152602080820192909252604001600090812080546001810182559082529190208691600402016107b88282611eeb565b610949610db2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610996576040519150601f19603f3d011682016040523d82523d6000602084013e61099b565b606091505b50509050806109bc5760405162461bcd60e51b81526004016101789061198b565b505050565b6003546000906001600160a01b031615610a72576109de83610fa4565b3410156109fd5760405162461bcd60e51b815260040161017890611f4d565b6003546040516000916001600160a01b03169034908381818185875af1925050503d8060008114610a4a576040519150601f19603f3d011682016040523d82523d6000602084013e610a4f565b606091505b5050905080610a705760405162461bcd60e51b81526004016101789061192e565b505b610a7b33610eb7565b90507fb93c37389233beb85a3a726c3f15c2d15533ee74cb602f20f490dfffef77593733828888888888604051610ab89796959493929190611f5d565b60405180910390a195945050505050565b6000818152600460205260408120549003610af65760405162461bcd60e51b815260040161017890612018565b600081815260046020526040902054421015610b245760405162461bcd60e51b815260040161017890612064565b600084604051602001610b3791906120e9565b60405160208183030381529060405280519060200120604051602001610b5d9190612129565b604051602081830303815290604052805190602001209050610ba784848484604051602001610b8c9190612148565b60405160208183030381529060405280519060200120611026565b610bc35760405162461bcd60e51b8152600401610178906121b2565b5050505050565b610bd2610db2565b60008281526004602052604090205415610bfe5760405162461bcd60e51b81526004016101789061221a565b60009182526004602052604090912055565b6000818152600460205260408120549003610c3d5760405162461bcd60e51b815260040161017890612018565b600081815260046020526040902054421015610c6b5760405162461bcd60e51b815260040161017890612064565b6000610c7a602086018661129d565b610c8a604087016020880161222a565b610c9a6060880160408901611aad565b610caa6080890160608a01611aad565b610cb760808a018a611c04565b610cc760c08c0160a08d01612249565b604051602001610cdd9796959493929190611f5d565b604051602081830303815290604052805190602001209050600081604051602001610d08919061229a565b604051602081830303815290604052805190602001209050610d3785858584604051602001610b8c9190612148565b610d535760405162461bcd60e51b815260040161017890612302565b505050505050565b610d63610db2565b6001600160a01b038116610da65760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161017891906112eb565b610daf81610f26565b50565b33610de47f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b0316146107d357336040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161017891906112eb565b6003546040517ff1d44d510000000000000000000000000000000000000000000000000000000081526000916001600160a01b03169063f1d44d5190610e719060209060040161231b565b602060405180830381865afa158015610e8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb29190612334565b905090565b6001600160a01b0381166000908152600260205260408120805467ffffffffffffffff169160019190610eea8385612353565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550919050565b610f1d61103e565b610daf816110a5565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300805473ffffffffffffffffffffffffffffffffffffffff1981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b6003546000906001600160a01b031663f1d44d51610fc3601185611a32565b6040518263ffffffff1660e01b8152600401610fdf91906111f6565b602060405180830381865afa158015610ffc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110209190612334565b92915050565b6000826110348686856110ad565b1495945050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff166107d3576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d6361103e565b600081815b848110156110e6576110dc828787848181106110d0576110d0612377565b905060200201356110ef565b91506001016110b2565b50949350505050565b600081831061110b5760008281526020849052604090206103e9565b5060009182526020526040902090565b60006001600160a01b038216611020565b6111358161111b565b82525050565b80611135565b6040810161114f828561112c565b6103e9602083018461113b565b600b8152602081017f756e737570706f72746564000000000000000000000000000000000000000000815290505b60200190565b602080825281016110208161115c565b600060c082840312156111b5576111b5600080fd5b50919050565b6000602082840312156111d0576111d0600080fd5b813567ffffffffffffffff8111156111ea576111ea600080fd5b610480848285016111a0565b60208101611020828461113b565b805b8114610daf57600080fd5b803561102081611204565b60006020828403121561123157611231600080fd5b6103e98383611211565b801515611135565b60208101611020828461123b565b6112068161111b565b803561102081611251565b6000806040838503121561127b5761127b600080fd5b611285848461125a565b91506112948460208501611211565b90509250929050565b6000602082840312156112b2576112b2600080fd5b6103e9838361125a565b600080604083850312156112d2576112d2600080fd5b6112dc848461125a565b9150611294846020850161125a565b60208101611020828461112c565b6000806040838503121561130f5761130f600080fd5b823567ffffffffffffffff81111561132957611329600080fd5b611335858286016111a0565b9250506112948460208501611211565b63ffffffff8116611206565b803561102081611345565b60008083601f84011261137157611371600080fd5b50813567ffffffffffffffff81111561138c5761138c600080fd5b6020830191508360018202830111156113a7576113a7600080fd5b9250929050565b60ff8116611206565b8035611020816113ae565b6000806000806000608086880312156113dd576113dd600080fd5b6113e78787611351565b94506113f68760208801611351565b9350604086013567ffffffffffffffff81111561141557611415600080fd5b6114218882890161135c565b935093505061143387606088016113b7565b90509295509295909350565b67ffffffffffffffff8116611135565b60208101611020828461143f565b6000608082840312156111b5576111b5600080fd5b60008083601f84011261148757611487600080fd5b50813567ffffffffffffffff8111156114a2576114a2600080fd5b6020830191508360208202830111156113a7576113a7600080fd5b60008060008060c085870312156114d6576114d6600080fd5b6114e0868661145d565b9350608085013567ffffffffffffffff8111156114ff576114ff600080fd5b61150b87828801611472565b935093505061151d8660a08701611211565b905092959194509250565b6000806040838503121561153e5761153e600080fd5b6112858484611211565b6000806000806060858703121561156157611561600080fd5b843567ffffffffffffffff81111561157b5761157b600080fd5b611587878288016111a0565b945050602085013567ffffffffffffffff8111156115a7576115a7600080fd5b6115b387828801611472565b935093505061151d8660408701611211565b506000611020602083018361125a565b67ffffffffffffffff8116611206565b8035611020816115d5565b50600061102060208301836115e5565b5060006110206020830183611351565b63ffffffff8116611135565b6000808335601e193685900301811261163757611637600080fd5b830160208101925035905067ffffffffffffffff81111561165a5761165a600080fd5b368190038213156113a7576113a7600080fd5b82818337506000910152565b81835260208301925061168d82848361166d565b50601f01601f19160190565b50600061102060208301836113b7565b60ff8116611135565b600060c083016116c283806115c5565b6116cc858261112c565b506116da60208401846115f0565b6116e7602086018261143f565b506116f56040840184611600565b6117026040860182611610565b506117106060840184611600565b61171d6060860182611610565b5061172b608084018461161c565b858303608087015261173e838284611679565b9250505061174f60a0840184611699565b61175c60a08601826116a9565b509392505050565b602080825281016103e981846116b2565b60218152602081017f54686973206d65737361676520776173206e65766572207375626d69747465648152601760f91b602082015290505b60400190565b6020808252810161102081611775565b601a8152602081017f537461746520726f6f7420646f6573206e6f742065786973742e0000000000008152905061118a565b60208082528101611020816117c3565b60308152602081017f417474656d7074696e6720746f2073656e642076616c756520776974686f757481527f2070726f766964696e6720457468657200000000000000000000000000000000602082015290506117ad565b6020808252810161102081611805565b60208082527f496e73756666696369656e742066756e647320746f2073656e642076616c7565910190815261118a565b602080825281016110208161186d565b634e487b7160e01b600052601160045260246000fd5b81810381811115611020576110206118ad565b60248152602081017f4661696c656420746f2073656e64206665657320746f206665657320636f6e7481527f7261637400000000000000000000000000000000000000000000000000000000602082015290506117ad565b60208082528101611020816118d6565b6040810161194c828561113b565b6103e9602083018461143f565b60148152602081017f6661696c65642073656e64696e672076616c75650000000000000000000000008152905061118a565b6020808252810161102081611959565b6000611020826119a9565b90565b67ffffffffffffffff1690565b6111358161199b565b6020810161102082846119b6565b6001600160a01b03918216919081169082820390811115611020576110206118ad565b60118152602081017f4e6f74206f776e6572206f722073656c660000000000000000000000000000008152905061118a565b60208082528101611020816119f0565b80820180821115611020576110206118ad565b60218152602081017f4d657373616765207375626d6974746564206d6f7265207468616e206f6e636581527f2100000000000000000000000000000000000000000000000000000000000000602082015290506117ad565b6020808252810161102081611a45565b600060208284031215611ac257611ac2600080fd5b6103e98383611351565b6000813561102081611251565b60006001600160a01b03835b81169019929092169190911792915050565b60006110208261111b565b600061102082611af7565b611b1682611b02565b611b21818354611ad9565b8255505050565b60008135611020816115d5565b60007bffffffffffffffff0000000000000000000000000000000000000000611ae58460a01b90565b600061102067ffffffffffffffff83166119a9565b611b7c82611b5e565b611b21818354611b35565b6000813561102081611345565b60007fffffffff00000000000000000000000000000000000000000000000000000000611ae58460e01b90565b600063ffffffff8216611020565b611bd882611bc1565b611b21818354611b94565b600063ffffffff83611ae5565b611bf982611bc1565b611b21818354611be3565b6000808335601e1936859003018112611c1f57611c1f600080fd5b8301915050803567ffffffffffffffff811115611c3e57611c3e600080fd5b6020820191506001810236038213156113a7576113a7600080fd5b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052602260045260246000fd5b600281046001821680611c9957607f821691505b6020821081036111b5576111b5611c6f565b60006110206119a68381565b611cc083611cab565b815460001960089490940293841b1916921b91909117905550565b60006109bc818484611cb7565b8181101561065257611cfb600082611cdb565b600101611ce8565b601f8211156109bc576000818152602090206020601f85010481016020851015611d2a5750805b610bc36020601f860104830182611ce8565b8267ffffffffffffffff811115611d5557611d55611c59565b611d5f8254611c85565b611d6a828285611d03565b506000601f821160018114611d9f5760008315611d875750848201355b600019600885021c1981166002850217855550610d53565b600084815260209020601f19841690835b82811015611dd05787850135825560209485019460019092019101611db0565b5084821015611ded576000196008601f8716021c19878501351681555b5050505060020260010190555050565b6109bc838383611d3c565b60008135611020816113ae565b600060ff8216611020565b611e2982611e15565b815460ff191660ff821617611b21565b808280611e4581611acc565b9050611e518184611b0d565b50506020830180611e6182611b28565b9050611e6d8184611b73565b50506040830180611e7d82611b87565b9050611e898184611bcf565b5050506060820180611e9a82611b87565b9050611ea98160018501611bf0565b5050611eb86080830183611c04565b611ec6818360028601611dfd565b505060a0820180611ed682611e08565b9050611ee58160038501611e20565b50505050565b6106528282611e39565b60258152602081017f496e73756666696369656e742066756e647320746f207075626c697368206d6581527f7373616765000000000000000000000000000000000000000000000000000000602082015290506117ad565b6020808252810161102081611ef5565b60c08101611f6b828a61112c565b611f78602083018961143f565b611f856040830188611610565b611f926060830187611610565b8181036080830152611fa5818587611679565b9050611fb460a08301846116a9565b98975050505050505050565b602a8152602081017f526f6f74206973206e6f74207075626c6973686564206f6e2074686973206d6581527f7373616765206275732e00000000000000000000000000000000000000000000602082015290506117ad565b6020808252810161102081611fc0565b60218152602081017f526f6f74206973206e6f7420636f6e736964657265642066696e616c207965748152601760f91b602082015290506117ad565b6020808252810161102081612028565b5060006110206020830183611211565b61208e81806115c5565b612098838261112c565b506120a660208201826115c5565b6120b3602084018261112c565b506120c16040820182612074565b6120ce604084018261113b565b506120dc60608201826115f0565b6109bc606084018261143f565b608081016110208284612084565b60018152602081017f76000000000000000000000000000000000000000000000000000000000000008152905061118a565b60408082528101612139816120f7565b9050611020602083018461113b565b612152818361113b565b602001919050565b60338152602081017f496e76616c696420696e636c7573696f6e2070726f6f6620666f722076616c7581527f65207472616e73666572206d6573736167652e00000000000000000000000000602082015290506117ad565b602080825281016110208161215a565b60258152602081017f526f6f7420616c726561647920616464656420746f20746865206d657373616781527f6520627573000000000000000000000000000000000000000000000000000000602082015290506117ad565b60208082528101611020816121c2565b60006020828403121561223f5761223f600080fd5b6103e983836115e5565b60006020828403121561225e5761225e600080fd5b6103e983836113b7565b60018152602081017f6d000000000000000000000000000000000000000000000000000000000000008152905061118a565b6040808252810161213981612268565b60308152602081017f496e76616c696420696e636c7573696f6e2070726f6f6620666f722063726f7381527f7320636861696e206d6573736167652e00000000000000000000000000000000602082015290506117ad565b60208082528101611020816122aa565b61113581611cab565b602081016110208284612312565b805161102081611204565b60006020828403121561234957612349600080fd5b6103e98383612329565b67ffffffffffffffff918216919081169082820190811115611020576110206118ad565b634e487b7160e01b600052603260045260246000fdfea26469706673582212205f0c1796be571837ef69dfd77006b06b112da38d22456c6adc83f344d4c840f664736f6c634300081c0033a2646970667358221220bf919d11e3f2868dcb2f168bbb2dc30a69241becfa3d4a8186f0f7ea6ffbf67864736f6c634300081c0033", + ABI: "[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"key\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"ImportantContractAddressUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"messageBusAddress\",\"type\":\"address\"}],\"name\":\"LogManagementContractCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"requester\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"requestReport\",\"type\":\"string\"}],\"name\":\"NetworkSecretRequested\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"attester\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"requester\",\"type\":\"address\"}],\"name\":\"NetworkSecretResponded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"rollupHash\",\"type\":\"bytes32\"}],\"name\":\"RollupAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"enclaveID\",\"type\":\"address\"}],\"name\":\"SequencerEnclaveGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"enclaveID\",\"type\":\"address\"}],\"name\":\"SequencerEnclaveRevoked\",\"type\":\"event\"},{\"inputs\":[{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"Hash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"Signature\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"LastSequenceNumber\",\"type\":\"uint256\"}],\"internalType\":\"structStructs.MetaRollup\",\"name\":\"r\",\"type\":\"tuple\"},{\"components\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"sequence\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"topic\",\"type\":\"uint32\"},{\"internalType\":\"bytes\",\"name\":\"payload\",\"type\":\"bytes\"},{\"internalType\":\"uint8\",\"name\":\"consistencyLevel\",\"type\":\"uint8\"}],\"internalType\":\"structStructs.CrossChainMessage[]\",\"name\":\"messages\",\"type\":\"tuple[]\"}],\"internalType\":\"structStructs.HeaderCrossChainData\",\"name\":\"\",\"type\":\"tuple\"}],\"name\":\"AddRollup\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_addr\",\"type\":\"address\"}],\"name\":\"Attested\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint64\",\"name\":\"sequence\",\"type\":\"uint64\"}],\"internalType\":\"structStructs.ValueTransferMessage\",\"name\":\"_msg\",\"type\":\"tuple\"},{\"internalType\":\"bytes32[]\",\"name\":\"proof\",\"type\":\"bytes32[]\"},{\"internalType\":\"bytes32\",\"name\":\"root\",\"type\":\"bytes32\"}],\"name\":\"ExtractNativeValue\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"GetImportantContractKeys\",\"outputs\":[{\"internalType\":\"string[]\",\"name\":\"\",\"type\":\"string[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"rollupHash\",\"type\":\"bytes32\"}],\"name\":\"GetRollupByHash\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"Hash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"Signature\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"LastSequenceNumber\",\"type\":\"uint256\"}],\"internalType\":\"structStructs.MetaRollup\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"number\",\"type\":\"uint256\"}],\"name\":\"GetRollupByNumber\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"Hash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"Signature\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"LastSequenceNumber\",\"type\":\"uint256\"}],\"internalType\":\"structStructs.MetaRollup\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"number\",\"type\":\"uint256\"}],\"name\":\"GetUniqueForkID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"Hash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"Signature\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"LastSequenceNumber\",\"type\":\"uint256\"}],\"internalType\":\"structStructs.MetaRollup\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_addr\",\"type\":\"address\"}],\"name\":\"GrantSequencerEnclave\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_enclaveID\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_initSecret\",\"type\":\"bytes\"},{\"internalType\":\"string\",\"name\":\"_genesisAttestation\",\"type\":\"string\"}],\"name\":\"InitializeNetworkSecret\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_addr\",\"type\":\"address\"}],\"name\":\"IsSequencerEnclave\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"IsWithdrawalAvailable\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"requestReport\",\"type\":\"string\"}],\"name\":\"RequestNetworkSecret\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"attesterID\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"requesterID\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"attesterSig\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"responseSecret\",\"type\":\"bytes\"},{\"internalType\":\"bool\",\"name\":\"verifyAttester\",\"type\":\"bool\"}],\"name\":\"RespondNetworkSecret\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"RetrieveAllBridgeFunds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_addr\",\"type\":\"address\"}],\"name\":\"RevokeSequencerEnclave\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"key\",\"type\":\"string\"},{\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"SetImportantContractAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_lastBatchHash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"blockHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"blockNum\",\"type\":\"uint256\"},{\"internalType\":\"bytes[]\",\"name\":\"crossChainHashes\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"rollupNumber\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"forkID\",\"type\":\"bytes32\"}],\"name\":\"addCrossChainMessagesRoot\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"name\":\"importantContractAddresses\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"importantContractKeys\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"crossChainHashes\",\"type\":\"bytes[]\"}],\"name\":\"isBundleAvailable\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"name\":\"isBundleSaved\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"name\":\"isWithdrawalSpent\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lastBatchHash\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lastBatchSeqNo\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"merkleMessageBus\",\"outputs\":[{\"internalType\":\"contractIMerkleTreeMessageBus\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"messageBus\",\"outputs\":[{\"internalType\":\"contractIMessageBus\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}]", + Bin: "0x6080604052348015600f57600080fd5b50601733601b565b608c565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b61528b8061009b6000396000f3fe608060405234801561001057600080fd5b50600436106101d95760003560e01c80638129fc1c11610104578063a25eb31c116100a2578063db5d91b111610071578063db5d91b114610475578063e34fbfc8146104a1578063e874eb20146104b4578063f2fde38b146104c757600080fd5b8063a25eb31c1461042c578063a4ab2faa1461043f578063a52f433c14610452578063d4fab8871461046257600080fd5b806387059edb116100de57806387059edb146103a95780638da5cb5b146103bc57806398077e86146103ec578063a1a227fa1461040c57600080fd5b80638129fc1c1461035d5780638236a7ba14610365578063841548261461038657600080fd5b8063476657381161017c5780636a30d26c1161014b5780636a30d26c146103255780636b9707d61461033a578063715018a61461034d578063728109961461035557600080fd5b806347665738146102cb5780635371a216146102de578063568699c8146102f157806368e103831461031257600080fd5b80632f0cb9e3116101b85780632f0cb9e3146102255780633e60a22f1461025557806343348b2f14610296578063440c953b146102c257600080fd5b80620ddd27146101de57806303e72e48146101fd578063073b6ef314610212575b600080fd5b6101e7600e5481565b6040516101f49190611a56565b60405180910390f35b61021061020b366004611b8c565b6104da565b005b610210610220366004611d01565b6105e2565b610248610233366004611dcf565b600c6020526000908152604090205460ff1681565b6040516101f49190611df6565b610289610263366004611e04565b80516020818301810180516003825292820191909301209152546001600160a01b031681565b6040516101f49190611e50565b6102486102a4366004611e5e565b6001600160a01b031660009081526020819052604090205460ff1690565b6101e760055481565b6102106102d9366004611e5e565b6107d9565b6102106102ec366004611ee3565b610879565b6103046102ff366004611dcf565b610a1e565b6040516101f4929190611fe5565b610210610320366004612005565b610a74565b61032d610b18565b6040516101f49190612108565b610210610348366004611e5e565b610bf1565b610210610c81565b610210610c95565b610210610d1a565b610378610373366004611dcf565b610ef5565b6040516101f4929190612119565b610248610394366004611dcf565b600d6020526000908152604090205460ff1681565b6103786103b7366004611dcf565b610fdd565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b0316610289565b6103ff6103fa366004611dcf565b611054565b6040516101f49190612127565b600a5461041f906001600160a01b031681565b6040516101f4919061217a565b61021061043a3660046121b2565b611100565b61024861044d366004612224565b611208565b600454610100900460ff16610248565b610210610470366004612272565b611286565b610248610483366004611e5e565b6001600160a01b031660009081526001602052604090205460ff1690565b6102106104af366004612319565b61138e565b600b5461041f906001600160a01b031681565b6102106104d5366004611e5e565b6113d5565b6104e261142c565b60006001600160a01b03166003836040516104fd9190612383565b908152604051908190036020019020546001600160a01b03160361055957600280546001810182556000919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01610557838261245f565b505b8060038360405161056a9190612383565b90815260405190819003602001812080546001600160a01b039390931673ffffffffffffffffffffffffffffffffffffffff19909316929092179091557f17b2f9f5748931099ffee882b5b64f4a560b5c55da9b4f4e396dae3bb9f98cb5906105d6908490849061251f565b60405180910390a15050565b60008281526008602052604090205481146106185760405162461bcd60e51b815260040161060f90612571565b60405180910390fd5b60006106868989898960405160200161063494939291906125d9565b6040516020818303038152906040528051906020012086868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506114a092505050565b6001600160a01b03811660009081526020819052604090205490915060ff166106c15760405162461bcd60e51b815260040161060f9061264f565b600e8990556000805b87518110156107b457600b5488516001600160a01b039091169063b6aed0cb908a90849081106106fc576106fc61265f565b602002602001015161070d9061267f565b426040518363ffffffff1660e01b815260040161072b9291906126b5565b600060405180830381600087803b15801561074557600080fd5b505af1158015610759573d6000803e3d6000fd5b50505050818882815181106107705761077061265f565b60200260200101516107819061267f565b6040516020016107929291906126b5565b60408051601f19818403018152919052805160209091012091506001016106ca565b506000908152600d60205260409020805460ff19166001179055505050505050505050565b6107e161142c565b6001600160a01b03811660009081526020819052604090205460ff166108195760405162461bcd60e51b815260040161060f9061264f565b6001600160a01b038116600090815260016020819052604091829020805460ff19169091179055517ffe64c7181f0fc60e300dc02cca368cdfa94d7ca45902de3b9a9d80070e7609369061086e908390611e50565b60405180910390a150565b600b546040517fb201246f0000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063b201246f906108c89087908790879087906004016127eb565b60006040518083038186803b1580156108e057600080fd5b505afa1580156108f4573d6000803e3d6000fd5b5050505060008460405160200161090b9190612824565b60408051601f1981840301815291815281516020928301206000818152600c90935291205490915060ff16156109535760405162461bcd60e51b815260040161060f90612864565b6001600c60008760405160200161096a9190612824565b60408051808303601f190181529181528151602092830120835282820193909352908201600020805460ff191693151593909317909255600a546001600160a01b0316916399a3ad21916109c391908901908901611e5e565b87604001356040518363ffffffff1660e01b81526004016109e5929190612874565b600060405180830381600087803b1580156109ff57600080fd5b505af1158015610a13573d6000803e3d6000fd5b505050505050505050565b604080516060808201835260008083526020830191909152918101829052600080610a4885610fdd565b9150915081610a5d5760009590945092505050565b600094855260086020526040909420549492505050565b60045460ff1615610a975760405162461bcd60e51b815260040161060f906128dc565b60048054600160ff1991821681179092556001600160a01b0387166000908152602081815260408083208054851686179055908490529081902080549092169092179055517ffe64c7181f0fc60e300dc02cca368cdfa94d7ca45902de3b9a9d80070e76093690610b09908790611e50565b60405180910390a15050505050565b60606002805480602002602001604051908101604052809291908181526020016000905b82821015610be8578382906000526020600020018054610b5b906123a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b87906123a3565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b505050505081526020019060010190610b3c565b50505050905090565b610bf961142c565b6001600160a01b03811660009081526001602052604090205460ff16610c315760405162461bcd60e51b815260040161060f9061291e565b6001600160a01b03811660009081526001602052604090819020805460ff19169055517f0f279980343c7ca542fde9fa5396555068efb5cd560d9cf9c191aa2911079b479061086e908390611e50565b610c8961142c565b610c9360006114cc565b565b610c9d61142c565b600a546040517f36d2da900000000000000000000000000000000000000000000000000000000081526001600160a01b03909116906336d2da9090610ce6903390600401611e50565b600060405180830381600087803b158015610d0057600080fd5b505af1158015610d14573d6000803e3d6000fd5b50505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff16600081158015610d655750825b905060008267ffffffffffffffff166001148015610d825750303b155b905081158015610d90575080155b15610dc7576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610dfb57845468ff00000000000000001916680100000000000000001785555b610e043361154a565b60006005556001600955604051610e1a90611a41565b604051809103906000f080158015610e36573d6000803e3d6000fd5b50600b80546001600160a01b039290921673ffffffffffffffffffffffffffffffffffffffff199283168117909155600a805490921681179091556040517fbd726cf82ac9c3260b1495107182e336e0654b25c10915648c0cc15b2bb72cbf91610e9f91611e50565b60405180910390a18315610eee57845468ff0000000000000000191685556040517fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290610b0990600190612949565b5050505050565b604080516060808201835260008083526020808401839052838501829052858252600681528482208551938401909552845483526001850180549295869493909284019190610f43906123a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6f906123a3565b8015610fbc5780601f10610f9157610100808354040283529160200191610fbc565b820191906000526020600020905b815481529060010190602001808311610f9f57829003601f168201915b50505091835250506002919091015460209091015280519094149492505050565b6040805160608082018352600080835260208301919091529181018290526000838152600760205260408120549081900361104157505060408051606081018252600080825282516020818101855282825283015291810182905290939092509050565b61104a81610ef5565b9250925050915091565b6002818154811061106457600080fd5b90600052602060002001600091509050805461107f906123a3565b80601f01602080910402602001604051908101604052809291908181526020018280546110ab906123a3565b80156110f85780601f106110cd576101008083540402835291602001916110f8565b820191906000526020600020905b8154815290600101906020018083116110db57829003601f168201915b505050505081565b600061114e83356111146020860186612957565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506114a092505050565b6001600160a01b03811660009081526020819052604090205490915060ff166111895760405162461bcd60e51b815260040161060f9061264f565b6001600160a01b03811660009081526001602052604090205460ff166111c15760405162461bcd60e51b815260040161060f9061291e565b6111ca8361155b565b6040517fd6555bff8670bd3008dc064c30bb56d6ac7cb14ae801e36146fe4e7c6a504a58906111fb90853590611a56565b60405180910390a1505050565b600080805b835181101561126d57818482815181106112295761122961265f565b602002602001015161123a9061267f565b60405160200161124b9291906126b5565b60408051601f198184030181529190528051602090910120915060010161120d565b506000908152600d602052604090205460ff1692915050565b6001600160a01b03851660009081526020819052604090205460ff16806112bf5760405162461bcd60e51b815260040161060f90612a04565b81156113375760006112f38787866040516020016112df93929190612a3c565b6040516020818303038152906040526115ff565b9050600061130182876114a0565b9050876001600160a01b0316816001600160a01b0316146113345760405162461bcd60e51b815260040161060f90612ab8565b50505b6001600160a01b03808616600081815260208190526040808220805460ff191660011790555191928916917fb869e23ebc7c717d76e345eee8ec282612603e45c44f7ae5494b197c8d9d1be19190a3505050505050565b336001600160a01b03167f0b0ecdedd12079aa2d6c5e0186026c711cb0c8d04f1b724ba5880fb6328d430183836040516113c9929190612ae8565b60405180910390a25050565b6113dd61142c565b6001600160a01b0381166114205760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161060f9190611e50565b611429816114cc565b50565b3361145e7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b031614610c9357336040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161060f9190611e50565b6000806000806114b0868661163a565b9250925092506114c08282611687565b50909150505b92915050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300805473ffffffffffffffffffffffffffffffffffffffff1981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b61155261178d565b611429816117f4565b8035600090815260066020526040902081906115778282612c5d565b5050600954600090815260076020526040902081359081905561159b600143612c7d565b406040516020016115ad9291906126b5565b60408051601f1981840301815291815281516020928301206009805460009081526008909452918320558054916115e383612c90565b9190505550600554816040013511156114295760400135600555565b600061160b82516117fc565b8260405160200161161d929190612ca9565b604051602081830303815290604052805190602001209050919050565b600080600083516041036116745760208401516040850151606086015160001a6116668882858561189d565b955095509550505050611680565b50508151600091506002905b9250925092565b600082600381111561169b5761169b612ce5565b036116a4575050565b60018260038111156116b8576116b8612ce5565b036116ef576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600282600381111561170357611703612ce5565b0361173c576040517ffce698f700000000000000000000000000000000000000000000000000000000815261060f908290600401611a56565b600382600381111561175057611750612ce5565b0361178957806040517fd78bce0c00000000000000000000000000000000000000000000000000000000815260040161060f9190611a56565b5050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16610c93576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113dd61178d565b606060006118098361195f565b600101905060008167ffffffffffffffff81111561182957611829611a64565b6040519080825280601f01601f191660200182016040528015611853576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461185d575b509392505050565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411156118d85750600091506003905082611955565b6000600188888888604051600081526020016040526040516118fd9493929190612d04565b6020604051602081039080840390855afa15801561191f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661194b57506000925060019150829050611955565b9250600091508190505b9450945094915050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106119a8577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106119d4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106119f257662386f26fc10000830492506010015b6305f5e1008310611a0a576305f5e100830492506008015b6127108310611a1e57612710830492506004015b60648310611a30576064830492506002015b600a83106114c65760010192915050565b61251c80612d3a83390190565b805b82525050565b602081016114c68284611a4e565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715611aa057611aa0611a64565b6040525050565b6000611ab260405190565b9050611abe8282611a7a565b919050565b600067ffffffffffffffff821115611add57611add611a64565b601f19601f83011660200192915050565b82818337506000910152565b6000611b0d611b0884611ac3565b611aa7565b9050828152838383011115611b2457611b24600080fd5b611b32836020830184611aee565b9392505050565b600082601f830112611b4d57611b4d600080fd5b611b3283833560208501611afa565b60006001600160a01b0382166114c6565b611b7681611b5c565b811461142957600080fd5b80356114c681611b6d565b60008060408385031215611ba257611ba2600080fd5b823567ffffffffffffffff811115611bbc57611bbc600080fd5b611bc885828601611b39565b925050611bd88460208501611b81565b90509250929050565b80611b76565b80356114c681611be1565b600067ffffffffffffffff821115611c0c57611c0c611a64565b5060209081020190565b6000611c24611b0884611bf2565b83815290506020808201908402830185811115611c4357611c43600080fd5b835b81811015611c8257803567ffffffffffffffff811115611c6757611c67600080fd5b611c7388828801611b39565b84525060209283019201611c45565b5050509392505050565b600082601f830112611ca057611ca0600080fd5b611b3283833560208501611c16565b60008083601f840112611cc457611cc4600080fd5b50813567ffffffffffffffff811115611cdf57611cdf600080fd5b602083019150836001820283011115611cfa57611cfa600080fd5b9250929050565b60008060008060008060008060e0898b031215611d2057611d20600080fd5b611d2a8a8a611be7565b9750611d398a60208b01611be7565b9650611d488a60408b01611be7565b9550606089013567ffffffffffffffff811115611d6757611d67600080fd5b611d738b828c01611c8c565b955050608089013567ffffffffffffffff811115611d9357611d93600080fd5b611d9f8b828c01611caf565b9450945050611db18a60a08b01611be7565b9150611dc08a60c08b01611be7565b90509295985092959890939650565b600060208284031215611de457611de4600080fd5b611b328383611be7565b801515611a50565b602081016114c68284611dee565b600060208284031215611e1957611e19600080fd5b813567ffffffffffffffff811115611e3357611e33600080fd5b611e3f84828501611b39565b949350505050565b611a5081611b5c565b602081016114c68284611e47565b600060208284031215611e7357611e73600080fd5b611b328383611b81565b600060808284031215611e9257611e92600080fd5b50919050565b60008083601f840112611ead57611ead600080fd5b50813567ffffffffffffffff811115611ec857611ec8600080fd5b602083019150836020820283011115611cfa57611cfa600080fd5b60008060008060c08587031215611efc57611efc600080fd5b611f068686611e7d565b9350608085013567ffffffffffffffff811115611f2557611f25600080fd5b611f3187828801611e98565b9350935050611f438660a08701611be7565b905092959194509250565b60005b83811015611f69578181015183820152602001611f51565b50506000910152565b6000611f7c825190565b808452602084019350611f93818560208601611f4e565b601f01601f19169290920192915050565b80516000906060840190611fb88582611a4e565b5060208301518482036020860152611fd08282611f72565b91505060408301516118956040860182611a4e565b60408101611ff38285611a4e565b8181036020830152611e3f8184611fa4565b60008060008060006060868803121561202057612020600080fd5b61202a8787611b81565b9450602086013567ffffffffffffffff81111561204957612049600080fd5b61205588828901611caf565b9450945050604086013567ffffffffffffffff81111561207757612077600080fd5b61208388828901611caf565b92509250509295509295909350565b6000611b328383611f72565b60200190565b60006120ae825190565b808452602084019350836020820285016120c88560200190565b60005b848110156120fc57838303885281516120e48482612092565b935050602082016020989098019791506001016120cb565b50909695505050505050565b60208082528101611b3281846120a4565b60408101611ff38285611dee565b60208082528101611b328184611f72565b60006114c66001600160a01b03831661214f565b90565b6001600160a01b031690565b60006114c682612138565b60006114c68261215b565b611a5081612166565b602081016114c68284612171565b600060608284031215611e9257611e92600080fd5b600060208284031215611e9257611e92600080fd5b600080604083850312156121c8576121c8600080fd5b823567ffffffffffffffff8111156121e2576121e2600080fd5b6121ee85828601612188565b925050602083013567ffffffffffffffff81111561220e5761220e600080fd5b61221a8582860161219d565b9150509250929050565b60006020828403121561223957612239600080fd5b813567ffffffffffffffff81111561225357612253600080fd5b611e3f84828501611c8c565b801515611b76565b80356114c68161225f565b600080600080600060a0868803121561228d5761228d600080fd5b6122978787611b81565b94506122a68760208801611b81565b9350604086013567ffffffffffffffff8111156122c5576122c5600080fd5b6122d188828901611b39565b935050606086013567ffffffffffffffff8111156122f1576122f1600080fd5b6122fd88828901611b39565b92505061230d8760808801612267565b90509295509295909350565b6000806020838503121561232f5761232f600080fd5b823567ffffffffffffffff81111561234957612349600080fd5b61235585828601611caf565b92509250509250929050565b600061236b825190565b612379818560208601611f4e565b9290920192915050565b6114c68183612361565b634e487b7160e01b600052602260045260246000fd5b6002810460018216806123b757607f821691505b602082108103611e9257611e9261238d565b60006114c661214c8381565b6123de836123c9565b815460001960089490940293841b1916921b91909117905550565b60006124068184846123d5565b505050565b818110156117895761241e6000826123f9565b60010161240b565b601f821115612406576000818152602090206020601f8501048101602085101561244d5750805b610eee6020601f86010483018261240b565b815167ffffffffffffffff81111561247957612479611a64565b61248382546123a3565b61248e828285612426565b506020601f8211600181146124c357600083156124ab5750848201515b600019600885021c1981166002850217855550610eee565b600084815260208120601f198516915b828110156124f357878501518255602094850194600190920191016124d3565b50848210156125105783870151600019601f87166008021c191681555b50505050600202600101905550565b604080825281016125308185611f72565b9050611b326020830184611e47565b600e8152602081017f496e76616c696420666f726b49440000000000000000000000000000000000008152905061209e565b602080825281016114c68161253f565b600061258b825190565b808452602084019350836020820285016125a58560200190565b60005b848110156120fc57838303885281516125c18482612092565b935050602082016020989098019791506001016125a8565b608081016125e78287611a4e565b6125f46020830186611a4e565b6126016040830185611a4e565b81810360608301526126138184612581565b9695505050505050565b60168152602081017f656e636c6176654944206e6f74206174746573746564000000000000000000008152905061209e565b602080825281016114c68161261d565b634e487b7160e01b600052603260045260246000fd5b60006114c6825190565b6000612689825190565b6020830161269681612675565b9250506020811015611e92576000196020919091036008021b16919050565b604081016126c38285611a4e565b611b326020830184611a4e565b5060006114c66020830183611b81565b5060006114c66020830183611be7565b67ffffffffffffffff8116611b76565b80356114c6816126f0565b5060006114c66020830183612700565b67ffffffffffffffff8116611a50565b61273581806126d0565b61273f8382611e47565b5061274d60208201826126d0565b61275a6020840182611e47565b5061276860408201826126e0565b6127756040840182611a4e565b50612783606082018261270b565b612406606084018261271b565b82818337505050565b81835260208301925060007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8311156127d4576127d4600080fd5b6020830292506127e5838584612790565b50500190565b60c081016127f9828761272b565b818103608083015261280c818587612799565b905061281b60a0830184611a4e565b95945050505050565b608081016114c6828461272b565b60188152602081017f7769746864726177616c20616c7265616479207370656e7400000000000000008152905061209e565b602080825281016114c681612832565b604081016126c38285611e47565b60228152602081017f6e6574776f726b2073656372657420616c726561647920696e697469616c697a81527f6564000000000000000000000000000000000000000000000000000000000000602082015290505b60400190565b602080825281016114c681612882565b60198152602081017f656e636c6176654944206e6f7420612073657175656e636572000000000000008152905061209e565b602080825281016114c6816128ec565b600067ffffffffffffffff82166114c6565b611a508161292e565b602081016114c68284612940565b6000808335601e193685900301811261297257612972600080fd5b8301915050803567ffffffffffffffff81111561299157612991600080fd5b602082019150600181023603821315611cfa57611cfa600080fd5b60238152602081017f726573706f6e64696e67206174746573746572206973206e6f7420617474657381527f7465640000000000000000000000000000000000000000000000000000000000602082015290506128d6565b602080825281016114c6816129ac565b60006114c68260601b90565b60006114c682612a14565b611a50612a3782611b5c565b612a20565b612a468185612a2b565b601401612a538184612a2b565b601401611e3f8183612361565b602c8152602081017f63616c63756c61746564206164647265737320616e642061747465737465724981527f4420646f6e74206d617463680000000000000000000000000000000000000000602082015290506128d6565b602080825281016114c681612a60565b818352602083019250612adc828483611aee565b50601f01601f19160190565b60208082528101611e3f818486612ac8565b600081356114c681611be1565b6000816114c6565b612b1882612b07565b612b2461214c82612b07565b8255505050565b8267ffffffffffffffff811115612b4457612b44611a64565b612b4e82546123a3565b612b59828285612426565b506000601f821160018114612b8e5760008315612b765750848201355b600019600885021c1981166002850217855550612be8565b600084815260209020601f19841690835b82811015612bbf5787850135825560209485019460019092019101612b9f565b5084821015612bdc576000196008601f8716021c19878501351681555b50506001600284020184555b505050505050565b612406838383612b2b565b612c04826123c9565b80612b24565b8180612c1581612afa565b9050612c218184612b0f565b5050612c306020830183612957565b612c3e818360018601612bf0565b50506040820180612c4e82612afa565b9050610d148160028501612bfb565b6117898282612c0a565b634e487b7160e01b600052601160045260246000fd5b818103818111156114c6576114c6612c67565b600060018201612ca257612ca2612c67565b5060010190565b7f19457468657265756d205369676e6564204d6573736167653a0a0000000000008152601a01612cd98184612361565b9050611b328183612361565b634e487b7160e01b600052602160045260246000fd5b60ff8116611a50565b60808101612d128287611a4e565b612d1f6020830186612cfb565b612d2c6040830185611a4e565b61281b6060830184611a4e56fe608060405234801561001057600080fd5b5061001a33610027565b610022610098565b61014a565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100e85760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101475780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6123c3806101596000396000f3fe6080604052600436106100ec5760003560e01c80638da5cb5b1161008a578063b201246f11610059578063b201246f14610311578063b6aed0cb14610331578063e138a8d214610351578063f2fde38b1461037157610160565b80638da5cb5b1461026c5780639730886d146102b157806399a3ad21146102d1578063b1454caa146102f157610160565b8063346633fb116100c6578063346633fb1461020457806336d2da9014610217578063485cc95514610237578063715018a61461025757610160565b80630fcfbd11146101815780630fe9188e146101b757806333a88c72146101d757610160565b36610160576040517f346633fb000000000000000000000000000000000000000000000000000000008152309063346633fb9034906101319033908390600401611141565b6000604051808303818588803b15801561014a57600080fd5b505af115801561015e573d6000803e3d6000fd5b005b60405162461bcd60e51b815260040161017890611190565b60405180910390fd5b34801561018d57600080fd5b506101a161019c3660046111bb565b610391565b6040516101ae91906111f6565b60405180910390f35b3480156101c357600080fd5b5061015e6101d236600461121c565b6103f0565b3480156101e357600080fd5b506101f76101f23660046111bb565b610436565b6040516101ae9190611243565b61015e610212366004611265565b610488565b34801561022357600080fd5b5061015e61023236600461129d565b6105d7565b34801561024357600080fd5b5061015e6102523660046112bc565b610656565b34801561026357600080fd5b5061015e6107c1565b34801561027857600080fd5b507f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b03166040516101ae91906112eb565b3480156102bd57600080fd5b5061015e6102cc3660046112f9565b6107d5565b3480156102dd57600080fd5b5061015e6102ec366004611265565b610941565b6103046102ff3660046113c2565b6109c1565b6040516101ae919061144f565b34801561031d57600080fd5b5061015e61032c3660046114bd565b610ac9565b34801561033d57600080fd5b5061015e61034c366004611528565b610bca565b34801561035d57600080fd5b5061015e61036c366004611548565b610c10565b34801561037d57600080fd5b5061015e61038c36600461129d565b610d5b565b600080826040516020016103a59190611764565b60408051601f198184030181529181528151602092830120600081815292839052912054909150806103e95760405162461bcd60e51b8152600401610178906117b3565b9392505050565b6103f8610db2565b60008181526004602052604081205490036104255760405162461bcd60e51b8152600401610178906117f5565b600090815260046020526040812055565b6000808260405160200161044a9190611764565b60408051601f19818403018152918152815160209283012060008181529283905291205490915080158015906104805750428111155b949350505050565b60003411801561049757508034145b6104b35760405162461bcd60e51b81526004016101789061185d565b60035434906001600160a01b0316156105775760006104d0610e26565b9050803410156104f25760405162461bcd60e51b81526004016101789061189d565b6104fc81346118c3565b6003546040519193506000916001600160a01b039091169083908381818185875af1925050503d806000811461054e576040519150601f19603f3d011682016040523d82523d6000602084013e610553565b606091505b50509050806105745760405162461bcd60e51b81526004016101789061192e565b50505b600061058233610eb7565b9050836001600160a01b0316336001600160a01b03167f50c536ac33a920f00755865b831d17bf4cff0b2e0345f65b16d52bfc004068b684846040516105c992919061193e565b60405180910390a350505050565b6105df610db2565b6000816001600160a01b03164760405160006040518083038185875af1925050503d806000811461062c576040519150601f19603f3d011682016040523d82523d6000602084013e610631565b606091505b50509050806106525760405162461bcd60e51b81526004016101789061198b565b5050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff166000811580156106a15750825b905060008267ffffffffffffffff1660011480156106be5750303b155b9050811580156106cc575080155b15610703576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561073757845468ff00000000000000001916680100000000000000001785555b61074087610f15565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03881617905583156107b857845468ff0000000000000000191685556040517fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906107af906001906119bf565b60405180910390a15b50505050505050565b6107c9610db2565b6107d36000610f26565b565b60006107e26001306119cd565b90506108157f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b0316336001600160a01b0316148061083c5750336001600160a01b038216145b6108585760405162461bcd60e51b815260040161017890611a22565b60006108648342611a32565b90506000846040516020016108799190611764565b60408051601f198184030181529181528151602092830120600081815292839052912054909150156108bd5760405162461bcd60e51b815260040161017890611a9d565b6000818152602081815260408220849055600191906108de9088018861129d565b6001600160a01b03168152602081019190915260400160009081209061090a6080880160608901611aad565b63ffffffff168152602080820192909252604001600090812080546001810182559082529190208691600402016107b88282611eeb565b610949610db2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610996576040519150601f19603f3d011682016040523d82523d6000602084013e61099b565b606091505b50509050806109bc5760405162461bcd60e51b81526004016101789061198b565b505050565b6003546000906001600160a01b031615610a72576109de83610fa4565b3410156109fd5760405162461bcd60e51b815260040161017890611f4d565b6003546040516000916001600160a01b03169034908381818185875af1925050503d8060008114610a4a576040519150601f19603f3d011682016040523d82523d6000602084013e610a4f565b606091505b5050905080610a705760405162461bcd60e51b81526004016101789061192e565b505b610a7b33610eb7565b90507fb93c37389233beb85a3a726c3f15c2d15533ee74cb602f20f490dfffef77593733828888888888604051610ab89796959493929190611f5d565b60405180910390a195945050505050565b6000818152600460205260408120549003610af65760405162461bcd60e51b815260040161017890612018565b600081815260046020526040902054421015610b245760405162461bcd60e51b815260040161017890612064565b600084604051602001610b3791906120e9565b60405160208183030381529060405280519060200120604051602001610b5d9190612129565b604051602081830303815290604052805190602001209050610ba784848484604051602001610b8c9190612148565b60405160208183030381529060405280519060200120611026565b610bc35760405162461bcd60e51b8152600401610178906121b2565b5050505050565b610bd2610db2565b60008281526004602052604090205415610bfe5760405162461bcd60e51b81526004016101789061221a565b60009182526004602052604090912055565b6000818152600460205260408120549003610c3d5760405162461bcd60e51b815260040161017890612018565b600081815260046020526040902054421015610c6b5760405162461bcd60e51b815260040161017890612064565b6000610c7a602086018661129d565b610c8a604087016020880161222a565b610c9a6060880160408901611aad565b610caa6080890160608a01611aad565b610cb760808a018a611c04565b610cc760c08c0160a08d01612249565b604051602001610cdd9796959493929190611f5d565b604051602081830303815290604052805190602001209050600081604051602001610d08919061229a565b604051602081830303815290604052805190602001209050610d3785858584604051602001610b8c9190612148565b610d535760405162461bcd60e51b815260040161017890612302565b505050505050565b610d63610db2565b6001600160a01b038116610da65760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161017891906112eb565b610daf81610f26565b50565b33610de47f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b0316146107d357336040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161017891906112eb565b6003546040517ff1d44d510000000000000000000000000000000000000000000000000000000081526000916001600160a01b03169063f1d44d5190610e719060209060040161231b565b602060405180830381865afa158015610e8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb29190612334565b905090565b6001600160a01b0381166000908152600260205260408120805467ffffffffffffffff169160019190610eea8385612353565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550919050565b610f1d61103e565b610daf816110a5565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300805473ffffffffffffffffffffffffffffffffffffffff1981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b6003546000906001600160a01b031663f1d44d51610fc3601185611a32565b6040518263ffffffff1660e01b8152600401610fdf91906111f6565b602060405180830381865afa158015610ffc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110209190612334565b92915050565b6000826110348686856110ad565b1495945050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff166107d3576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d6361103e565b600081815b848110156110e6576110dc828787848181106110d0576110d0612377565b905060200201356110ef565b91506001016110b2565b50949350505050565b600081831061110b5760008281526020849052604090206103e9565b5060009182526020526040902090565b60006001600160a01b038216611020565b6111358161111b565b82525050565b80611135565b6040810161114f828561112c565b6103e9602083018461113b565b600b8152602081017f756e737570706f72746564000000000000000000000000000000000000000000815290505b60200190565b602080825281016110208161115c565b600060c082840312156111b5576111b5600080fd5b50919050565b6000602082840312156111d0576111d0600080fd5b813567ffffffffffffffff8111156111ea576111ea600080fd5b610480848285016111a0565b60208101611020828461113b565b805b8114610daf57600080fd5b803561102081611204565b60006020828403121561123157611231600080fd5b6103e98383611211565b801515611135565b60208101611020828461123b565b6112068161111b565b803561102081611251565b6000806040838503121561127b5761127b600080fd5b611285848461125a565b91506112948460208501611211565b90509250929050565b6000602082840312156112b2576112b2600080fd5b6103e9838361125a565b600080604083850312156112d2576112d2600080fd5b6112dc848461125a565b9150611294846020850161125a565b60208101611020828461112c565b6000806040838503121561130f5761130f600080fd5b823567ffffffffffffffff81111561132957611329600080fd5b611335858286016111a0565b9250506112948460208501611211565b63ffffffff8116611206565b803561102081611345565b60008083601f84011261137157611371600080fd5b50813567ffffffffffffffff81111561138c5761138c600080fd5b6020830191508360018202830111156113a7576113a7600080fd5b9250929050565b60ff8116611206565b8035611020816113ae565b6000806000806000608086880312156113dd576113dd600080fd5b6113e78787611351565b94506113f68760208801611351565b9350604086013567ffffffffffffffff81111561141557611415600080fd5b6114218882890161135c565b935093505061143387606088016113b7565b90509295509295909350565b67ffffffffffffffff8116611135565b60208101611020828461143f565b6000608082840312156111b5576111b5600080fd5b60008083601f84011261148757611487600080fd5b50813567ffffffffffffffff8111156114a2576114a2600080fd5b6020830191508360208202830111156113a7576113a7600080fd5b60008060008060c085870312156114d6576114d6600080fd5b6114e0868661145d565b9350608085013567ffffffffffffffff8111156114ff576114ff600080fd5b61150b87828801611472565b935093505061151d8660a08701611211565b905092959194509250565b6000806040838503121561153e5761153e600080fd5b6112858484611211565b6000806000806060858703121561156157611561600080fd5b843567ffffffffffffffff81111561157b5761157b600080fd5b611587878288016111a0565b945050602085013567ffffffffffffffff8111156115a7576115a7600080fd5b6115b387828801611472565b935093505061151d8660408701611211565b506000611020602083018361125a565b67ffffffffffffffff8116611206565b8035611020816115d5565b50600061102060208301836115e5565b5060006110206020830183611351565b63ffffffff8116611135565b6000808335601e193685900301811261163757611637600080fd5b830160208101925035905067ffffffffffffffff81111561165a5761165a600080fd5b368190038213156113a7576113a7600080fd5b82818337506000910152565b81835260208301925061168d82848361166d565b50601f01601f19160190565b50600061102060208301836113b7565b60ff8116611135565b600060c083016116c283806115c5565b6116cc858261112c565b506116da60208401846115f0565b6116e7602086018261143f565b506116f56040840184611600565b6117026040860182611610565b506117106060840184611600565b61171d6060860182611610565b5061172b608084018461161c565b858303608087015261173e838284611679565b9250505061174f60a0840184611699565b61175c60a08601826116a9565b509392505050565b602080825281016103e981846116b2565b60218152602081017f54686973206d65737361676520776173206e65766572207375626d69747465648152601760f91b602082015290505b60400190565b6020808252810161102081611775565b601a8152602081017f537461746520726f6f7420646f6573206e6f742065786973742e0000000000008152905061118a565b60208082528101611020816117c3565b60308152602081017f417474656d7074696e6720746f2073656e642076616c756520776974686f757481527f2070726f766964696e6720457468657200000000000000000000000000000000602082015290506117ad565b6020808252810161102081611805565b60208082527f496e73756666696369656e742066756e647320746f2073656e642076616c7565910190815261118a565b602080825281016110208161186d565b634e487b7160e01b600052601160045260246000fd5b81810381811115611020576110206118ad565b60248152602081017f4661696c656420746f2073656e64206665657320746f206665657320636f6e7481527f7261637400000000000000000000000000000000000000000000000000000000602082015290506117ad565b60208082528101611020816118d6565b6040810161194c828561113b565b6103e9602083018461143f565b60148152602081017f6661696c65642073656e64696e672076616c75650000000000000000000000008152905061118a565b6020808252810161102081611959565b6000611020826119a9565b90565b67ffffffffffffffff1690565b6111358161199b565b6020810161102082846119b6565b6001600160a01b03918216919081169082820390811115611020576110206118ad565b60118152602081017f4e6f74206f776e6572206f722073656c660000000000000000000000000000008152905061118a565b60208082528101611020816119f0565b80820180821115611020576110206118ad565b60218152602081017f4d657373616765207375626d6974746564206d6f7265207468616e206f6e636581527f2100000000000000000000000000000000000000000000000000000000000000602082015290506117ad565b6020808252810161102081611a45565b600060208284031215611ac257611ac2600080fd5b6103e98383611351565b6000813561102081611251565b60006001600160a01b03835b81169019929092169190911792915050565b60006110208261111b565b600061102082611af7565b611b1682611b02565b611b21818354611ad9565b8255505050565b60008135611020816115d5565b60007bffffffffffffffff0000000000000000000000000000000000000000611ae58460a01b90565b600061102067ffffffffffffffff83166119a9565b611b7c82611b5e565b611b21818354611b35565b6000813561102081611345565b60007fffffffff00000000000000000000000000000000000000000000000000000000611ae58460e01b90565b600063ffffffff8216611020565b611bd882611bc1565b611b21818354611b94565b600063ffffffff83611ae5565b611bf982611bc1565b611b21818354611be3565b6000808335601e1936859003018112611c1f57611c1f600080fd5b8301915050803567ffffffffffffffff811115611c3e57611c3e600080fd5b6020820191506001810236038213156113a7576113a7600080fd5b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052602260045260246000fd5b600281046001821680611c9957607f821691505b6020821081036111b5576111b5611c6f565b60006110206119a68381565b611cc083611cab565b815460001960089490940293841b1916921b91909117905550565b60006109bc818484611cb7565b8181101561065257611cfb600082611cdb565b600101611ce8565b601f8211156109bc576000818152602090206020601f85010481016020851015611d2a5750805b610bc36020601f860104830182611ce8565b8267ffffffffffffffff811115611d5557611d55611c59565b611d5f8254611c85565b611d6a828285611d03565b506000601f821160018114611d9f5760008315611d875750848201355b600019600885021c1981166002850217855550610d53565b600084815260209020601f19841690835b82811015611dd05787850135825560209485019460019092019101611db0565b5084821015611ded576000196008601f8716021c19878501351681555b5050505060020260010190555050565b6109bc838383611d3c565b60008135611020816113ae565b600060ff8216611020565b611e2982611e15565b815460ff191660ff821617611b21565b808280611e4581611acc565b9050611e518184611b0d565b50506020830180611e6182611b28565b9050611e6d8184611b73565b50506040830180611e7d82611b87565b9050611e898184611bcf565b5050506060820180611e9a82611b87565b9050611ea98160018501611bf0565b5050611eb86080830183611c04565b611ec6818360028601611dfd565b505060a0820180611ed682611e08565b9050611ee58160038501611e20565b50505050565b6106528282611e39565b60258152602081017f496e73756666696369656e742066756e647320746f207075626c697368206d6581527f7373616765000000000000000000000000000000000000000000000000000000602082015290506117ad565b6020808252810161102081611ef5565b60c08101611f6b828a61112c565b611f78602083018961143f565b611f856040830188611610565b611f926060830187611610565b8181036080830152611fa5818587611679565b9050611fb460a08301846116a9565b98975050505050505050565b602a8152602081017f526f6f74206973206e6f74207075626c6973686564206f6e2074686973206d6581527f7373616765206275732e00000000000000000000000000000000000000000000602082015290506117ad565b6020808252810161102081611fc0565b60218152602081017f526f6f74206973206e6f7420636f6e736964657265642066696e616c207965748152601760f91b602082015290506117ad565b6020808252810161102081612028565b5060006110206020830183611211565b61208e81806115c5565b612098838261112c565b506120a660208201826115c5565b6120b3602084018261112c565b506120c16040820182612074565b6120ce604084018261113b565b506120dc60608201826115f0565b6109bc606084018261143f565b608081016110208284612084565b60018152602081017f76000000000000000000000000000000000000000000000000000000000000008152905061118a565b60408082528101612139816120f7565b9050611020602083018461113b565b612152818361113b565b602001919050565b60338152602081017f496e76616c696420696e636c7573696f6e2070726f6f6620666f722076616c7581527f65207472616e73666572206d6573736167652e00000000000000000000000000602082015290506117ad565b602080825281016110208161215a565b60258152602081017f526f6f7420616c726561647920616464656420746f20746865206d657373616781527f6520627573000000000000000000000000000000000000000000000000000000602082015290506117ad565b60208082528101611020816121c2565b60006020828403121561223f5761223f600080fd5b6103e983836115e5565b60006020828403121561225e5761225e600080fd5b6103e983836113b7565b60018152602081017f6d000000000000000000000000000000000000000000000000000000000000008152905061118a565b6040808252810161213981612268565b60308152602081017f496e76616c696420696e636c7573696f6e2070726f6f6620666f722063726f7381527f7320636861696e206d6573736167652e00000000000000000000000000000000602082015290506117ad565b60208082528101611020816122aa565b61113581611cab565b602081016110208284612312565b805161102081611204565b60006020828403121561234957612349600080fd5b6103e98383612329565b67ffffffffffffffff918216919081169082820190811115611020576110206118ad565b634e487b7160e01b600052603260045260246000fdfea26469706673582212205f0c1796be571837ef69dfd77006b06b112da38d22456c6adc83f344d4c840f664736f6c634300081c0033a26469706673582212201d150f5aebfb49733943338f50b01361dc3937c829fe1c72cb6e56ec6de3764e64736f6c634300081c0033", } // ManagementContractABI is the input ABI used to generate the binding from. @@ -1438,6 +1438,304 @@ func (_ManagementContract *ManagementContractFilterer) ParseLogManagementContrac return event, nil } +// ManagementContractNetworkSecretRequestedIterator is returned from FilterNetworkSecretRequested and is used to iterate over the raw logs and unpacked data for NetworkSecretRequested events raised by the ManagementContract contract. +type ManagementContractNetworkSecretRequestedIterator struct { + Event *ManagementContractNetworkSecretRequested // Event containing the contract specifics and raw log + + contract *bind.BoundContract // Generic contract to use for unpacking event data + event string // Event name to use for unpacking event data + + logs chan types.Log // Log channel receiving the found contract events + sub ethereum.Subscription // Subscription for errors, completion and termination + done bool // Whether the subscription completed delivering logs + fail error // Occurred error to stop iteration +} + +// Next advances the iterator to the subsequent event, returning whether there +// are any more events found. In case of a retrieval or parsing error, false is +// returned and Error() can be queried for the exact failure. +func (it *ManagementContractNetworkSecretRequestedIterator) Next() bool { + // If the iterator failed, stop iterating + if it.fail != nil { + return false + } + // If the iterator completed, deliver directly whatever's available + if it.done { + select { + case log := <-it.logs: + it.Event = new(ManagementContractNetworkSecretRequested) + if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil { + it.fail = err + return false + } + it.Event.Raw = log + return true + + default: + return false + } + } + // Iterator still in progress, wait for either a data or an error event + select { + case log := <-it.logs: + it.Event = new(ManagementContractNetworkSecretRequested) + if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil { + it.fail = err + return false + } + it.Event.Raw = log + return true + + case err := <-it.sub.Err(): + it.done = true + it.fail = err + return it.Next() + } +} + +// Error returns any retrieval or parsing error occurred during filtering. +func (it *ManagementContractNetworkSecretRequestedIterator) Error() error { + return it.fail +} + +// Close terminates the iteration process, releasing any pending underlying +// resources. +func (it *ManagementContractNetworkSecretRequestedIterator) Close() error { + it.sub.Unsubscribe() + return nil +} + +// ManagementContractNetworkSecretRequested represents a NetworkSecretRequested event raised by the ManagementContract contract. +type ManagementContractNetworkSecretRequested struct { + Requester common.Address + RequestReport string + Raw types.Log // Blockchain specific contextual infos +} + +// FilterNetworkSecretRequested is a free log retrieval operation binding the contract event 0x0b0ecdedd12079aa2d6c5e0186026c711cb0c8d04f1b724ba5880fb6328d4301. +// +// Solidity: event NetworkSecretRequested(address indexed requester, string requestReport) +func (_ManagementContract *ManagementContractFilterer) FilterNetworkSecretRequested(opts *bind.FilterOpts, requester []common.Address) (*ManagementContractNetworkSecretRequestedIterator, error) { + + var requesterRule []interface{} + for _, requesterItem := range requester { + requesterRule = append(requesterRule, requesterItem) + } + + logs, sub, err := _ManagementContract.contract.FilterLogs(opts, "NetworkSecretRequested", requesterRule) + if err != nil { + return nil, err + } + return &ManagementContractNetworkSecretRequestedIterator{contract: _ManagementContract.contract, event: "NetworkSecretRequested", logs: logs, sub: sub}, nil +} + +// WatchNetworkSecretRequested is a free log subscription operation binding the contract event 0x0b0ecdedd12079aa2d6c5e0186026c711cb0c8d04f1b724ba5880fb6328d4301. +// +// Solidity: event NetworkSecretRequested(address indexed requester, string requestReport) +func (_ManagementContract *ManagementContractFilterer) WatchNetworkSecretRequested(opts *bind.WatchOpts, sink chan<- *ManagementContractNetworkSecretRequested, requester []common.Address) (event.Subscription, error) { + + var requesterRule []interface{} + for _, requesterItem := range requester { + requesterRule = append(requesterRule, requesterItem) + } + + logs, sub, err := _ManagementContract.contract.WatchLogs(opts, "NetworkSecretRequested", requesterRule) + if err != nil { + return nil, err + } + return event.NewSubscription(func(quit <-chan struct{}) error { + defer sub.Unsubscribe() + for { + select { + case log := <-logs: + // New log arrived, parse the event and forward to the user + event := new(ManagementContractNetworkSecretRequested) + if err := _ManagementContract.contract.UnpackLog(event, "NetworkSecretRequested", log); err != nil { + return err + } + event.Raw = log + + select { + case sink <- event: + case err := <-sub.Err(): + return err + case <-quit: + return nil + } + case err := <-sub.Err(): + return err + case <-quit: + return nil + } + } + }), nil +} + +// ParseNetworkSecretRequested is a log parse operation binding the contract event 0x0b0ecdedd12079aa2d6c5e0186026c711cb0c8d04f1b724ba5880fb6328d4301. +// +// Solidity: event NetworkSecretRequested(address indexed requester, string requestReport) +func (_ManagementContract *ManagementContractFilterer) ParseNetworkSecretRequested(log types.Log) (*ManagementContractNetworkSecretRequested, error) { + event := new(ManagementContractNetworkSecretRequested) + if err := _ManagementContract.contract.UnpackLog(event, "NetworkSecretRequested", log); err != nil { + return nil, err + } + event.Raw = log + return event, nil +} + +// ManagementContractNetworkSecretRespondedIterator is returned from FilterNetworkSecretResponded and is used to iterate over the raw logs and unpacked data for NetworkSecretResponded events raised by the ManagementContract contract. +type ManagementContractNetworkSecretRespondedIterator struct { + Event *ManagementContractNetworkSecretResponded // Event containing the contract specifics and raw log + + contract *bind.BoundContract // Generic contract to use for unpacking event data + event string // Event name to use for unpacking event data + + logs chan types.Log // Log channel receiving the found contract events + sub ethereum.Subscription // Subscription for errors, completion and termination + done bool // Whether the subscription completed delivering logs + fail error // Occurred error to stop iteration +} + +// Next advances the iterator to the subsequent event, returning whether there +// are any more events found. In case of a retrieval or parsing error, false is +// returned and Error() can be queried for the exact failure. +func (it *ManagementContractNetworkSecretRespondedIterator) Next() bool { + // If the iterator failed, stop iterating + if it.fail != nil { + return false + } + // If the iterator completed, deliver directly whatever's available + if it.done { + select { + case log := <-it.logs: + it.Event = new(ManagementContractNetworkSecretResponded) + if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil { + it.fail = err + return false + } + it.Event.Raw = log + return true + + default: + return false + } + } + // Iterator still in progress, wait for either a data or an error event + select { + case log := <-it.logs: + it.Event = new(ManagementContractNetworkSecretResponded) + if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil { + it.fail = err + return false + } + it.Event.Raw = log + return true + + case err := <-it.sub.Err(): + it.done = true + it.fail = err + return it.Next() + } +} + +// Error returns any retrieval or parsing error occurred during filtering. +func (it *ManagementContractNetworkSecretRespondedIterator) Error() error { + return it.fail +} + +// Close terminates the iteration process, releasing any pending underlying +// resources. +func (it *ManagementContractNetworkSecretRespondedIterator) Close() error { + it.sub.Unsubscribe() + return nil +} + +// ManagementContractNetworkSecretResponded represents a NetworkSecretResponded event raised by the ManagementContract contract. +type ManagementContractNetworkSecretResponded struct { + Attester common.Address + Requester common.Address + Raw types.Log // Blockchain specific contextual infos +} + +// FilterNetworkSecretResponded is a free log retrieval operation binding the contract event 0xb869e23ebc7c717d76e345eee8ec282612603e45c44f7ae5494b197c8d9d1be1. +// +// Solidity: event NetworkSecretResponded(address indexed attester, address indexed requester) +func (_ManagementContract *ManagementContractFilterer) FilterNetworkSecretResponded(opts *bind.FilterOpts, attester []common.Address, requester []common.Address) (*ManagementContractNetworkSecretRespondedIterator, error) { + + var attesterRule []interface{} + for _, attesterItem := range attester { + attesterRule = append(attesterRule, attesterItem) + } + var requesterRule []interface{} + for _, requesterItem := range requester { + requesterRule = append(requesterRule, requesterItem) + } + + logs, sub, err := _ManagementContract.contract.FilterLogs(opts, "NetworkSecretResponded", attesterRule, requesterRule) + if err != nil { + return nil, err + } + return &ManagementContractNetworkSecretRespondedIterator{contract: _ManagementContract.contract, event: "NetworkSecretResponded", logs: logs, sub: sub}, nil +} + +// WatchNetworkSecretResponded is a free log subscription operation binding the contract event 0xb869e23ebc7c717d76e345eee8ec282612603e45c44f7ae5494b197c8d9d1be1. +// +// Solidity: event NetworkSecretResponded(address indexed attester, address indexed requester) +func (_ManagementContract *ManagementContractFilterer) WatchNetworkSecretResponded(opts *bind.WatchOpts, sink chan<- *ManagementContractNetworkSecretResponded, attester []common.Address, requester []common.Address) (event.Subscription, error) { + + var attesterRule []interface{} + for _, attesterItem := range attester { + attesterRule = append(attesterRule, attesterItem) + } + var requesterRule []interface{} + for _, requesterItem := range requester { + requesterRule = append(requesterRule, requesterItem) + } + + logs, sub, err := _ManagementContract.contract.WatchLogs(opts, "NetworkSecretResponded", attesterRule, requesterRule) + if err != nil { + return nil, err + } + return event.NewSubscription(func(quit <-chan struct{}) error { + defer sub.Unsubscribe() + for { + select { + case log := <-logs: + // New log arrived, parse the event and forward to the user + event := new(ManagementContractNetworkSecretResponded) + if err := _ManagementContract.contract.UnpackLog(event, "NetworkSecretResponded", log); err != nil { + return err + } + event.Raw = log + + select { + case sink <- event: + case err := <-sub.Err(): + return err + case <-quit: + return nil + } + case err := <-sub.Err(): + return err + case <-quit: + return nil + } + } + }), nil +} + +// ParseNetworkSecretResponded is a log parse operation binding the contract event 0xb869e23ebc7c717d76e345eee8ec282612603e45c44f7ae5494b197c8d9d1be1. +// +// Solidity: event NetworkSecretResponded(address indexed attester, address indexed requester) +func (_ManagementContract *ManagementContractFilterer) ParseNetworkSecretResponded(log types.Log) (*ManagementContractNetworkSecretResponded, error) { + event := new(ManagementContractNetworkSecretResponded) + if err := _ManagementContract.contract.UnpackLog(event, "NetworkSecretResponded", log); err != nil { + return nil, err + } + event.Raw = log + return event, nil +} + // ManagementContractOwnershipTransferredIterator is returned from FilterOwnershipTransferred and is used to iterate over the raw logs and unpacked data for OwnershipTransferred events raised by the ManagementContract contract. type ManagementContractOwnershipTransferredIterator struct { Event *ManagementContractOwnershipTransferred // Event containing the contract specifics and raw log diff --git a/contracts/src/management/ManagementContract.sol b/contracts/src/management/ManagementContract.sol index ddae144828..21572e5879 100644 --- a/contracts/src/management/ManagementContract.sol +++ b/contracts/src/management/ManagementContract.sol @@ -26,6 +26,8 @@ contract ManagementContract is Initializable, OwnableUpgradeable { event SequencerEnclaveGranted(address enclaveID); event SequencerEnclaveRevoked(address enclaveID); event RollupAdded(bytes32 rollupHash); + event NetworkSecretRequested(address indexed requester, string requestReport); + event NetworkSecretResponded(address indexed attester, address indexed requester); // mapping of enclaveID to whether it is attested mapping(address => bool) private attested; @@ -179,6 +181,7 @@ contract ManagementContract is Initializable, OwnableUpgradeable { // Enclaves can request the Network Secret given an attestation request report function RequestNetworkSecret(string calldata requestReport) public { // currently this is a no-op, nodes will monitor for these transactions and respond to them + emit NetworkSecretRequested(msg.sender, requestReport); } function ExtractNativeValue(MessageStructs.Structs.ValueTransferMessage calldata _msg, bytes32[] calldata proof, bytes32 root) external { @@ -213,6 +216,8 @@ contract ManagementContract is Initializable, OwnableUpgradeable { // mark the requesterID enclave as an attested enclave and store its host address attested[requesterID] = true; + + emit NetworkSecretResponded(attesterID, requesterID); } diff --git a/go/common/l1_transaction.go b/go/common/l1_transaction.go index ffa2d81352..b4600bab68 100644 --- a/go/common/l1_transaction.go +++ b/go/common/l1_transaction.go @@ -81,9 +81,9 @@ type L1TxType uint8 // Change to uint8 for RLP serialization const ( RollupTx L1TxType = iota + InitialiseSecretTx SecretRequestTx SecretResponseTx - InitialiseSecretTx CrossChainMessageTx CrossChainValueTranserTx SequencerAddedTx @@ -110,7 +110,6 @@ type ProcessedL1Data struct { // L1TxData represents an L1 transaction that's relevant to us type L1TxData struct { - //Type *TenTransactionWrapper Transaction *types.Transaction Receipt *types.Receipt Blobs []*kzg4844.Blob // Only populated for blob transactions diff --git a/go/config/loader.go b/go/config/loader.go index 33d141b6c1..7844f0a72d 100644 --- a/go/config/loader.go +++ b/go/config/loader.go @@ -88,6 +88,6 @@ func load(filePaths []string) (*TenConfig, error) { } fmt.Println("Successfully loaded Ten config.") - tenCfg.PrettyPrint() + //tenCfg.PrettyPrint() return &tenCfg, nil } diff --git a/go/enclave/components/rollup_consumer.go b/go/enclave/components/rollup_consumer.go index 29615f5c12..b449544a9b 100644 --- a/go/enclave/components/rollup_consumer.go +++ b/go/enclave/components/rollup_consumer.go @@ -65,6 +65,7 @@ func (rc *rollupConsumerImpl) ProcessBlobsInBlock(ctx context.Context, processed rollups, err = rc.getSignedRollup(rollups) if err != nil { + println("ERROR IN SIGNED ROLLUPS") return err } @@ -94,6 +95,7 @@ func (rc *rollupConsumerImpl) ProcessBlobsInBlock(ctx context.Context, processed // todo - issue challenge as a validator return err } + println("STORING ROLLUP WITH SEQ NO: ", rollup.Header.LastBatchSeqNo, " SIG LENGTH: ", len(rollup.Header.Signature)) if err := rc.storage.StoreRollup(ctx, rollup, internalHeader); err != nil { rc.logger.Error("Failed storing rollup", log.RollupHashKey, rollup.Hash(), log.ErrKey, err) return err @@ -155,6 +157,8 @@ func (rc *rollupConsumerImpl) extractAndVerifyRollups(processed *common.Processe } rollups = append(rollups, r) + + println("EXTRACTED ROLLUP WITH LAST SEQ NO: ", rollups[0].Header.LastBatchSeqNo) rc.logger.Info("Extracted rollup from block", log.RollupHashKey, r.Hash(), log.BlockHashKey, processed.BlockHeader.Hash()) } diff --git a/go/enclave/components/shared_secret_process.go b/go/enclave/components/shared_secret_process.go index dd38f6e187..58c3ef9479 100644 --- a/go/enclave/components/shared_secret_process.go +++ b/go/enclave/components/shared_secret_process.go @@ -39,28 +39,16 @@ func (ssp *SharedSecretProcessor) ProcessNetworkSecretMsgs(ctx context.Context, var responses []*common.ProducedSecretResponse block := processed.BlockHeader - // process secret requests - for _, txData := range processed.GetEvents(common.SecretRequestTx) { - t := ssp.mgmtContractLib.DecodeTx(txData.Transaction) - scrtReqTx, ok := t.(*common.L1RequestSecretTx) - if !ok { - continue - } - ssp.logger.Info("Process shared secret request.", - log.BlockHeightKey, block, - log.BlockHashKey, block.Hash(), - log.TxKey, txData.Transaction.Hash()) + requestSecretEvents := processed.GetEvents(common.SecretRequestTx) + if len(requestSecretEvents) > 0 { + } - resp, err := ssp.processSecretRequest(ctx, scrtReqTx) - if err != nil { - ssp.logger.Error("Failed to process shared secret request.", log.ErrKey, err) - continue - } - responses = append(responses, resp) + initializeSecretEvents := processed.GetEvents(common.InitialiseSecretTx) + if len(initializeSecretEvents) > 0 { } // process initialize secret events - for _, txData := range processed.GetEvents(common.InitialiseSecretTx) { + for _, txData := range initializeSecretEvents { t := ssp.mgmtContractLib.DecodeTx(txData.Transaction) initSecretTx, ok := t.(*common.L1InitializeSecretTx) if !ok { @@ -78,6 +66,26 @@ func (ssp *SharedSecretProcessor) ProcessNetworkSecretMsgs(ctx context.Context, } } + // process secret requests + for _, txData := range requestSecretEvents { + t := ssp.mgmtContractLib.DecodeTx(txData.Transaction) + scrtReqTx, ok := t.(*common.L1RequestSecretTx) + if !ok { + continue + } + ssp.logger.Info("Process shared secret request.", + log.BlockHeightKey, block, + log.BlockHashKey, block.Hash(), + log.TxKey, txData.Transaction.Hash()) + + resp, err := ssp.processSecretRequest(ctx, scrtReqTx) + if err != nil { + ssp.logger.Error("Failed to process shared secret request.", log.ErrKey, err) + continue + } + responses = append(responses, resp) + } + return responses } diff --git a/go/enclave/crosschain/common.go b/go/enclave/crosschain/common.go index b472f03154..ab873d038a 100644 --- a/go/enclave/crosschain/common.go +++ b/go/enclave/crosschain/common.go @@ -18,18 +18,26 @@ import ( "github.com/ethereum/go-ethereum/core/types" gethlog "github.com/ethereum/go-ethereum/log" "github.com/ethereum/go-ethereum/rlp" + "github.com/ten-protocol/go-ten/contracts/generated/ManagementContract" "github.com/ten-protocol/go-ten/contracts/generated/MessageBus" "github.com/ten-protocol/go-ten/go/common" ) var ( MessageBusABI, _ = abi.JSON(strings.NewReader(MessageBus.MessageBusMetaData.ABI)) + MgmtContractABI, _ = abi.JSON(strings.NewReader(ManagementContract.ManagementContractMetaData.ABI)) CrossChainEventName = "LogMessagePublished" CrossChainEventID = MessageBusABI.Events[CrossChainEventName].ID ValueTransferEventName = "ValueTransfer" ValueTransferEventID = MessageBusABI.Events["ValueTransfer"].ID SequencerEnclaveGrantedEventName = "SequencerEnclaveGranted" - SequencerEnclaveGrantedEventID = MessageBusABI.Events["SequencerEnclaveGranted"].ID + SequencerEnclaveGrantedEventID = MgmtContractABI.Events["SequencerEnclaveGranted"].ID + NetworkSecretRequestedName = "NetworkSecretRequested" + NetworkSecretRequestedID = MgmtContractABI.Events["NetworkSecretRequested"].ID + NetworkSecretRespondedName = "NetworkSecretResponded" + NetworkSecretRespondedID = MgmtContractABI.Events["NetworkSecretResponded"].ID + RollupAddedName = "RollupAdded" + RollupAddedID = MgmtContractABI.Events["RollupAdded"].ID ) func lazilyLogReceiptChecksum(block *types.Header, receipts types.Receipts, logger gethlog.Logger) { @@ -106,7 +114,7 @@ func FilterLogsFromReceipt(receipt *types.Receipt, address *gethcommon.Address, return logs, nil } -// convertLogsToMessages - converts the logs of the event to messages. The logs should be filtered, otherwise fails. +// ConvertLogsToMessages - converts the logs of the event to messages. The logs should be filtered, otherwise fails. func ConvertLogsToMessages(logs []types.Log, eventName string, messageBusABI abi.ABI) (common.CrossChainMessages, error) { messages := make(common.CrossChainMessages, 0) @@ -135,7 +143,7 @@ func createCrossChainMessage(event MessageBus.MessageBusLogMessagePublished) Mes } } -// convertLogsToMessages - converts the logs of the event to messages. The logs should be filtered, otherwise fails. +// ConvertLogsToValueTransfers - converts the logs of the event to messages. The logs should be filtered, otherwise fails. func ConvertLogsToValueTransfers(logs []types.Log, eventName string, messageBusABI abi.ABI) (common.ValueTransferEvents, error) { messages := make(common.ValueTransferEvents, 0) diff --git a/go/enclave/enclave_admin_service.go b/go/enclave/enclave_admin_service.go index f7e82b7130..9f6d766c7b 100644 --- a/go/enclave/enclave_admin_service.go +++ b/go/enclave/enclave_admin_service.go @@ -232,9 +232,18 @@ func (e *enclaveAdminService) SubmitBatch(ctx context.Context, extBatch *common. err = e.validator().VerifySequencerSignature(batch) if err != nil { + println("FAILURE ENCLAVE SERVICE BATCH ADDED SEQ: ", batch.SeqNo().Uint64()) + println("FAILURE ENCLAVE SERVICE HOSTID: ", e.config.HostID.Hex()) + println("FAILURE ENCLAVE SERVICE HOST ADDRESS: ", e.config.HostAddress) + println("FAILURE ENCLAVE SERVICE NODE TYPE: ", e.config.NodeType) return responses.ToInternalError(fmt.Errorf("invalid batch received. Could not verify signature. Cause: %w", err)) } + println("-----") + println("ENCLAVE SERVICE BATCH ADDED SEQ: ", batch.SeqNo().Uint64()) + println("ENCLAVE SERVICE HOSTID: ", e.config.HostID.Hex()) + println("ENCLAVE SERVICE NODE TYPE: ", e.config.NodeType) + // calculate the converted hash, and store it in the db for chaining of the converted chain convertedHeader, err := e.gethEncodingService.CreateEthHeaderForBatch(ctx, extBatch.Header) if err != nil { @@ -491,6 +500,8 @@ func (e *enclaveAdminService) ingestL1Block(ctx context.Context, processed *comm // Unsure what to do here; block has been stored } + //TODO call AddSequencer if event present + if ingestion.IsFork() { e.registry.OnL1Reorg(ingestion) err := e.service.OnL1Fork(ctx, ingestion.ChainFork) diff --git a/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go b/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go index 957ec95864..ca0e1846e9 100644 --- a/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go +++ b/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go @@ -87,7 +87,6 @@ func (c *contractLibImpl) DecodeTx(tx *types.Transaction) common.TenTransaction contractCallData := map[string]interface{}{} switch method.Name { case AddRollupMethod: - println("DECODE TX: AddRollupMethod") if tx.Type() == types.BlobTxType { return &common.L1RollupHashes{ BlobHashes: tx.BlobHashes(), @@ -96,19 +95,15 @@ func (c *contractLibImpl) DecodeTx(tx *types.Transaction) common.TenTransaction return nil } case RespondSecretMethod: - println("DECODE TX: RespondSecretMethod") return c.unpackRespondSecretTx(tx, method, contractCallData) case RequestSecretMethod: - println("DECODE TX: RequestSecretMethod") return c.unpackRequestSecretTx(tx, method, contractCallData) case InitializeSecretMethod: - println("DECODE TX: InitializeSecretMethod") return c.unpackInitSecretTx(tx, method, contractCallData) case SetImportantContractsMethod: - println("DECODE TX: SetImportantContractsMethod") tx, err := c.unpackSetImportantContractsTx(tx, method, contractCallData) if err != nil { c.logger.Warn("could not unpack set important contracts tx", log.ErrKey, err) @@ -122,7 +117,6 @@ func (c *contractLibImpl) DecodeTx(tx *types.Transaction) common.TenTransaction // CreateBlobRollup creates a BlobTx, encoding the rollup data into blobs. func (c *contractLibImpl) CreateBlobRollup(t *common.L1RollupTx) (types.TxData, error) { - println("CREATING L1RollupTx") decodedRollup, err := common.DecodeRollup(t.Rollup) if err != nil { panic(err) @@ -168,7 +162,6 @@ func (c *contractLibImpl) CreateBlobRollup(t *common.L1RollupTx) (types.TxData, } func (c *contractLibImpl) CreateRequestSecret(tx *common.L1RequestSecretTx) types.TxData { - println("CREATING L1RequestSecretTx") data, err := c.contractABI.Pack(RequestSecretMethod, base64EncodeToString(tx.Attestation)) if err != nil { panic(err) @@ -181,7 +174,8 @@ func (c *contractLibImpl) CreateRequestSecret(tx *common.L1RequestSecretTx) type } func (c *contractLibImpl) CreateRespondSecret(tx *common.L1RespondSecretTx, verifyAttester bool) types.TxData { - println("CREATING L1RespondSecretTx") + println("CREATE RESPOND SECRET TX: ", tx.RequesterID.Hex()) + println("---------") data, err := c.contractABI.Pack( RespondSecretMethod, tx.AttesterID, @@ -200,7 +194,6 @@ func (c *contractLibImpl) CreateRespondSecret(tx *common.L1RespondSecretTx, veri } func (c *contractLibImpl) CreateInitializeSecret(tx *common.L1InitializeSecretTx) types.TxData { - println("CREATING L1InitializeSecretTx") data, err := c.contractABI.Pack( InitializeSecretMethod, tx.EnclaveID, diff --git a/go/host/enclave/guardian.go b/go/host/enclave/guardian.go index 0f2a23b0a3..486179497e 100644 --- a/go/host/enclave/guardian.go +++ b/go/host/enclave/guardian.go @@ -360,9 +360,11 @@ func (g *Guardian) provideSecret() error { if scrt.RequesterID.Hex() == g.enclaveID.Hex() { err = g.enclaveClient.InitEnclave(context.Background(), scrt.Secret) if err != nil { + println("ENCLAVE INITIALISATION FAILURE: ", g.enclaveID.Hex()) g.logger.Error("Could not initialize enclave with received secret response", log.ErrKey, err) continue // try the next secret response in the block if there are more } + println("ENCLAVE INITALIZED") return nil // successfully initialized enclave with secret, break out of retry loop function } } @@ -370,6 +372,7 @@ func (g *Guardian) provideSecret() error { return errors.New("no valid secret received in block") }, retry.NewTimeoutStrategy(_maxWaitForSecretResponse, 500*time.Millisecond)) if err != nil { + println("TIMED OUT WAITING FOR SECRET RESPONSE after", _maxWaitForSecretResponse.String()) // something went wrong, check the enclave status in case it is an enclave problem and let the main loop try again when appropriate return errors.Wrap(err, "no valid secret received for enclave") } @@ -507,7 +510,7 @@ func (g *Guardian) submitL1Block(block *common.L1Block, isLatest bool) (bool, er return true, nil } -func (g *Guardian) processL1BlockTransactions(block *common.L1Block, rollupTxs []*ethadapter.L1RollupTx, contractAddressTxs []*ethadapter.L1SetImportantContractsTx) { +func (g *Guardian) processL1BlockTransactions(block *common.L1Block, rollupTxs []*common.L1RollupTx, contractAddressTxs []*common.L1SetImportantContractsTx) { // TODO (@will) this should be removed and pulled from the L1 err := g.storage.AddBlock(block.Header()) if err != nil { diff --git a/go/host/l1/blockrepository.go b/go/host/l1/blockrepository.go index 8f216f05a3..1fe7ad6b59 100644 --- a/go/host/l1/blockrepository.go +++ b/go/host/l1/blockrepository.go @@ -201,6 +201,7 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc Events: []common.L1Event{}, } + // Get all logs for our contracts blkHash := block.Hash() var allAddresses []gethcommon.Address allAddresses = append(allAddresses, r.contractAddresses[MgmtContract]...) @@ -211,16 +212,52 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc return nil, fmt.Errorf("unable to fetch logs for L1 block - %w", err) } + // Group logs by transaction hash and topic + type logGroup struct { + crossChainLogs []types.Log + valueTransferLogs []types.Log + sequencerLogs []types.Log + secretRequestLogs []types.Log + secretResponseLogs []types.Log + rollupAddedLogs []types.Log + } + + logsByTx := make(map[gethcommon.Hash]*logGroup) + + // filter logs by topic for _, l := range logs { - tx, _, err := r.ethClient.TransactionByHash(l.TxHash) + if _, exists := logsByTx[l.TxHash]; !exists { + logsByTx[l.TxHash] = &logGroup{} + } + + switch l.Topics[0] { + case crosschain.CrossChainEventID: + logsByTx[l.TxHash].crossChainLogs = append(logsByTx[l.TxHash].crossChainLogs, l) + case crosschain.ValueTransferEventID: + logsByTx[l.TxHash].valueTransferLogs = append(logsByTx[l.TxHash].valueTransferLogs, l) + case crosschain.SequencerEnclaveGrantedEventID: + logsByTx[l.TxHash].sequencerLogs = append(logsByTx[l.TxHash].sequencerLogs, l) + case crosschain.NetworkSecretRequestedID: + logsByTx[l.TxHash].secretRequestLogs = append(logsByTx[l.TxHash].secretRequestLogs, l) + case crosschain.NetworkSecretRespondedID: + logsByTx[l.TxHash].secretResponseLogs = append(logsByTx[l.TxHash].secretResponseLogs, l) + case crosschain.RollupAddedID: + println("ROLLUP ADDED LOG") + logsByTx[l.TxHash].rollupAddedLogs = append(logsByTx[l.TxHash].rollupAddedLogs, l) + } + } + + // Process each transaction once + for txHash, txLogs := range logsByTx { + tx, _, err := r.ethClient.TransactionByHash(txHash) if err != nil { - r.logger.Error("Error fetching transaction by hash", l.TxHash, err) + r.logger.Error("Error fetching transaction by hash", txHash, err) continue } - receipt, err := r.ethClient.TransactionReceipt(l.TxHash) + receipt, err := r.ethClient.TransactionReceipt(txHash) if err != nil { - r.logger.Error("Error fetching transaction receipt with tx hash", l.TxHash, err) + r.logger.Error("Error fetching transaction receipt", txHash, err) continue } @@ -231,87 +268,47 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc ValueTransfers: &common.ValueTransferEvents{}, } - messages, err := r.getCrossChainMessages(receipt) - if err != nil { - r.logger.Error("Error encountered converting logs to messages", err) - } else { - txData.CrossChainMessages = &messages - } - - transfers, err := r.getValueTransferEvents(receipt) - if err != nil { - r.logger.Error("Error encountered converting logs to transfers", err) - } else { - txData.ValueTransfers = &transfers - } - - sequencerLogs, err := r.getSequencerEventLogs(receipt) - if err != nil { - r.logger.Error("Error encountered converting logs to sequencer events", err) - sequencerLogs = []types.Log{} // Initialize to empty slice on error - } - - if len(*txData.CrossChainMessages) > 0 { - processed.AddEvent(common.CrossChainMessageTx, txData) - println("CrossChainMessageTx ADDED") + // Process all events for this transaction + if len(txLogs.crossChainLogs) > 0 { + if messages, err := crosschain.ConvertLogsToMessages(txLogs.crossChainLogs, crosschain.CrossChainEventName, crosschain.MessageBusABI); err == nil { + txData.CrossChainMessages = &messages + processed.AddEvent(common.CrossChainMessageTx, txData) + } } - if len(*txData.ValueTransfers) > 0 { - processed.AddEvent(common.CrossChainValueTranserTx, txData) - println("CrossChainValueTranserTx ADDED") + if len(txLogs.valueTransferLogs) > 0 { + if transfers, err := crosschain.ConvertLogsToValueTransfers(txLogs.valueTransferLogs, crosschain.CrossChainEventName, crosschain.MessageBusABI); err == nil { + txData.ValueTransfers = &transfers + processed.AddEvent(common.CrossChainValueTranserTx, txData) + } } - if len(sequencerLogs) > 0 { + if len(txLogs.sequencerLogs) > 0 { + //TODO convert log to enclaveID processed.AddEvent(common.SequencerAddedTx, txData) - println("SequencerAddedTx ADDED") } - decodedTx := r.mgmtContractLib.DecodeTx(tx) - if err != nil { - r.logger.Error("Failed to wrap transaction", "error", err) - continue + if len(txLogs.secretRequestLogs) > 0 { + processed.AddEvent(common.SecretRequestTx, txData) } - switch t := decodedTx.(type) { - case *common.L1InitializeSecretTx: - println("InitialiseSecretTx ADDED") - processed.AddEvent(common.InitialiseSecretTx, txData) - case *common.L1RequestSecretTx: - println("L1RequestSecretTx ADDED") - processed.AddEvent(common.SecretRequestTx, txData) - case *common.L1RespondSecretTx: - println("L1RespondSecretTx ADDED") + if len(txLogs.secretResponseLogs) > 0 { processed.AddEvent(common.SecretResponseTx, txData) - case *common.L1SetImportantContractsTx: - println("SetImportantContractsTx ADDED") - processed.AddEvent(common.SetImportantContractsTx, txData) - case *common.L1RollupHashes: - println("L1RollupHashes ADDED") - blobs, err := r.blobResolver.FetchBlobs(context.Background(), block.Header(), t.BlobHashes) - if err != nil { - if errors.Is(err, ethereum.NotFound) { - r.logger.Crit("Blobs were not found on beacon chain or archive service", "block", block.Hash(), "error", err) - } else { - r.logger.Crit("could not fetch blobs", err) + } + + if decodedTx := r.mgmtContractLib.DecodeTx(tx); decodedTx != nil { + switch t := decodedTx.(type) { + case *common.L1InitializeSecretTx: + processed.AddEvent(common.InitialiseSecretTx, txData) + case *common.L1SetImportantContractsTx: + processed.AddEvent(common.SetImportantContractsTx, txData) + case *common.L1RollupHashes: + println("ROLLUP DECODE TX") + if blobs, err := r.blobResolver.FetchBlobs(context.Background(), block.Header(), t.BlobHashes); err == nil { + txData.Blobs = blobs + processed.AddEvent(common.RollupTx, txData) } - continue } - - txData.Blobs = blobs - - //encodedRlp, err := ethadapter.DecodeBlobs(blobs) - //if err != nil { - // r.logger.Crit("could not decode blobs.", err) - // continue - //} - // - //rlp := &common.L1RollupTx{ - // Rollup: encodedRlp, - //} - //rollupTxs = append(rollupTxs, rlp) - //println("L1RollupTx ADDED") - //txData.Blobs = t. - processed.AddEvent(common.RollupTx, txData) } } @@ -385,86 +382,104 @@ func (r *Repository) isObscuroTransaction(transaction *types.Transaction) bool { return false } -func (r *Repository) getRelevantTxReceiptsAndBlobs(block *common.L1Block) ([]*common.TxAndReceiptAndBlobs, error) { - // Create a slice that will only contain valid transactions - var txsWithReceipts []*common.TxAndReceiptAndBlobs - - receipts, err := r.FetchObscuroReceipts(block) - if err != nil { - return nil, fmt.Errorf("failed to fetch receipts: %w", err) - } - - for i, tx := range block.Transactions() { - // skip unsuccessful txs - if receipts[i].Status == types.ReceiptStatusFailed { - continue - } - - txWithReceipt := &common.TxAndReceiptAndBlobs{ - Tx: tx, - Receipt: receipts[i], - } - - if tx.Type() == types.BlobTxType { - txBlobs := tx.BlobHashes() - blobs, err := r.blobResolver.FetchBlobs(context.Background(), block.Header(), txBlobs) - if err != nil { - if errors.Is(err, ethereum.NotFound) { - r.logger.Crit("Blobs were not found on beacon chain or archive service", "block", block.Hash(), "error", err) - } else { - r.logger.Crit("could not fetch blobs", log.ErrKey, err) - } - continue - } - txWithReceipt.Blobs = blobs - } - - // Append only valid transactions - txsWithReceipts = append(txsWithReceipts, txWithReceipt) - } - - return txsWithReceipts, nil -} - -func (r *Repository) getCrossChainMessages(receipt *types.Receipt) (common.CrossChainMessages, error) { - logsForReceipt, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MsgBus][0], &crosschain.CrossChainEventID) +//func (r *Repository) getRelevantTxReceiptsAndBlobs(block *common.L1Block) ([]*common.TxAndReceiptAndBlobs, error) { +// // Create a slice that will only contain valid transactions +// var txsWithReceipts []*common.TxAndReceiptAndBlobs +// +// receipts, err := r.FetchObscuroReceipts(block) +// if err != nil { +// return nil, fmt.Errorf("failed to fetch receipts: %w", err) +// } +// +// for i, tx := range block.Transactions() { +// // skip unsuccessful txs +// if receipts[i].Status == types.ReceiptStatusFailed { +// continue +// } +// +// txWithReceipt := &common.TxAndReceiptAndBlobs{ +// Tx: tx, +// Receipt: receipts[i], +// } +// +// if tx.Type() == types.BlobTxType { +// txBlobs := tx.BlobHashes() +// blobs, err := r.blobResolver.FetchBlobs(context.Background(), block.Header(), txBlobs) +// if err != nil { +// if errors.Is(err, ethereum.NotFound) { +// r.logger.Crit("Blobs were not found on beacon chain or archive service", "block", block.Hash(), "error", err) +// } else { +// r.logger.Crit("could not fetch blobs", log.ErrKey, err) +// } +// continue +// } +// txWithReceipt.Blobs = blobs +// } +// +// // Append only valid transactions +// txsWithReceipts = append(txsWithReceipts, txWithReceipt) +// } +// +// return txsWithReceipts, nil +//} + +//func (r *Repository) getCrossChainMessages(receipt *types.Receipt) (common.CrossChainMessages, error) { +// logsForReceipt, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MsgBus][0], &crosschain.CrossChainEventID) +// if err != nil { +// r.logger.Error("Error encountered when filtering receipt logs for cross chain messages.", log.ErrKey, err) +// return make(common.CrossChainMessages, 0), err +// } +// messages, err := crosschain.ConvertLogsToMessages(logsForReceipt, crosschain.CrossChainEventName, crosschain.MessageBusABI) +// if err != nil { +// r.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) +// return make(common.CrossChainMessages, 0), err +// } +// +// return messages, nil +//} +// +//func (r *Repository) getValueTransferEvents(receipt *types.Receipt) (common.ValueTransferEvents, error) { +// logsForReceipt, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MsgBus][0], &crosschain.ValueTransferEventID) +// if err != nil { +// r.logger.Error("Error encountered when filtering receipt logs for value transfers.", log.ErrKey, err) +// return make(common.ValueTransferEvents, 0), err +// } +// transfers, err := crosschain.ConvertLogsToValueTransfers(logsForReceipt, crosschain.CrossChainEventName, crosschain.MessageBusABI) +// if err != nil { +// r.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) +// return make(common.ValueTransferEvents, 0), err +// } +// +// return transfers, nil +//} + +//func (r *Repository) getSequencerEventLogs(receipt *types.Receipt) ([]types.Log, error) { +// sequencerLogs, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MgmtContract][0], &crosschain.SequencerEnclaveGrantedEventID) +// if err != nil { +// r.logger.Error("Error filtering sequencer logs", log.ErrKey, err) +// return []types.Log{}, err +// } +// +// // TODO convert to add sequencer? +// +// return sequencerLogs, nil +//} + +func (r *Repository) getRequestSecretEventLogs(receipt *types.Receipt) ([]types.Log, error) { + sequencerLogs, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MgmtContract][0], &crosschain.NetworkSecretRequestedID) if err != nil { - r.logger.Error("Error encountered when filtering receipt logs for cross chain messages.", log.ErrKey, err) - return make(common.CrossChainMessages, 0), err - } - messages, err := crosschain.ConvertLogsToMessages(logsForReceipt, crosschain.CrossChainEventName, crosschain.MessageBusABI) - if err != nil { - r.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) - return make(common.CrossChainMessages, 0), err - } - - return messages, nil -} - -func (r *Repository) getValueTransferEvents(receipt *types.Receipt) (common.ValueTransferEvents, error) { - logsForReceipt, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MsgBus][0], &crosschain.ValueTransferEventID) - if err != nil { - r.logger.Error("Error encountered when filtering receipt logs for value transfers.", log.ErrKey, err) - return make(common.ValueTransferEvents, 0), err - } - transfers, err := crosschain.ConvertLogsToValueTransfers(logsForReceipt, crosschain.CrossChainEventName, crosschain.MessageBusABI) - if err != nil { - r.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) - return make(common.ValueTransferEvents, 0), err + r.logger.Error("Error filtering sequencer logs", log.ErrKey, err) + return []types.Log{}, err } - - return transfers, nil + return sequencerLogs, nil } -func (r *Repository) getSequencerEventLogs(receipt *types.Receipt) ([]types.Log, error) { - sequencerLogs, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MgmtContract][0], &crosschain.SequencerEnclaveGrantedEventID) +func (r *Repository) getSecretResponseLogs(receipt *types.Receipt) ([]types.Log, error) { + sequencerLogs, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MgmtContract][0], &crosschain.NetworkSecretRespondedID) if err != nil { r.logger.Error("Error filtering sequencer logs", log.ErrKey, err) return []types.Log{}, err } - - // TODO convert to add sequencer? - return sequencerLogs, nil } diff --git a/go/host/l1/publisher.go b/go/host/l1/publisher.go index 11a5907c58..8fcf92c25c 100644 --- a/go/host/l1/publisher.go +++ b/go/host/l1/publisher.go @@ -310,8 +310,11 @@ func (p *Publisher) PublishCrossChainBundle(bundle *common.ExtCrossChainBundle, } transactor.Nonce = big.NewInt(0).SetUint64(nonce) - println("HOST WALLET NONCE: ", p.hostWallet.GetNonce()) - println("TRANSACTOR NONCE: ", transactor.Nonce.Uint64()) + + println("PublishCrossChainBundle L1 block num: ", bundle.L1BlockNum.Uint64()) + println("PublishCrossChainBundle rollupNum: ", rollupNum.Uint64()) + println("PublishCrossChainBundle nonce: ", nonce) + tx, err := managementCtr.AddCrossChainMessagesRoot(transactor, [32]byte(bundle.LastBatchHash.Bytes()), bundle.L1BlockHash, bundle.L1BlockNum, bundle.CrossChainRootHashes, bundle.Signature, rollupNum, forkID) if err != nil { if !errors.Is(err, errutil.ErrCrossChainBundleRepublished) { diff --git a/go/host/l2/batchrepository.go b/go/host/l2/batchrepository.go index f2beab6ce3..c7fad48a98 100644 --- a/go/host/l2/batchrepository.go +++ b/go/host/l2/batchrepository.go @@ -63,6 +63,9 @@ type Repository struct { } func NewBatchRepository(cfg *hostconfig.HostConfig, hostService batchRepoServiceLocator, storage storage.Storage, logger gethlog.Logger) *Repository { + if cfg.NodeType == common.ActiveSequencer { + println("SEQUENCER CONFIGURED") + } return &Repository{ batchSubscribers: subscription.NewManager[host.L2BatchHandler](), validatedBatchSubscribers: subscription.NewManager[host.L2BatchHandler](), diff --git a/go/node/docker_node.go b/go/node/docker_node.go index ec9df21e30..56e435c84b 100644 --- a/go/node/docker_node.go +++ b/go/node/docker_node.go @@ -35,7 +35,7 @@ func NewDockerNode(cfg *config.TenConfig, hostImage, enclaveImage, edgelessDBIma func (d *DockerNode) Start() error { // todo (@pedro) - this should probably be removed in the future - d.cfg.PrettyPrint() // dump config to stdout + //d.cfg.PrettyPrint() // dump config to stdout err := d.startEdgelessDB() if err != nil { diff --git a/integration/simulation/utils.go b/integration/simulation/utils.go index 68523b132a..cc64760a0e 100644 --- a/integration/simulation/utils.go +++ b/integration/simulation/utils.go @@ -28,7 +28,7 @@ func setupSimTestLog(simType string) { LogDir: testLogs, TestType: "sim-log", TestSubtype: simType, - LogLevel: log.LvlDebug, + LogLevel: log.LvlInfo, }) } diff --git a/nodelogs-working.txt b/nodelogs-working.txt new file mode 100644 index 0000000000..3461804b55 --- /dev/null +++ b/nodelogs-working.txt @@ -0,0 +1,2055 @@ +INFO [12-05|10:06:16.729] Creating enclave service with following config component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc cfg="{\n \"HostID\": \"0x5e7a62a400f5b80f6d732ead82391c9c02282ddc\",\n \"HostAddress\": \"127.0.0.1:16604\",\n \"Address\": \"127.0.0.1:16704\",\n \"NodeType\": 1,\n \"L1ChainID\": 1337,\n \"ObscuroChainID\": 443,\n \"WillAttest\": false,\n \"ValidateL1Blocks\": false,\n \"GenesisJSON\": null,\n \"ManagementContractAddress\": \"0xf3be1f5bac1ccdb46736beacf40d851c06c8bec8\",\n \"LogLevel\": 1,\n \"LogPath\": \"../.build/simulations/sim-log-2024-12-05_10-03-33-full-network-4167492917.txt\",\n \"UseInMemoryDB\": true,\n \"EdgelessDBHost\": \"\",\n \"SqliteDBPath\": \"\",\n \"ProfilerEnabled\": false,\n \"MinGasPrice\": 1000000000,\n \"MessageBusAddress\": \"0xdf5da871d676f688bab28168cca6ff6b60daaaab\",\n \"SystemContractOwner\": \"0x0100000000000000000000000000000000000000\",\n \"SequencerP2PAddress\": \"127.0.0.1:16600\",\n \"TenGenesis\": \"{}\",\n \"DebugNamespaceEnabled\": true,\n \"MaxBatchSize\": 56320,\n \"MaxRollupSize\": 131072,\n \"GasPaymentAddress\": \"0x95c4303ea3b4da105cef97e32ce16f2ea5a2c555\",\n \"BaseFee\": 1000000000,\n \"GasBatchExecutionLimit\": 300000000000,\n \"GasLocalExecutionCapFlag\": 300000000000,\n \"RPCTimeout\": 5000000000\n}" +INFO [12-05|10:06:16.732] UseInMemoryDB flag is true, data will not be persisted. Creating temporary sqlite database... component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:06:16.733] Connect to sqlite component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc path="file:/tmp/ten-persistence/X2KpJ/enclave.db?mode=rw&_foreign_keys=on&_journal_mode=wal&_txlock=immediate&_synchronous=normal" +INFO [12-05|10:06:16.740] Opened new sqlite db file at /tmp/ten-persistence/X2KpJ/enclave.db component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:06:16.740] Connect to sqlite component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc ro_path="file:/tmp/ten-persistence/X2KpJ/enclave.db?mode=ro&_foreign_keys=on&_journal_mode=wal&_txlock=immediate&_synchronous=normal" +INFO [12-05|10:06:16.740] Generating new enclave key component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:06:16.741] L2 Cross Chain Owner Address: 0xE7927CF0fED1dDAC42Ff6A557E01740D715579Bf component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc component=cross_chain +INFO [12-05|10:06:16.741] Load: Initializing system contracts component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +ERROR[12-05|10:06:16.741] Load: Failed fetching batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batchSeqNo=2 error="not found" +WARN [12-05|10:06:16.741] WARNING - Attestation is not enabled, enclave will not create a verified attestation report. component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +WARN [12-05|10:06:16.741] could not read enclave pub key. Defaulting to validator type component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc err="could not retrieve attestation key for address 0x7143831b66bEA963342A98ce7bB957B1ec513c8B. Cause: not found" +WARN [12-05|10:06:16.741] could not read enclave pub key. Defaulting to validator type component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc err="could not retrieve attestation key for address 0x7143831b66bEA963342A98ce7bB957B1ec513c8B. Cause: not found" +WARN [12-05|10:06:16.741] could not read enclave pub key. Defaulting to validator type component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc err="could not retrieve attestation key for address 0x7143831b66bEA963342A98ce7bB957B1ec513c8B. Cause: not found" +INFO [12-05|10:06:16.741] Enclave service created successfully. component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B +INFO [12-05|10:06:16.741] obscuro enclave RPC service started. component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:06:16.741] RPCServer listening on address 127.0.0.1:16704. component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:06:16.742] Building host container with config: &{L1ChainID:1337 ObscuroChainID:443 L1StartHash:0x0000000000000000000000000000000000000000000000000000000000000000 SequencerP2PAddress:127.0.0.1:16600 ManagementContractAddress:0xF3be1f5BaC1ccDB46736beaCf40d851C06c8BeC8 MessageBusAddress:0xdF5DA871D676F688BAB28168CcA6FF6B60daAaab BatchInterval:1s MaxBatchInterval:1s RollupInterval:5s MaxRollupSize:131072 L1BlockTime:1s CrossChainInterval:6s ID:0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc PrivateKeyString:a8246f156e884f1ce5c4d51aa87166b4731ca2d6f5bddd6e1bb4ac8ca5655542 IsGenesis:false NodeType:validator LogLevel:1 LogPath: UseInMemoryDB:true PostgresDBHost: SqliteDBPath: HasClientRPCHTTP:true ClientRPCPortHTTP:16804 HasClientRPCWebsockets:true ClientRPCPortWS:16904 ClientRPCHost:0.0.0.0 EnclaveRPCAddresses:[127.0.0.1:16704] P2PBindAddress:127.0.0.1:16604 P2PPublicAddress:127.0.0.1:16604 L1WebsocketURL:ws://127.0.0.1:16100 L1BeaconUrl:127.0.0.1:16560 L1BlobArchiveUrl: EnclaveRPCTimeout:10s L1RPCTimeout:15s P2PConnectionTimeout:10s ProfilerEnabled:false MetricsEnabled:true MetricsHTTPPort:0 DebugNamespaceEnabled:true IsInboundP2PDisabled:false} component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:06:17.251] UseInMemoryDB flag is true, data will not be persisted. Creating in-memory database... component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:06:17.257] Host service created with following config: component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc cfg="{\n \"L1ChainID\": 1337,\n \"ObscuroChainID\": 443,\n \"L1StartHash\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n \"SequencerP2PAddress\": \"127.0.0.1:16600\",\n \"ManagementContractAddress\": \"0xf3be1f5bac1ccdb46736beacf40d851c06c8bec8\",\n \"MessageBusAddress\": \"0xdf5da871d676f688bab28168cca6ff6b60daaaab\",\n \"BatchInterval\": 1000000000,\n \"MaxBatchInterval\": 1000000000,\n \"RollupInterval\": 5000000000,\n \"MaxRollupSize\": 131072,\n \"L1BlockTime\": 1000000000,\n \"CrossChainInterval\": 6000000000,\n \"ID\": \"0x5e7a62a400f5b80f6d732ead82391c9c02282ddc\",\n \"PrivateKeyString\": \"a8246f156e884f1ce5c4d51aa87166b4731ca2d6f5bddd6e1bb4ac8ca5655542\",\n \"IsGenesis\": false,\n \"NodeType\": 1,\n \"LogLevel\": 1,\n \"LogPath\": \"\",\n \"UseInMemoryDB\": true,\n \"PostgresDBHost\": \"\",\n \"SqliteDBPath\": \"\",\n \"HasClientRPCHTTP\": true,\n \"ClientRPCPortHTTP\": 16804,\n \"HasClientRPCWebsockets\": true,\n \"ClientRPCPortWS\": 16904,\n \"ClientRPCHost\": \"0.0.0.0\",\n \"EnclaveRPCAddresses\": [\n \"127.0.0.1:16704\"\n ],\n \"P2PBindAddress\": \"127.0.0.1:16604\",\n \"P2PPublicAddress\": \"127.0.0.1:16604\",\n \"L1WebsocketURL\": \"ws://127.0.0.1:16100\",\n \"L1BeaconUrl\": \"127.0.0.1:16560\",\n \"L1BlobArchiveUrl\": \"\",\n \"EnclaveRPCTimeout\": 10000000000,\n \"L1RPCTimeout\": 15000000000,\n \"P2PConnectionTimeout\": 10000000000,\n \"ProfilerEnabled\": false,\n \"MetricsEnabled\": true,\n \"MetricsHTTPPort\": 0,\n \"DebugNamespaceEnabled\": true,\n \"IsInboundP2PDisabled\": false\n}" +INFO [12-05|10:06:17.259] HTTP Metric server started component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc address=0.0.0.0:0 +INFO [12-05|10:06:17.264] Starting guardian process. component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B +INFO [12-05|10:06:17.265] Starting L2 update stream from enclave component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B +INFO [12-05|10:06:17.265] P2P server started listening component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc component=p2p bindAddress=127.0.0.1:16604 publicAddress=127.0.0.1:16604 +INFO [12-05|10:06:17.265] Updating enclave status from [Disconnected] to [AwaitingSecret] component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B state="StateTracker: [Disconnected] enclave(StatusCode=1, L1Head=0x0000000000000000000000000000000000000000000000000000000000000000, L2Head=0), Host(L1Head=0x0000000000000000000000000000000000000000000000000000000000000000, L2Head=)" +INFO [12-05|10:06:17.265] Host started with following config component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc cfg="l1_chain_id = 1337\nobscuro_chain_id = 443\nl1_start_hash = \"0x0000000000000000000000000000000000000000000000000000000000000000\"\nsequencer_p2_p_address = \"127.0.0.1:16600\"\nmanagement_contract_address = \"0xf3be1f5bac1ccdb46736beacf40d851c06c8bec8\"\nmessage_bus_address = \"0xdf5da871d676f688bab28168cca6ff6b60daaaab\"\nbatch_interval = 1000000000\nmax_batch_interval = 1000000000\nrollup_interval = 5000000000\nmax_rollup_size = 131072\nl1_block_time = 1000000000\ncross_chain_interval = 6000000000\nid = \"0x5e7a62a400f5b80f6d732ead82391c9c02282ddc\"\nprivate_key_string = \"a8246f156e884f1ce5c4d51aa87166b4731ca2d6f5bddd6e1bb4ac8ca5655542\"\nis_genesis = false\nnode_type = 1\nlog_level = 1\nlog_path = \"\"\nuse_in_memory_d_b = true\npostgres_d_b_host = \"\"\nsqlite_d_b_path = \"\"\nhas_client_rpc_h_http = true\nclient_rpc_port_h_http = 16804\nhas_client_rpc_websockets = true\nclient_rpc_port_w_s = 16904\nclient_rpc_host = \"0.0.0.0\"\nenclave_rpc_addresses = [\"127.0.0.1:16704\"]\np2_p_bind_address = \"127.0.0.1:16604\"\np2_p_public_address = \"127.0.0.1:16604\"\nl1_websocket_url = \"ws://127.0.0.1:16100\"\nl1_beacon_url = \"127.0.0.1:16560\"\nl1_blob_archive_url = \"\"\nenclave_rpc_timeout = 10000000000\nl1_rpc_timeout = 15000000000\np2_p_connection_timeout = 10000000000\nprofiler_enabled = false\nmetrics_enabled = true\nmetrics_http_port = 0\ndebug_namespace_enabled = true\nis_inbound_p2_p_disabled = false\n" +INFO [12-05|10:06:17.265] Started Obscuro host... component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:06:17.266] Requesting secret. component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B +INFO [12-05|10:06:17.266] HTTP server started component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc endpoint=[::]:16804 auth=false prefix= cors=* vhosts=* +INFO [12-05|10:06:17.266] WebSocket enabled component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc url=ws://[::]:16904 +INFO [12-05|10:06:17.266] Started Obscuro host RPC Server... component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:06:17.269] Host preparing to issue L1 tx component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:06:17.272] Host issuing L1 tx component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc tx=0x09aecde6b5fc1c9090b0712cc57ca8cebbd0b6410afe8d3f0568ebcd038a1800 size=0 retries=0 +INFO [12-05|10:06:17.273] Successfully submitted tx to L1 component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc txHash=0x09aecde6b5fc1c9090b0712cc57ca8cebbd0b6410afe8d3f0568ebcd038a1800 +INFO [12-05|10:06:23.293] Receipt not found for transaction, we will re-attempt component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc err="timed out after 6s (7 attempts) - latest error: could not get receipt publishing tx for L1 tx=0x09aecde6b5fc1c9090b0712cc57ca8cebbd0b6410afe8d3f0568ebcd038a1800: not found" +INFO [12-05|10:06:23.299] Host issuing L1 tx component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc tx=0x11d39f5c1774c84b7ff0be76b31c0f875d01668e697adba6c15deec091cdd10a size=0 retries=1 +INFO [12-05|10:06:23.302] Successfully submitted tx to L1 component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc txHash=0x11d39f5c1774c84b7ff0be76b31c0f875d01668e697adba6c15deec091cdd10a +INFO [12-05|10:07:14.483] Secret received component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B +INFO [12-05|10:07:14.483] Updating enclave status from [AwaitingSecret] to [L1Catchup] component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B state="StateTracker: [AwaitingSecret] enclave(StatusCode=0, L1Head=0x0000000000000000000000000000000000000000000000000000000000000000, L2Head=0), Host(L1Head=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b, L2Head=48)" +INFO [12-05|10:07:14.485] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=0 block_hash=0xd457166476301ff5f6b6b207552736d94d7bc2c2a549788c601f29c807799976 +INFO [12-05|10:07:14.485] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xd457166476301ff5f6b6b207552736d94d7bc2c2a549788c601f29c807799976 +INFO [12-05|10:07:14.487] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=1 block_hash=0x489b2e76b1da7d6888c1ddbc8662a2111b7dcb5b26ecd5f4c7e17b5b7bb6c02f +INFO [12-05|10:07:14.487] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x489b2e76b1da7d6888c1ddbc8662a2111b7dcb5b26ecd5f4c7e17b5b7bb6c02f +INFO [12-05|10:07:14.489] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=2 block_hash=0x4a899c63a636dac6acaedc57ce341078fc28f438bc3c1514e35bca5b8120f842 +INFO [12-05|10:07:14.489] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x4a899c63a636dac6acaedc57ce341078fc28f438bc3c1514e35bca5b8120f842 +INFO [12-05|10:07:14.491] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=3 block_hash=0x06490e097dad8d70ba58a2887581ac3259206f9fcd310f02c17f6608e15ff2e8 +INFO [12-05|10:07:14.491] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x06490e097dad8d70ba58a2887581ac3259206f9fcd310f02c17f6608e15ff2e8 +INFO [12-05|10:07:14.494] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=4 block_hash=0x59f5c5566120125748bb0107c240fc086239fbb85d755ff818985d220764712a +INFO [12-05|10:07:14.494] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x59f5c5566120125748bb0107c240fc086239fbb85d755ff818985d220764712a +INFO [12-05|10:07:14.495] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=5 block_hash=0x1147f5be7edb4d37ae3e5cc35a782e4f0aaebf043f58e63a22b2818ccbc65cde +INFO [12-05|10:07:14.495] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x1147f5be7edb4d37ae3e5cc35a782e4f0aaebf043f58e63a22b2818ccbc65cde +INFO [12-05|10:07:14.497] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=6 block_hash=0x06a72497af0e73e0d220912b2a3695f3bf735ebb03321814b461ac9775bb3679 +INFO [12-05|10:07:14.497] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x06a72497af0e73e0d220912b2a3695f3bf735ebb03321814b461ac9775bb3679 +INFO [12-05|10:07:14.499] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=7 block_hash=0xe43b4e15d0f42c238a9ebd09d7d8462d3d6ad03f5455a2494739aaf25325f273 +INFO [12-05|10:07:14.499] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xe43b4e15d0f42c238a9ebd09d7d8462d3d6ad03f5455a2494739aaf25325f273 +INFO [12-05|10:07:14.501] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=8 block_hash=0x98bce010c031cb3e8713f12f9c2feefffe0ebc36fa75333dadd9f981ef24c492 +INFO [12-05|10:07:14.501] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x98bce010c031cb3e8713f12f9c2feefffe0ebc36fa75333dadd9f981ef24c492 +INFO [12-05|10:07:14.509] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=9 block_hash=0xcb573cf3bba076b710275165c195a160e48211b25ee3ba9f4cb03d959a93739c +INFO [12-05|10:07:14.509] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xcb573cf3bba076b710275165c195a160e48211b25ee3ba9f4cb03d959a93739c +INFO [12-05|10:07:14.521] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=10 block_hash=0x1883ff15ad78e7c9bb1eb60daa6ed112a271aef71f820678e6a016f48d5eff83 +INFO [12-05|10:07:14.521] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x1883ff15ad78e7c9bb1eb60daa6ed112a271aef71f820678e6a016f48d5eff83 +INFO [12-05|10:07:14.524] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=11 block_hash=0xb2751f9eab0f1c8ffc40b1012703c38755d6eb0d078dbb779cad7a4e9cb7e367 +INFO [12-05|10:07:14.524] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xb2751f9eab0f1c8ffc40b1012703c38755d6eb0d078dbb779cad7a4e9cb7e367 +INFO [12-05|10:07:14.530] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=12 block_hash=0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a +INFO [12-05|10:07:14.530] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a +INFO [12-05|10:07:14.536] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=13 block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:14.536] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:14.537] Store attestation. Owner: 0xdb5DD1710c847220bB1168dEee32c37EC92F6632 component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:07:14.537] Process shared secret request. component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height="&{ParentHash:0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a UncleHash:0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347 Coinbase:0x123463a4B065722E99115D6c222f267d9cABb524 Root:0x5aa1ee8a4ef49aa5aef349c52feca5146efd3dd1fa3e447f33b14ad33c949958 TxHash:0x689ea5eb44092b7ffc59a9a4767dac9183b1eec67c387521a7cc6f25ef4c4528 ReceiptHash:0x98bbbc489bfa82690931e7ed9983c21aaa18874695322d679cf968ad22010502 Bloom:[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 1 0 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 128 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 0 0 0 0 64 0 4 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] Difficulty:+0 Number:+13 GasLimit:30000000 GasUsed:201980 Time:1733393186 Extra:[217 131 1 14 6 132 103 101 116 104 136 103 111 49 46 50 49 46 48 134 100 97 114 119 105 110] MixDigest:0xcb35c572fe032cfcaa455eddb18550df4ddc3899a93fc2783c3e3a2acaaa5632 Nonce:[0 0 0 0 0 0 0 0] BaseFee:+192882353 WithdrawalsHash:0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421 BlobGasUsed:0x140045bda28 ExcessBlobGas:0x140045bda30 ParentBeaconRoot:0x7352e839bd1d7cec131691a67da385df0c5c044f6eae33bb6b37a0d1218399e4}" block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 tx=0x94a553e76b1842a93891f61053b2670ea0667faa0b3bdb6690a58a41970e47f5 +INFO [12-05|10:07:14.537] received attestation component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc attestation="&{Report:[77 79 67 75 32 82 69 80 79 82 84] PubKey:[2 127 2 28 125 115 198 171 146 229 221 170 57 26 199 218 110 248 226 23 124 240 152 140 227 231 142 55 61 184 204 136 174] EnclaveID:0x6C5Da44dd1B1aA7ad611e811ac694C9963B1ae56 HostAddress:127.0.0.1:16601}" +INFO [12-05|10:07:14.537] Successfully verified attestation and identity. Owner: 0x6C5Da44dd1B1aA7ad611e811ac694C9963B1ae56 component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:07:14.537] Encrypting secret with public key 027f021c7d73c6ab92e5ddaa391ac7da6ef8e2177cf0988ce3e78e373db8cc88ae component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:07:14.537] Store attestation. Owner: 0x6C5Da44dd1B1aA7ad611e811ac694C9963B1ae56 component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:07:14.537] Process shared secret request. component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height="&{ParentHash:0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a UncleHash:0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347 Coinbase:0x123463a4B065722E99115D6c222f267d9cABb524 Root:0x5aa1ee8a4ef49aa5aef349c52feca5146efd3dd1fa3e447f33b14ad33c949958 TxHash:0x689ea5eb44092b7ffc59a9a4767dac9183b1eec67c387521a7cc6f25ef4c4528 ReceiptHash:0x98bbbc489bfa82690931e7ed9983c21aaa18874695322d679cf968ad22010502 Bloom:[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 1 0 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 128 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 0 0 0 0 64 0 4 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] Difficulty:+0 Number:+13 GasLimit:30000000 GasUsed:201980 Time:1733393186 Extra:[217 131 1 14 6 132 103 101 116 104 136 103 111 49 46 50 49 46 48 134 100 97 114 119 105 110] MixDigest:0xcb35c572fe032cfcaa455eddb18550df4ddc3899a93fc2783c3e3a2acaaa5632 Nonce:[0 0 0 0 0 0 0 0] BaseFee:+192882353 WithdrawalsHash:0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421 BlobGasUsed:0x140045bda28 ExcessBlobGas:0x140045bda30 ParentBeaconRoot:0x7352e839bd1d7cec131691a67da385df0c5c044f6eae33bb6b37a0d1218399e4}" block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 tx=0x128c66a948522c5e854b52270c65e44c29e4c8cd09406752471a0e46760eb2a8 +INFO [12-05|10:07:14.537] received attestation component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc attestation="&{Report:[77 79 67 75 32 82 69 80 79 82 84] PubKey:[2 96 133 8 7 18 51 20 104 30 42 202 189 216 155 111 18 212 53 76 103 239 1 238 130 133 69 26 229 184 216 228 74] EnclaveID:0x9Bf0f1aAA985F45cA454df13d2F792154711805e HostAddress:127.0.0.1:16602}" +INFO [12-05|10:07:14.537] Successfully verified attestation and identity. Owner: 0x9Bf0f1aAA985F45cA454df13d2F792154711805e component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:07:14.537] Encrypting secret with public key 0260850807123314681e2acabdd89b6f12d4354c67ef01ee8285451ae5b8d8e44a component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:07:14.538] Store attestation. Owner: 0x9Bf0f1aAA985F45cA454df13d2F792154711805e component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:07:14.538] Process shared secret request. component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height="&{ParentHash:0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a UncleHash:0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347 Coinbase:0x123463a4B065722E99115D6c222f267d9cABb524 Root:0x5aa1ee8a4ef49aa5aef349c52feca5146efd3dd1fa3e447f33b14ad33c949958 TxHash:0x689ea5eb44092b7ffc59a9a4767dac9183b1eec67c387521a7cc6f25ef4c4528 ReceiptHash:0x98bbbc489bfa82690931e7ed9983c21aaa18874695322d679cf968ad22010502 Bloom:[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 1 0 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 128 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 0 0 0 0 64 0 4 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] Difficulty:+0 Number:+13 GasLimit:30000000 GasUsed:201980 Time:1733393186 Extra:[217 131 1 14 6 132 103 101 116 104 136 103 111 49 46 50 49 46 48 134 100 97 114 119 105 110] MixDigest:0xcb35c572fe032cfcaa455eddb18550df4ddc3899a93fc2783c3e3a2acaaa5632 Nonce:[0 0 0 0 0 0 0 0] BaseFee:+192882353 WithdrawalsHash:0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421 BlobGasUsed:0x140045bda28 ExcessBlobGas:0x140045bda30 ParentBeaconRoot:0x7352e839bd1d7cec131691a67da385df0c5c044f6eae33bb6b37a0d1218399e4}" block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 tx=0xd2eb88a2c5a73f5c3ae2b950c094cc868f30dd0811c6853c2d9fcb830e61ddcc +INFO [12-05|10:07:14.538] received attestation component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc attestation="&{Report:[77 79 67 75 32 82 69 80 79 82 84] PubKey:[2 235 253 161 153 222 96 80 249 111 132 202 176 65 176 75 51 11 91 193 45 103 162 213 68 251 221 78 247 161 173 162 189] EnclaveID:0xF34A4a7381a524f4437dbb5f66d402c986C2bB24 HostAddress:127.0.0.1:16603}" +INFO [12-05|10:07:14.538] Successfully verified attestation and identity. Owner: 0xF34A4a7381a524f4437dbb5f66d402c986C2bB24 component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:07:14.538] Encrypting secret with public key 02ebfda199de6050f96f84cab041b04b330b5bc12d67a2d544fbdd4ef7a1ada2bd component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:07:14.538] Store attestation. Owner: 0xF34A4a7381a524f4437dbb5f66d402c986C2bB24 component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:07:14.538] Process shared secret request. component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height="&{ParentHash:0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a UncleHash:0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347 Coinbase:0x123463a4B065722E99115D6c222f267d9cABb524 Root:0x5aa1ee8a4ef49aa5aef349c52feca5146efd3dd1fa3e447f33b14ad33c949958 TxHash:0x689ea5eb44092b7ffc59a9a4767dac9183b1eec67c387521a7cc6f25ef4c4528 ReceiptHash:0x98bbbc489bfa82690931e7ed9983c21aaa18874695322d679cf968ad22010502 Bloom:[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 1 0 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 128 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 0 0 0 0 64 0 4 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] Difficulty:+0 Number:+13 GasLimit:30000000 GasUsed:201980 Time:1733393186 Extra:[217 131 1 14 6 132 103 101 116 104 136 103 111 49 46 50 49 46 48 134 100 97 114 119 105 110] MixDigest:0xcb35c572fe032cfcaa455eddb18550df4ddc3899a93fc2783c3e3a2acaaa5632 Nonce:[0 0 0 0 0 0 0 0] BaseFee:+192882353 WithdrawalsHash:0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421 BlobGasUsed:0x140045bda28 ExcessBlobGas:0x140045bda30 ParentBeaconRoot:0x7352e839bd1d7cec131691a67da385df0c5c044f6eae33bb6b37a0d1218399e4}" block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 tx=0x11d39f5c1774c84b7ff0be76b31c0f875d01668e697adba6c15deec091cdd10a +INFO [12-05|10:07:14.538] received attestation component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc attestation="&{Report:[77 79 67 75 32 82 69 80 79 82 84] PubKey:[3 195 130 176 113 214 204 59 146 78 5 125 67 55 75 146 246 210 18 189 220 85 171 223 229 127 28 229 235 9 58 243 175] EnclaveID:0x7143831b66bEA963342A98ce7bB957B1ec513c8B HostAddress:127.0.0.1:16604}" +INFO [12-05|10:07:14.538] Successfully verified attestation and identity. Owner: 0x7143831b66bEA963342A98ce7bB957B1ec513c8B component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:07:14.538] Encrypting secret with public key 03c382b071d6cc3b924e057d43374b92f6d212bddc55abdfe57f1ce5eb093af3af component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:07:14.538] Store attestation. Owner: 0x7143831b66bEA963342A98ce7bB957B1ec513c8B component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:07:14.541] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=14 block_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:14.541] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:14.543] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=15 block_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:14.543] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:14.545] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=16 block_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:14.545] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:14.547] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=17 block_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:14.547] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:14.548] Updating enclave status from [L1Catchup] to [L2Catchup] component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b, L2Head=0), Host(L1Head=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b, L2Head=48)" +INFO [12-05|10:07:14.548] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=0 batch=0x3de648964517100bbea3a8a765beece8134f1895d36a89e51edce8fc2a5be1a0 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:14.549] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=1 batch=0xf39889c3306495ea2a29b18f006bdefa015373b6cd0e6f8b7fe5593a6b85f4ea l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:14.549] Generated synthetic deployment transaction for the SystemDeployer contract component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:07:14.552] Initialize: Starting initialization of system contracts component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batchSeqNo=2 +INFO [12-05|10:07:14.552] Initialize: Initializing required addresses component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc addresses="map[Fees:0xcA0455DDEE5AAF5749b394a541BAA8DedFeB93CA MessageBus:0x45d8d4e632D82699433F6657AA7301e3744b666B PublicCallbacks:0xF77229630f48F0cB49e6739e7890ddDF96E11AB9 TransactionsPostProcessor:0xc94693CD0a8217F6f45f398d8a8C0b6586966Fc6]" +INFO [12-05|10:07:14.557] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=2 batch=0x7217b4882f294799c12a84fdc3fdc26a88b3ed8884cb7f099490e09fe7eaef50 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:14.557] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe637645fb2da977e58c1427e0ce5b5da6194f1d2c7589a33b05591582a122861 +INFO [12-05|10:07:14.558] Starting tx pool component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:07:14.558] Tx pool started component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc +INFO [12-05|10:07:14.558] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=3 batch=0x0624d5bfc1d2a91804635f9b92f5cecbe302b6702b2595febd1743c29bbf9e2a l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:14.558] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x081a460bf183daaf19032fd97cfe8884852279b921c8726983bfe58b2de0b282 +INFO [12-05|10:07:14.559] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=4 batch=0x3137f2f921ac789a4966dac2bacd7a9a7ebc3469ab932a6dae718a16bff33bda l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:14.560] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x24c9b786c00bb4fc9eb6afac7d78525ce5a0a2fb4bacf3833d4dc04e3d9b9172 +INFO [12-05|10:07:14.561] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=5 batch=0xc13a820fa81dd04f43a518f3037bcadfcd4e606fe82d198eb2dfa636e0c3c633 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:14.561] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1fd54aadae3a61fd76acae78597a38911f345b22bef392ec53e9c82b57a84806 +INFO [12-05|10:07:14.562] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=6 batch=0x74cb47a18d7b4f391a8dbd1df50bcc26275d37d86d25264d6e4a74d78e6ca637 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:14.562] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x34fccf45cecf0e3b228f4e087f8ab36b83608016423e306190d040f4774fdce8 +INFO [12-05|10:07:14.563] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=7 batch=0x8de95dcd4e9d8a3633a011395e0cdef9991c94fcd910dea25ab360134151969b l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:14.563] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x80d8c7bfca2fe44715294d937b3cd1b81778c17e1fdd211e1a6fcd26eef46ab8 +INFO [12-05|10:07:14.564] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=8 batch=0x4729f0043551af8e014c445341195ea2610091f539faf1d601d2e1134facd3cc l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:14.565] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcda2160e52d3e6ea097abe1a1bd3065d690a3ef6af953d0bc85cb6af2ef8f707 +INFO [12-05|10:07:14.566] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=9 batch=0xca0a0904422862de00bc2b09beb60ed69fbaeb5c3d59ab0bd88272000e101593 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:14.566] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x11bc14c3cd1e1b9b5eff4a3c805a7383b826157fa8df27c0a6ef7c0870c6f6c4 +INFO [12-05|10:07:14.567] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xca0a0904422862de00bc2b09beb60ed69fbaeb5c3d59ab0bd88272000e101593 batch_seq_num=10 +INFO [12-05|10:07:14.567] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=10 batch=0x09e99931a3c7df09360aa758e7036a09abee0fae29fc02a8441845523a36e2d5 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:14.568] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf310da7d9638e178c1329271044a1b4e7974f1b143a93d34aadaa788493dd527 +INFO [12-05|10:07:14.568] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=11 batch=0x78826143a1f6963083e3d51beb97c48dd19f631b542499396c0c571f4806d6fc l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:14.569] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x05f93fd7b9a268d547e7ca8c161f939f85af4a47aa04d6bea3449dbd6d232518 +INFO [12-05|10:07:14.570] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=12 batch=0x35d785673b2efc8eb959be4e8b3e0cd0f2a0df8c35498eef86baf2aefdd962df l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:14.571] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd7a91405aa1c91ac9f7464d9c4ac82df488a33d360cb40c0fa2aca34e3c7e9c8 +INFO [12-05|10:07:14.572] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=13 batch=0xa460a3e8eab64eab4e23efce0978e47d4bdc5e3c08638d8e9c3d3781dbf9a332 l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:14.572] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6b5253b4a40cdcd398a9ac2c874d06a922a7476d41e48b274ca3579ea485fa2d +INFO [12-05|10:07:14.573] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=14 batch=0x1c423e0d744247d10338257bc82499cde69f0b8161dd89d6cfcad90de16077a4 l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:14.573] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6b4ebe2e46d6722f6356a2200fdcc213f6c2a636b1f4244134bd79022c6a7947 +INFO [12-05|10:07:14.574] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=15 batch=0x6e87a0aa27393d18bdb5ba1d09606dc8e80a56bb2fdb86ab93649648eab0a76f l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:14.575] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x08eea0782beebe1f42c1702be93f6bb5c4d1392deb2869ca78d71a6acfb2e7f6 +INFO [12-05|10:07:14.576] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=16 batch=0x5c2a1cb7b9d4ea484de96fcdd00d0639e8e42fa3e8a6aa9ecfcf979c20b8519c l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:14.576] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb75c9ed7e7ca57e0b9b9689f72035d795fd28e700e3ae062e939ada681ffc48d +INFO [12-05|10:07:14.577] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=17 batch=0x53d7e6a35fb6cb053a42b033854f54e429173cfbd39b55095636096c90223431 l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:14.577] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd495e6d31afed537c0e202c200bfe79658d46d1452cb500462be5f85b06f2f37 +INFO [12-05|10:07:14.578] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=18 batch=0x309dee7f32d3c407ee39f07866045ed717e6968c4ad21d1d5b3c4291bb49b58b l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:14.579] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf56091bceded330e236c5dcca125bf19cef9eda51b85179208cd885984992517 +INFO [12-05|10:07:14.580] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=19 batch=0x5831879c688e5a2a4b487e03bf75f61857db1eede569e7c8e818c18f3ea0a326 l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:14.580] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9da96de6dac5c073414be4f1201f8055a26bda623cbb151195e24b8caffd9f72 +INFO [12-05|10:07:14.581] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x5831879c688e5a2a4b487e03bf75f61857db1eede569e7c8e818c18f3ea0a326 batch_seq_num=20 +INFO [12-05|10:07:14.583] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=20 batch=0xb2cf60c5e5e430370e6b8bc4270a4a678b2041c124638ae6927e47c104af124a l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:14.584] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1ec4e1c7ce22d576a120dad9cd17c36d4b884c449f4cc013629fda35dd96babd +INFO [12-05|10:07:14.585] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=21 batch=0xa5e74e82af9b1318727c26e8f22a278c659d47891c3348462f84d69f7c208044 l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:14.586] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x00e082de518ccc3ce29a676a6db884983727abe42d996d79b2970d6ab17e8e8a +INFO [12-05|10:07:14.587] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=22 batch=0x81a9e7fec76cb9ca58682548294202400172c967b6fb7a836844573ccb5bddc0 l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:14.588] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcb9b03ccdfe02dc8587aac43e065f30984322a7a7126a7bb553263cd7c489314 +INFO [12-05|10:07:14.588] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=23 batch=0xd1163a5905825e0cc81e10325a91f4706f72431f20b06c45d890be4f80a8b6ac l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:14.589] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9244b304fb0cbd1d12b5a56ac34ced25f8b7c2492859f4932f357b02aa0163c8 +INFO [12-05|10:07:14.590] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=24 batch=0x6a0de480f6f404d059fc2ee75d2eb0002843f1ad3945d5065dc8551a951ba04a l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:14.590] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd68dc9b8aff15b3e84490ca424d59e4267fd1cec47d3ca8b844dd1d53d55068d +INFO [12-05|10:07:14.591] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=25 batch=0xdf14ed3df2df629b72d32d5995c479276f40fab511b5ff85e2671f2ddbc2dfda l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:14.592] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfb89f0c694c5ffa87d3f16f2098c7c7ef924cdea2f191e3e3e1a04c9d081617e +INFO [12-05|10:07:14.593] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=26 batch=0xb8f38326d1b81d27d65eb7344855f03d87d002cc69086f307f22e87ea63d99a8 l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:14.594] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd258fe8c7a9ee2275b707f8415c1fd87cbabefe81af5b5a406525d521d703821 +INFO [12-05|10:07:14.594] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=27 batch=0xa097b0c5c8a7ac2872004fe61ef979f9936fdda50199869189661995eb9f4bc1 l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:14.595] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbfafb2fbedda7f34c7a7bba3339a8bd21e8d3b02fb3d3247a393bf54a7439ae5 +INFO [12-05|10:07:14.596] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=28 batch=0x7ae6fa11c27b2affb6151027e473e0b4a572d8dbf4b2fae41a49ec6aeb3559c7 l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:14.596] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcebc0b1370480a066b43d65016052c8efe8afb7a3e18aca53a12b2a7cc7a041c +INFO [12-05|10:07:14.597] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=29 batch=0xfc755fb0418b3057fdb27f79bad46dc599baff436fc8de3ad6aefa06225808ce l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:14.598] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbc2729e79df378b7278b78adac7cc5fd35712eb222566f6dbec8dae0e9e42ddd +INFO [12-05|10:07:14.598] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xfc755fb0418b3057fdb27f79bad46dc599baff436fc8de3ad6aefa06225808ce batch_seq_num=30 +INFO [12-05|10:07:14.598] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=30 batch=0x35a9d5d463414fdc58f207806803e246228fa7e1e9e36f2c671a9523ea3f263b l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:14.599] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5de887dc68878b0b283f2f6fb4acb40ff4ca725087cec4989d178e6906f25bb0 +INFO [12-05|10:07:14.600] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=31 batch=0xb22a47aaaa249079bc30f36c509a5b882f8c3ce0a6d2a19927e1e8e05b048952 l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:14.600] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbbcba24828e69733fc6ceab3d3db2cf30d5c08cbf75c023e38325117ba9feb33 +INFO [12-05|10:07:14.601] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=32 batch=0x9d3686e45318fa9405076838ee16488a678dd7ca4196b39602550a5312321702 l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:14.602] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x337fce49422fce214b4440c29afd663643d2185448aa38464e47bcfd853b3fb7 +INFO [12-05|10:07:14.603] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=33 batch=0x667218cc6ec7b182886d8582b9ff21d949e30bf61a31ba312d8ae279f1730997 l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:14.603] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf477d5e94bd587126753ffd779325634a170b1ac9ed480b42c4364029e49cd59 +INFO [12-05|10:07:14.604] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=34 batch=0xd03392b8e50da130985fc14d3cad7fcb700a4531eafdf1b895062dd1d8e0bb80 l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:14.604] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd77b1c2eb936b14e9ce4c8d51e1700cfced6afb36b876c0daa3a9abfd7c62cce +INFO [12-05|10:07:14.605] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=35 batch=0xf50a4035cf579dece71dbe79ddd287686367f915d8be1aad83c957472e103bda l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:14.606] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6b30e2641e4ddf08c155b86795b04f22c9a54d022de87da52e4ed98a1597434c +INFO [12-05|10:07:14.606] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=36 batch=0x0213ed6648ee670c469c6776dc612a214a3b27be032607a4531655e4567c9120 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:14.607] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xad29b1d8e35beabfaaf7e5bfdc2d80709cb1b25d1ce643f0a3349041e7caa8ad +INFO [12-05|10:07:14.609] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=37 batch=0x4192a3038be2a26aff4bccdc4eeb9bf937931136e4f626f37a14089b632fd592 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:14.610] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0bbd298cff56ec79480199ea956e40206b17638511c58e7593592e519bbf41d9 +INFO [12-05|10:07:14.611] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=38 batch=0x260de4b4250cd38b05934e82fc6843449d2afd69181bc1b96f889e4b53752979 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:14.611] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3d8e5c12a7b9978db40e1178afa34375e980baff8538f3a08f44860758b7831d +INFO [12-05|10:07:14.612] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=39 batch=0xa68e861e23588601b29809cc839e4db03581ba6c1785475da5ede084ac46f5b5 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:14.612] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2de1ead0f4a375e89db6fc64d4a22a71ab14b0e77259cf51a06eea346d4d6625 +INFO [12-05|10:07:14.613] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xa68e861e23588601b29809cc839e4db03581ba6c1785475da5ede084ac46f5b5 batch_seq_num=40 +INFO [12-05|10:07:14.613] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=40 batch=0x3e9f68e88cdf047c611cc98755550472452ca32e7d76b109c9f0e3203cd401d3 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:14.614] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3bd3a8dca75ffe3bf03e7b61d66b2ec0558aea3d4e02331bcc0dc35ed47dde8f +INFO [12-05|10:07:14.614] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=41 batch=0x1986897cca74263eef9c6483ee5d1def2b0cc92cf3ce4bfd723eb88cbeec23a5 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:14.615] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4c5f5cb113183f1d987f76a93a50aeae1aa9d27b842781d83ec8250937abf485 +INFO [12-05|10:07:14.616] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=42 batch=0x1921eebb29e5932b761aacc9a67fffc3563721fc8d445bfd9340b91ceff6a226 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:14.616] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x221f6a750c2e7fbeda6617b82bad5ac36e621e29af6da24da6694745d03e6b76 +INFO [12-05|10:07:14.617] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=43 batch=0xe6dd5828dc506e8545acd73be247d79e41e18b3f874aa885f843bf379f248ff9 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:14.617] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf69149991b738dc416c49e52c2e04585af900988b359609f56a8144a66fb9336 +INFO [12-05|10:07:14.618] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=44 batch=0xdfb118832935502cb5bf0c4ed57f4f1af53ff5c4cd5d101af0188dab68893367 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:14.619] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdddb112c79358cc0cdca9a87ae8d714cab47fc2c3b1fe30457111ebd3bf6f9e6 +INFO [12-05|10:07:14.620] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=45 batch=0xa3f657be7fb7f3bb1da6ab6d145f0b81a1e68a8bc10b1a5755a9a8daefa5d7bd l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:14.620] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2561c85228eb47b3f1310ae4b36a80946321633a54754b089e1a381535792e42 +INFO [12-05|10:07:14.621] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=46 batch=0xf050e4e617f558d743d311df964bc1f1e3de4e692b3d7a7687cf68521d4724be l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:14.622] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2419dc713d2fc24fdcbd38f3d7416c8306b6a0deb8c2605ba2fb91381623f9f1 +INFO [12-05|10:07:14.625] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=47 batch=0x568c584371e6bc1dcf46a23a9c1b5073f69a659035c817628ec002462a59917c l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:14.626] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x011d093956250a0a3b7a408e3b9f70b8973d37b111cd6374cffb7515bab0597b +INFO [12-05|10:07:14.627] Updating enclave status from [L2Catchup] to [Live] component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B state="StateTracker: [L2Catchup] enclave(StatusCode=0, L1Head=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b, L2Head=48), Host(L1Head=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b, L2Head=48)" +INFO [12-05|10:07:15.095] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=48 batch=0x926f9e0f6936da8a7954402d552a19d4be964a6ad802721f52ba7fb838825b98 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:15.097] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7ecc0096de2381a298b55cfd59740a8dfb5e23a316d1faae54b33818e35445a4 +INFO [12-05|10:07:16.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=49 batch=0xeeb37eeb92854343c6c937c06a94c946c468493c4387d2ae6e8c9efc3854b3cb l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:16.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb3cacb1c10c76f15526c419b3da8c76bacfed9c2a6b405c4cece49e68a1cb7c4 +INFO [12-05|10:07:16.083] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xeeb37eeb92854343c6c937c06a94c946c468493c4387d2ae6e8c9efc3854b3cb batch_seq_num=50 +INFO [12-05|10:07:17.094] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=50 batch=0x3c2e65273f2a761fc4ef4ed59bda5f2e77e6dc9ffb3203960a070e6f02480bc6 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:17.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x16c1dd6425b09adf9d48bc61d6acae6a19fc9314651b00f73ed14e0d37e4d606 +INFO [12-05|10:07:18.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=51 batch=0xe30b0fbda65a5779b07c412a778c8eb3737e493a968ae562da8851ac0847619a l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:18.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9e9dadf18d733bfbcc63e860c4c4c3e84b9abacd9b2ae7eec3c79038daea6827 +INFO [12-05|10:07:19.094] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=52 batch=0x1690bb392413cb3b0f0e5b2db2363f3ca628bf089120bfb79c9f73a6d2800819 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:19.098] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe03483335a3c7480b529730c1fec92deddf54b64fb5f870d82be7a0df63a55c5 +INFO [12-05|10:07:20.096] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=53 batch=0x168c05c52d1ee3abcf723729a3ecf1c805393a11f04c878688f00a1005817c0b l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:20.099] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcd333c99909bcd099db25b7d14c1913f57491a4aac77e95303c13aa4b33eb6ec +INFO [12-05|10:07:21.092] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=54 batch=0xa57feef2b1757c4d4194dc27afbd0b6054dde3aa13ad6778002e1d43e6c187c4 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:21.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6a54bd039e22307fd176779fecb4ad2de846ac2565faeab0be1900599c200c6d +INFO [12-05|10:07:22.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=55 batch=0x39bd8bace4d2b2b67eb3a9bdc68adddc5252d76c7b70471b30d3273075864f8a l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:22.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x95e217f2103a361576bcb68bdb67e05cef45d9771cb0d31986b81013600fabcd +INFO [12-05|10:07:23.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=56 batch=0xbd63e399e13ebfefe7381c15b08221058376b13737dea1d9332c36aefbc8e249 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:23.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x00578b5da965cb06b099f873d57ccdeabfe4a17b027509533ab401c6aa5b7c86 +INFO [12-05|10:07:24.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=57 batch=0x269fb72d07828969727e6c1114aacec9ebb71f03d8d23f94fbea1b6335289b8f l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:24.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x828b66aaf85978127e672bdbc9ddd2d19c73a4f0c707655e00754667c8babf34 +INFO [12-05|10:07:25.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=58 batch=0xfda7960bf2fb804b5126ff4c6ad09e51b5369006f6616763687d675095e04692 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:25.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6bbe31dea81cfeb94ce57999bb29c222dc5573dcb0078a894cab3d044ee30068 +INFO [12-05|10:07:26.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=59 batch=0xda84e8c2861184036152639e679adf751aa6a855c9265d89b4efc9b7ae75d56a l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:26.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6850d26beee4b51ee951efdea160120eb6732d853a8583c866ff3a319df49b68 +INFO [12-05|10:07:26.080] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xda84e8c2861184036152639e679adf751aa6a855c9265d89b4efc9b7ae75d56a batch_seq_num=60 +INFO [12-05|10:07:26.270] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=18 block_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:26.270] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:26.614] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x4d754b00695bcc6f459385469258eb46fc728d627288b565abde84c452d36e5d block_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=1 batch_height=0 rollup_idx=0 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=2 batch_height=1 rollup_idx=1 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=3 batch_height=2 rollup_idx=2 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=4 batch_height=3 rollup_idx=3 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=5 batch_height=4 rollup_idx=4 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=6 batch_height=5 rollup_idx=5 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=7 batch_height=6 rollup_idx=6 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=8 batch_height=7 rollup_idx=7 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=9 batch_height=8 rollup_idx=8 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=10 batch_height=9 rollup_idx=9 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=11 batch_height=10 rollup_idx=10 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=12 batch_height=11 rollup_idx=11 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +WARN [12-05|10:07:26.615] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=344.121917ms block_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:27.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=60 batch=0x980b32bff7b6075f4d4ae5d4e36956fd1ec364a9d2a3ad75a8c1a62c05c62048 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:27.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8a962a7fd526cad730fc484f4ec9657130714f712a24f6015d5412db85e8c4e9 +INFO [12-05|10:07:28.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=61 batch=0x4a9e4f2ac20fb30c87e0ef9c4da029368c76401f1fb7b146382524d938b20389 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:28.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc5da16b7d460c6fcbd3318277c817287d9477160f1f1d7a648fa602ef102b8e6 +INFO [12-05|10:07:29.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=62 batch=0x4ae8fd4fabd13e81671fcbfa009b5c7d0d4c6591c402b5431c7e7bdb6b70a026 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:29.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3a815fa6b967a191f2e9745ef8e3498869be2111f988dafdbf6f3b5d4a40bcc5 +INFO [12-05|10:07:30.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=63 batch=0x1490ac580b416e2aa56f594210fab1e8fd86d53f34dcdd91dc316f39e8cee218 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:30.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd8f401f3ecb38d71c777c181d228e37109bf0225e50972f1bcb81b8baf0a483b +INFO [12-05|10:07:31.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=64 batch=0x6f3af92afa6e3c45f1fda3fd5c969e9d648fdbbb6ceae029c5ebe6a7f353af9a l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:31.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1f163ad0f178b1252c5458ed3b2a5464e4e21df358c64a99ca2d80742dfa2307 +INFO [12-05|10:07:32.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=65 batch=0x7dc4feb0ec794f76d8c15d9b7e1aeceed65aeac6a50f1207e081abe678315680 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:32.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc770bd6be85f24e414f10eb80b8a40876b7b37633db34985bc6287983c45e271 +INFO [12-05|10:07:33.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=66 batch=0x4309c168fd419d85b0b43ba9903e232e73684fc8af9e067639dbde59f1563b4c l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:33.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8efcfdfb0599b7abc22f94ce081efe586eb148a0d5972981c55b9181380fcb92 +INFO [12-05|10:07:34.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=67 batch=0x3e67eef13fa02c4ee43dfcf48908855eda08310888baf04c5f17e312ec5e6a40 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:34.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc0394b032031384e7dd453a3e0bd726c58b068170f28887682122a2aa0a4b6af +INFO [12-05|10:07:35.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=68 batch=0xca8eed1eb53a9d34323c72ae5a9eb7dc6a76a19d8194e4b4a559a26519c6cdda l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:35.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb0021e0cd18492364b2154de205f47faa34cf8f9ccee343fcb5a0d7dfda4fde5 +INFO [12-05|10:07:36.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=69 batch=0x7a05621563c168bd80c4bff3ee1f35b474a1f83d6974a5a004fd2f75b1a5ffc7 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:36.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7f4f76a835af1de1025aebb0c783f26176d59d2025ddc6810f0dbb0d54ce6693 +INFO [12-05|10:07:36.078] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x7a05621563c168bd80c4bff3ee1f35b474a1f83d6974a5a004fd2f75b1a5ffc7 batch_seq_num=70 +INFO [12-05|10:07:37.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=70 batch=0x3b2bb849f2d64402f3939954d475dd2898dc2e1e8045f3dfa2bb13de125abf5a l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:37.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdb5414cbffdeb53e2d17bbe1a216d266decb4e7b19d987cf5e70754f54df6764 +INFO [12-05|10:07:38.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=71 batch=0x610c0d88336f3df810df2ff1d43d5fb4f16451bf3e319d530d97d8d5e2bcd351 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:38.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x57156cb2aa9828f538abddeacfadd0168a6e59fb27f5de0d04a17cb980ebf8bf +INFO [12-05|10:07:38.279] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=19 block_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:38.279] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:38.633] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x56cbcab2653e88ca899d2411687b72cef4351f6a5a6745dee302d174d135e5f0 block_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=1 batch_height=0 rollup_idx=0 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=2 batch_height=1 rollup_idx=1 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=3 batch_height=2 rollup_idx=2 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=4 batch_height=3 rollup_idx=3 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=5 batch_height=4 rollup_idx=4 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=6 batch_height=5 rollup_idx=5 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=7 batch_height=6 rollup_idx=6 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=8 batch_height=7 rollup_idx=7 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=9 batch_height=8 rollup_idx=8 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=10 batch_height=9 rollup_idx=9 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=11 batch_height=10 rollup_idx=10 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=12 batch_height=11 rollup_idx=11 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=13 batch_height=12 rollup_idx=12 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=14 batch_height=13 rollup_idx=13 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=15 batch_height=14 rollup_idx=14 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=16 batch_height=15 rollup_idx=15 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=17 batch_height=16 rollup_idx=16 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=18 batch_height=17 rollup_idx=17 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=19 batch_height=18 rollup_idx=18 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=20 batch_height=19 rollup_idx=19 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=21 batch_height=20 rollup_idx=20 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=22 batch_height=21 rollup_idx=21 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=23 batch_height=22 rollup_idx=22 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=24 batch_height=23 rollup_idx=23 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=25 batch_height=24 rollup_idx=24 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=26 batch_height=25 rollup_idx=25 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=27 batch_height=26 rollup_idx=26 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=28 batch_height=27 rollup_idx=27 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=29 batch_height=28 rollup_idx=28 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=30 batch_height=29 rollup_idx=29 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=31 batch_height=30 rollup_idx=30 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=32 batch_height=31 rollup_idx=31 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=33 batch_height=32 rollup_idx=32 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=34 batch_height=33 rollup_idx=33 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=35 batch_height=34 rollup_idx=34 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=36 batch_height=35 rollup_idx=35 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +WARN [12-05|10:07:38.635] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=354.838ms block_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:39.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=72 batch=0x786303a676fe3284e188a008f616c9cce4649856aa9524e0d53fe5d7659513b6 l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:39.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8e4e832f1286a0588fd31b1779fd2870a7a183a89261b146d703d37ec3edebe8 +INFO [12-05|10:07:40.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=73 batch=0x1ba225df163c5266b3f5038162180c7e81f8a66eb927dfb30afc3dccdf156e3b l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:40.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4bcb335e8f017bbbbf36591915504b864fab34e63c76985105e4e298f156dd5e +INFO [12-05|10:07:41.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=74 batch=0xbb932e1769808c2bf97513c85829e9fbdf68e924cd3112f1f27a8434f25ae677 l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:41.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcc606b1307711bb781b7083c254fafd461787253bcfefe68f97bd1e3bdad8641 +INFO [12-05|10:07:42.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=75 batch=0xdb67f6e41e4e77eabb1f5243aee89743fb00e5ecf8bd5a83c682ec96e6b73613 l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:42.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x68f2febf1c0595158211eb2db6026e611ff578073d7bf95b0ebea9140e037a5e +INFO [12-05|10:07:43.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=76 batch=0x75cdaee14177bb89510e9549c61aa901da040e6084193fc6bac0725582e5e59e l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:43.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xec1d5bc5b90efeb8def902a126855a9d4dbab7d2d2bb6bab55e38affc2f53b07 +INFO [12-05|10:07:44.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=77 batch=0x67009fbe31aba69cef2097d87f7df41108368fea7821165c89ba457e735070d5 l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:44.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfc7f5babde42eb27fa0d62c90bcf8351c770773761a398cca0ec1d423605ff5b +INFO [12-05|10:07:45.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=78 batch=0x9402be8e61acee549837faa22bd3fa95ec9eb77bc4715d6d43c74bb2d3c4ceaa l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:45.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xba5a5ae9601fc4de6e9e6242f5f4c93db5706437b915a3fd55c512b0fab4aebd +INFO [12-05|10:07:46.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=79 batch=0xd82b8e93bbcd6da0939497f1f236734eef95fe700ffa4bd42525166983fe0dcf l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:46.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe6f87b91bbaf2050f7498c735e584564520cbb13dd647053df826062f3db3045 +INFO [12-05|10:07:46.075] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xd82b8e93bbcd6da0939497f1f236734eef95fe700ffa4bd42525166983fe0dcf batch_seq_num=80 +INFO [12-05|10:07:47.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=80 batch=0xcdf362b2b46c813a63029b60bfa330010da5cbc3f5f64a69301cb3258dcad01e l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:47.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x945512b12c2bc555cd26509c05bdd73b8b0354ed86b58638f50dcb21281715ba +INFO [12-05|10:07:48.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=81 batch=0xb26713027ab71eb0ada4d9030a66133301c741101f21802414d2bfabfd2f3ee2 l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:48.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x275f9eb995c495cf374ce6a9db0835e4be78b126caae8ab37f87e3243b0241de +INFO [12-05|10:07:49.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=82 batch=0xf2cade7d775d6636ff29e510b32a2efe00fc1fecdbc91b4d6e8a4d5c06c8097a l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:49.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc17a83b46f765119503b5995e700b4ca5418c8ee38eb37dde957d48c2a5153e6 +INFO [12-05|10:07:50.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=83 batch=0x3775faec8fe7707d794a14fea8f4e3ddea738c1b5d97e48fe8f6a0d78953e3a8 l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:50.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x20dd8cedd83fd2953a439f0650db497c800038f3a9128ebcdaf6bfbe4629f3ac +INFO [12-05|10:07:50.279] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=20 block_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:50.279] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:50.469] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xe81d8ccd785f6a1e0d8aec40ba26e531f407a2ae85bcc952fffafdc4ca6ef85f block_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:50.469] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=13 batch_height=12 rollup_idx=0 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.469] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=14 batch_height=13 rollup_idx=1 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.469] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=15 batch_height=14 rollup_idx=2 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.469] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=16 batch_height=15 rollup_idx=3 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.469] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=17 batch_height=16 rollup_idx=4 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=18 batch_height=17 rollup_idx=5 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=19 batch_height=18 rollup_idx=6 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=20 batch_height=19 rollup_idx=7 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=21 batch_height=20 rollup_idx=8 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=22 batch_height=21 rollup_idx=9 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=23 batch_height=22 rollup_idx=10 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=24 batch_height=23 rollup_idx=11 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=25 batch_height=24 rollup_idx=12 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=26 batch_height=25 rollup_idx=13 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=27 batch_height=26 rollup_idx=14 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=28 batch_height=27 rollup_idx=15 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=29 batch_height=28 rollup_idx=16 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=30 batch_height=29 rollup_idx=17 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=31 batch_height=30 rollup_idx=18 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=32 batch_height=31 rollup_idx=19 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=33 batch_height=32 rollup_idx=20 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=34 batch_height=33 rollup_idx=21 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=35 batch_height=34 rollup_idx=22 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=36 batch_height=35 rollup_idx=23 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=37 batch_height=36 rollup_idx=24 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=38 batch_height=37 rollup_idx=25 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=39 batch_height=38 rollup_idx=26 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=40 batch_height=39 rollup_idx=27 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=41 batch_height=40 rollup_idx=28 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=42 batch_height=41 rollup_idx=29 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=43 batch_height=42 rollup_idx=30 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=44 batch_height=43 rollup_idx=31 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=45 batch_height=44 rollup_idx=32 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=46 batch_height=45 rollup_idx=33 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=47 batch_height=46 rollup_idx=34 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=48 batch_height=47 rollup_idx=35 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.471] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=191.292916ms block_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:51.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=84 batch=0x68e05e9e49d63dc9935aee97ac295e59fd8202069c83892358c872ebaf4c64fa l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:51.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3cc670f3a6f70fa2a2958d10c72089e5c63cefa78be221f4389e2d877427eda6 +INFO [12-05|10:07:52.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=85 batch=0xdac920ec166e863900c5a36833695f1c93b7c4115c770e1d901166d4b069d5da l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:52.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6ba5d7c709e709c31dcee5197012ae2511e1e09578695c021d43a6870d622474 +INFO [12-05|10:07:53.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=86 batch=0x12edf78122d85aa9c3b5f161364be6e486d9c5fb555970204f791d87875e991d l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:53.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfa1bd89fea5b74197ad3d0ae32257fd894042d64f4adf2519c1f18b9bf01649e +INFO [12-05|10:07:54.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=87 batch=0xa24928f018edf8f4943b2cfa63ffc261489ee348f12944d23f63b7f2b0eac5ad l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:54.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x516a23583539426682105571e10f5c34aa8b1af996410d73a7f00fea2c795032 +INFO [12-05|10:07:55.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=88 batch=0xe5412f079811cf6eb3a9ceda854498dd68976d3cf574b54329a4a48c51c3568f l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:55.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa6229f177e08596375f63c1c8b9e72fdc55d9c814017d7e0f4ce35324c26db44 +INFO [12-05|10:07:56.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=89 batch=0x4ec63248b7f7eba1f664ccc84bce00586d42f12e3256710d23e20bc6e494fb1a l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:56.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x76c4fdf248929e12ebcf93980b9c64a2a386abf919a64e00c9bc4b945d3752be +INFO [12-05|10:07:56.085] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x4ec63248b7f7eba1f664ccc84bce00586d42f12e3256710d23e20bc6e494fb1a batch_seq_num=90 +INFO [12-05|10:07:57.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=90 batch=0x9a91bef78b167c38b416746766936d42d7cd6d4049cb46c764c5a4c383eadd44 l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:57.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x41c8a4cc0282d43d97bc13a71afc073f271fc88033fa240ee6efccb15d4b430c +INFO [12-05|10:07:58.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=91 batch=0xb0aba58cffe2b28bca3578629b83648769590c4d39589d87c7d59aa2914c2aa4 l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:58.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2baf2cc5f36589bdb81322409ecd6cfadc80044d5c8989807da3455061e55ea0 +INFO [12-05|10:07:59.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=92 batch=0x86b2f2e882d390127ba36529023804133eb15ae209d1a5b08f9e98430477e8b1 l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:59.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc665e7488d8544ba1b937528d2ba73cba7678764290f31cac7ec8324c673200b +INFO [12-05|10:08:00.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=93 batch=0x7ae3af8b12edfeb40066cbe28689a007a41998fc5db4ebf3d911878f34e3e8c2 l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:00.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xaa68139ce4b686602490e88341a99ff9fbb73ea599b5db87c09a9703598f063d +INFO [12-05|10:08:01.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=94 batch=0x2741378f6481e9a707e62bbfa41395d180c1bbbe1060e9af9620e86a9bae9444 l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:01.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x18b192b241acec6bff11b1ccf7e90f11c358d6a4cf2d5fe1d771bd3a4cfec5d1 +INFO [12-05|10:08:02.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=95 batch=0xf323b8f8cb166c16c60ac84db898998b6d6575bdea2cd82a15566cdbc54593ed l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:02.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcff1ec381fe45e2488bf450059f9355f9bf985d92f5fc7f9c66856bc94ff6e64 +ERROR[12-05|10:08:02.268] Error encountered converting the extracted relevant logs to messages component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc err="abi: cannot marshal in to go type: length insufficient 64 require 96" +ERROR[12-05|10:08:02.274] Error encountered converting logs to transfers component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc "!BADKEY"="abi: cannot marshal in to go type: length insufficient 64 require 96" "!BADKEY"= LOG_ERROR="Normalized odd number of arguments by adding nil" +ERROR[12-05|10:08:02.284] Error encountered converting the extracted relevant logs to messages component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc err="abi: cannot marshal in to go type: length insufficient 64 require 96" +ERROR[12-05|10:08:02.284] Error encountered converting logs to transfers component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc "!BADKEY"="abi: cannot marshal in to go type: length insufficient 64 require 96" "!BADKEY"= LOG_ERROR="Normalized odd number of arguments by adding nil" +ERROR[12-05|10:08:02.292] Error encountered converting the extracted relevant logs to messages component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc err="abi: cannot marshal in to go type: length insufficient 64 require 96" +ERROR[12-05|10:08:02.292] Error encountered converting logs to transfers component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc "!BADKEY"="abi: cannot marshal in to go type: length insufficient 64 require 96" "!BADKEY"= LOG_ERROR="Normalized odd number of arguments by adding nil" +INFO [12-05|10:08:02.322] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=21 block_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:02.322] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:02.778] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x9055fe4d96a9f1fcd7863d0aa102cfa6bc7c774b9b684c63a5a5b52156e4427a block_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=37 batch_height=36 rollup_idx=0 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=38 batch_height=37 rollup_idx=1 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=39 batch_height=38 rollup_idx=2 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=40 batch_height=39 rollup_idx=3 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=41 batch_height=40 rollup_idx=4 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=42 batch_height=41 rollup_idx=5 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=43 batch_height=42 rollup_idx=6 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=44 batch_height=43 rollup_idx=7 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=45 batch_height=44 rollup_idx=8 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=46 batch_height=45 rollup_idx=9 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=47 batch_height=46 rollup_idx=10 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=48 batch_height=47 rollup_idx=11 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=49 batch_height=48 rollup_idx=12 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=50 batch_height=49 rollup_idx=13 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=51 batch_height=50 rollup_idx=14 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=52 batch_height=51 rollup_idx=15 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=53 batch_height=52 rollup_idx=16 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=54 batch_height=53 rollup_idx=17 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=55 batch_height=54 rollup_idx=18 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=56 batch_height=55 rollup_idx=19 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=57 batch_height=56 rollup_idx=20 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=58 batch_height=57 rollup_idx=21 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=59 batch_height=58 rollup_idx=22 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=60 batch_height=59 rollup_idx=23 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +WARN [12-05|10:08:02.780] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=456.747125ms block_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:03.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=96 batch=0x4a9ddb3ce489cf42d26d21787e0195ca22c8fc0a53388f65c798de5b2e9c1fb0 l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:03.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x74e42d7149dd99eb62467537a6eb816c6317a9af0b582e63d2d59321ec59925d +INFO [12-05|10:08:04.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=97 batch=0x76baa8ae441be15a0f36fe4723e00a7b761cf7d7c15679f7951deb1b6edb4afd l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:04.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf7eae1b52aedbfdac922633dabd4ba1a901fa586abbf497bf21ef395ff67c26f +INFO [12-05|10:08:05.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=98 batch=0x63e2a8ddf29199e160425ff9f4b2f3674c60081c034f8e99954f03f56caa5219 l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:05.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8762433daf5fce3871414115f45296d8b42940b39947fcef42bc56c3efac1a37 +INFO [12-05|10:08:06.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=99 batch=0xa18526cf44dd12c7b0b001aa1a335fe2f4b4ed021d782bef3c5d64054bfcc666 l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:06.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7836a31339fd66f4e50491ed2d0d5acb84c4e8225823840bcd09afabc0f413e6 +INFO [12-05|10:08:06.077] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xa18526cf44dd12c7b0b001aa1a335fe2f4b4ed021d782bef3c5d64054bfcc666 batch_seq_num=100 +INFO [12-05|10:08:07.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=100 batch=0x218bffa28ccd172769b116280dce1f83ccd7d2a3793a8e2605ae9a8b3e46897e l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:07.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9a4a3aaff3c8e63aed16c774058211523a41edf52eb0374d55f2d90b1e56fdb4 +INFO [12-05|10:08:08.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=101 batch=0x182ec1dcbbd2d76a9b9501b9cc2efe0a1165c68a8f05a9a0778057f0e65e1cac l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:08.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf4fca0f35db7d01f64a0be3efcee2caed2e3bd4210050f194ec052cec9a99da7 +INFO [12-05|10:08:09.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=102 batch=0x6b25f3303784b0fd61ebf3f5654766f4677b20f2f10642c8b8c3326b61b1fc9d l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:09.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x24da0d510f6c245b3a880f4a322ac6ac4aef709d6092aa7f858da62bf00ecdb3 +INFO [12-05|10:08:10.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=103 batch=0x9d21ea5c3dbaba54979300a583d67ac6a9db11ac141d8a082f23afbe85fb882e l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:10.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x91caf522213155349fdc74f333f6a3d5da33c5dc4b3bf47e3c1bcb5edf362b72 +INFO [12-05|10:08:11.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=104 batch=0x5b7502daad33c5e208d51066ef9b3a09991c1db4f2a9165f68d4fc743972656d l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:11.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4cb22c5d50cad003693e31cf8f192def1aca9920e0d79be31c2f9978947b990a +INFO [12-05|10:08:12.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=105 batch=0x28c03f8f108badf3fd720ae8c1e208fbe9168aea3b4df619f1e989da16ae5ac8 l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:12.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf7e7a1939b2d4b222998aeccc7a94209c1aa7e8bd865ec6c36f4d5a90061bbda +INFO [12-05|10:08:13.095] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=106 batch=0xde794901ad46b05c4e7ef93839e9f666b4ff9eceb15ecacdb723c61c5e027d41 l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:13.096] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2172549ca2d5e4ac6305984099be24424b30f70e62316031129aef32f6bedac0 +INFO [12-05|10:08:14.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=107 batch=0x3a46ad359ea8ac142aed3973883ce71e91fbed87ad4516901d60df2cb0fe8c9c l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:14.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7b6cdaf7b792e8dffb4216c6840ddee17a2e4c4db46d7bf64fd4bc608be449e8 +INFO [12-05|10:08:14.273] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=22 block_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:14.274] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:14.600] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x741d5263c3958da9f12a48b2e2fefd0f86b47e28339beb118ff2792ee2b7ed42 block_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=49 batch_height=48 rollup_idx=0 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=50 batch_height=49 rollup_idx=1 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=51 batch_height=50 rollup_idx=2 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=52 batch_height=51 rollup_idx=3 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=53 batch_height=52 rollup_idx=4 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=54 batch_height=53 rollup_idx=5 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=55 batch_height=54 rollup_idx=6 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=56 batch_height=55 rollup_idx=7 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=57 batch_height=56 rollup_idx=8 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=58 batch_height=57 rollup_idx=9 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=59 batch_height=58 rollup_idx=10 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=60 batch_height=59 rollup_idx=11 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=61 batch_height=60 rollup_idx=12 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=62 batch_height=61 rollup_idx=13 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=63 batch_height=62 rollup_idx=14 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=64 batch_height=63 rollup_idx=15 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=65 batch_height=64 rollup_idx=16 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=66 batch_height=65 rollup_idx=17 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=67 batch_height=66 rollup_idx=18 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=68 batch_height=67 rollup_idx=19 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=69 batch_height=68 rollup_idx=20 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=70 batch_height=69 rollup_idx=21 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=71 batch_height=70 rollup_idx=22 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=72 batch_height=71 rollup_idx=23 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +WARN [12-05|10:08:14.602] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=327.7515ms block_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:15.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=108 batch=0x8a5cff5b50bbb466ad3d524d7d91f69fd5184ab94430969f85f0b3770f0e00c8 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:15.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x311daf0f599c23e81934db533d0d75d41d5c62fcb280911d5de361fbca5fa0b2 +INFO [12-05|10:08:16.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=109 batch=0x37bfc53e03a8b2ba4b75d8e2d00c30428a4454f68933097f2b8d7007e39a36d4 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:16.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6625e5df29643b2516f41896e51ac94627b3e63bef597a1475d4767f4d88d6e5 +INFO [12-05|10:08:16.089] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x37bfc53e03a8b2ba4b75d8e2d00c30428a4454f68933097f2b8d7007e39a36d4 batch_seq_num=110 +INFO [12-05|10:08:17.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=110 batch=0x942aeb8ef17978168a404d0b866811080ecfa635a1857c401161abe99c8ce089 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:17.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5fa4fd7ac4e98c0e43b36be8e60a391d56de0f07c207cb76d893cdd4a7ba6657 +INFO [12-05|10:08:18.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=111 batch=0x9770fd12b116bf03de3d2927e49f277105a407c755d486c8d07c5cf438282254 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:18.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc162230b7db96585761fbe392d10e9b846067819c7bb805d28e1f215c32e6785 +INFO [12-05|10:08:19.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=112 batch=0xac915e53e405e08b4aeb10d6f5e79cb9d823ad4a0f30fdc296f7c979b4469322 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:19.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xab37cd06aa42175adeadcbbb0f81056662c68b340991438efbe7832b8a46a82b +INFO [12-05|10:08:20.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=113 batch=0x3779b5a93d312f6e6778704b7e796a6c5550d4d6852981cf2a055a9adbe3dd75 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:20.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe1748dc8b991bbb11925eba64dbc54ea78b54fa54f8ba381fb6db5ef806f1654 +INFO [12-05|10:08:21.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=114 batch=0x5911e5b6f72f4a482f2ff6add9f63d0984e443578d91197e26d533006f47f013 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:21.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0db46de50c1c18aac965ca503c89154b1895afa59a435faf584c8cb63afa4afc +INFO [12-05|10:08:22.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=115 batch=0x3f16d3f9306f7a8dbef7b63568b5cbb6950b2b484bc45b35713fc35d29be8282 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:22.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x78d7b05126112591e2561275d2799e24d59792c84793bc757d39ecc2d4f24026 +INFO [12-05|10:08:23.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=116 batch=0xae3c0bad6e6bcc34c73c8ef26de15fc5bede8d021c9e44fc6f1da40ecac19cfb l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:23.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x74ea441c27057ef4481ff2514f7237cb17e5b087b7aa85713e1fa81a64651c32 +INFO [12-05|10:08:24.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=117 batch=0x3d5cb01d46b823f0b32e39a53717f9f4645c7af941c624be85cc3b7b6aed83b9 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:24.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7748ab7786bce4cbbcabf107416f29f8708150e024622dd7c863beca1e2ce6f3 +INFO [12-05|10:08:25.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=118 batch=0x31c255f659c71e3debe4ff493c9d3847203e74292502fffbbe8eb99d38fd71b6 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:25.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8be1d3d5a2317818e472dddcef475b5870255ee61c7c9b04f0b6114dd772ad10 +INFO [12-05|10:08:26.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=119 batch=0xa6683b1d45731a16acde0b0bd745dcbfb262040bf61f572b213d4fa48c72ee7c l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:26.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x097ad87fe3d68e347efefa52c97e2b1fca9767d1b5542c113f29922e10577edd +INFO [12-05|10:08:26.077] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xa6683b1d45731a16acde0b0bd745dcbfb262040bf61f572b213d4fa48c72ee7c batch_seq_num=120 +INFO [12-05|10:08:26.322] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=23 block_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:26.322] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:26.675] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x44dad3ddd9436dc2e2f6b7465991220233359c6c10a220ae69c66b88c84d5693 block_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=61 batch_height=60 rollup_idx=0 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=62 batch_height=61 rollup_idx=1 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=63 batch_height=62 rollup_idx=2 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=64 batch_height=63 rollup_idx=3 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=65 batch_height=64 rollup_idx=4 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=66 batch_height=65 rollup_idx=5 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=67 batch_height=66 rollup_idx=6 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=68 batch_height=67 rollup_idx=7 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=69 batch_height=68 rollup_idx=8 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=70 batch_height=69 rollup_idx=9 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=71 batch_height=70 rollup_idx=10 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=72 batch_height=71 rollup_idx=11 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=73 batch_height=72 rollup_idx=12 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=74 batch_height=73 rollup_idx=13 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=75 batch_height=74 rollup_idx=14 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=76 batch_height=75 rollup_idx=15 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=77 batch_height=76 rollup_idx=16 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=78 batch_height=77 rollup_idx=17 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=79 batch_height=78 rollup_idx=18 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=80 batch_height=79 rollup_idx=19 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=81 batch_height=80 rollup_idx=20 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=82 batch_height=81 rollup_idx=21 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=83 batch_height=82 rollup_idx=22 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=84 batch_height=83 rollup_idx=23 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +WARN [12-05|10:08:26.676] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=353.982084ms block_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:27.091] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=120 batch=0x758b7195c744df380871cd97459d31986c100370138fd3afee3e161105895f9e l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:27.094] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7caa955f0827a20387e913ebd48dcd31a21e48217cf5e0ed2f2d699d338fb461 +INFO [12-05|10:08:28.088] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=121 batch=0x65a463b188f7acf7bdb150502ea7cd0af5ee41c4f1477cdd0bd427ee20f397ce l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:28.094] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x02a299ab49b2d45465943a0852b89f3e05d269b6ef3ef62d890795e40cb0afb3 +INFO [12-05|10:08:29.096] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=122 batch=0xdcfc50a21a3de180cd1f31f1ae177c6b7223b74d3a7055096e3d1b95de630d9d l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:29.099] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc31ddcbf8d1a148b237e1b94ad75fd280fda2091f044b040328b0d45dc8e1c78 +INFO [12-05|10:08:30.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=123 batch=0x8a9173faa55b6b6df85ad33d8261514d5d225441c844b7cc8d1475e117bedec3 l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:30.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb0d9d18b3aa758658ae4d3c4600e4aecf33d2b17d534f3552a44940f3e2f2517 +INFO [12-05|10:08:31.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=124 batch=0x4b116dbf6ae26984d83426917197be0123456c1151ccbaa7b0695f36044db6be l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:31.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1a7994fd1d74e86d61a55c3ebe1919a99c7e4cd827bc50b22aa65ed8f4153694 +INFO [12-05|10:08:32.097] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=125 batch=0x105cd4bf76dbe5b4a4506b1b92474449959c9202c6c4e53a17ec6ab79823f47f l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:32.100] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1119737378487e361e095045cd029dfa9341c918224495b282f94399e3899788 +INFO [12-05|10:08:33.094] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=126 batch=0x307b666d90ce4dabc38f76ae8b3e16bb19c787f67bf049ed7edb0f291f19a354 l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:33.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2dd63ae517032757e40c1c43aa05a6e75fbc64a121f8d20aeff491bd0fbfba23 +INFO [12-05|10:08:34.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=127 batch=0xad119e0aeb19160c6650751ff527b1a99b6d90be50e48edf7fbea4fc07a448cb l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:34.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd9cf6ca0aded6caca2a926fb4dc19d42f77720e254e90383a35c95bc3bb7c9ad +INFO [12-05|10:08:35.090] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=128 batch=0xfd8e0a08b60b19bf208f1de81f05cf3fc3f4eff578f8fde0862ec7752d005ca5 l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:35.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa094f3238bd6401ffedef5588540b221dfba7ac6923201b606e3808cb93ba8a0 +INFO [12-05|10:08:36.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=129 batch=0x7a1a0634d0caecbee41363fcd7c42d42d928ff3c9aa77676c9cd2bd1c08d8757 l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:36.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4edaefa978245a8e57573749d36f622094b5bd4fbff1c97b20b1cebc2016821a +INFO [12-05|10:08:36.088] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x7a1a0634d0caecbee41363fcd7c42d42d928ff3c9aa77676c9cd2bd1c08d8757 batch_seq_num=130 +INFO [12-05|10:08:37.096] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=130 batch=0x4f3450c979da480f6b1f55b0e75a85ac2d36e51c6733fd5241024f2dcbd1d2bf l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:37.098] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfaf9bb358c74f87e09ffd52f44d2c5523904838c8620e7f6c246d142587b33d8 +INFO [12-05|10:08:38.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=131 batch=0x95ebf88846233ee7d5fdfb870b30d024e704bec0c3764d0450996b58cdc0de1d l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:38.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfe4c181c1b9791538ed5c0d73c14dc98ede9b016993d443f8b918346be9b1a4f +INFO [12-05|10:08:38.303] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=24 block_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:38.303] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:38.632] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x0438f4e7a1d665279152b903a512db360e688aa829f2e124ef0455ea09f80a8e block_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=73 batch_height=72 rollup_idx=0 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=74 batch_height=73 rollup_idx=1 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=75 batch_height=74 rollup_idx=2 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=76 batch_height=75 rollup_idx=3 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=77 batch_height=76 rollup_idx=4 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=78 batch_height=77 rollup_idx=5 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=79 batch_height=78 rollup_idx=6 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=80 batch_height=79 rollup_idx=7 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=81 batch_height=80 rollup_idx=8 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=82 batch_height=81 rollup_idx=9 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=83 batch_height=82 rollup_idx=10 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=84 batch_height=83 rollup_idx=11 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=85 batch_height=84 rollup_idx=12 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=86 batch_height=85 rollup_idx=13 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=87 batch_height=86 rollup_idx=14 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=88 batch_height=87 rollup_idx=15 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=89 batch_height=88 rollup_idx=16 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=90 batch_height=89 rollup_idx=17 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=91 batch_height=90 rollup_idx=18 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=92 batch_height=91 rollup_idx=19 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=93 batch_height=92 rollup_idx=20 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=94 batch_height=93 rollup_idx=21 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=95 batch_height=94 rollup_idx=22 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=96 batch_height=95 rollup_idx=23 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +WARN [12-05|10:08:38.633] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=328.985041ms block_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:39.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=132 batch=0x62933286bd1519b79733bc9acf535be13f60ed23d9ecf756305f73a41739f2b6 l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:39.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7f651e9ef74e05e335b67a1b020367818d8887dcee4469632dc23d80f537a0a8 +INFO [12-05|10:08:40.092] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=133 batch=0x83b74501df69e498fb7f17b6052acdc41c67ac15d57f6d41ad3c8bda5e9a89da l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:40.096] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2c6588270212f5d819ab1bc6988e769ef6ce260f291be5f1fb3f6742686a938a +INFO [12-05|10:08:41.093] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=134 batch=0x125402eab9a801732a77c54a5c437085250852187ff7c87242fc17dcb4f66bda l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:41.097] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x33c6d42324526b26c445907af98397818212cc131b2e9fede128bff29c58d96e +INFO [12-05|10:08:42.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=135 batch=0x6f78917885f0412fd96901fad40d88a872e1200a69f43cf7f5858a42814cb3a0 l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:42.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x95acc78d1362a0898a4d85ea37616d029f2de7fdc6a5dd4f5d15116cf2d4fdf6 +INFO [12-05|10:08:43.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=136 batch=0x4e5bd1c6cd77f0e2f462a55ce57c3d883fdf650c2d828cff252f46ec69541295 l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:43.090] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6abe363ed9195009dd0d8e686c69e92805ced689f279ef741c68bc91a077ddfb +INFO [12-05|10:08:44.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=137 batch=0x0a5f520a92818e7118b8cb7ad800f96aef2eacd9fbfdc89db1cf6c795ebe9d98 l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:44.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0305602660e094f01435960e1ef093fe3f0ba3f4ebb0dc79a1d7e77c9089c6e3 +INFO [12-05|10:08:45.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=138 batch=0x49dbb308325f61086b3369db80491c7dca910f1f54c3690d9c7f24b31ba96fd6 l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:45.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xaa4096c661566e4a7f4ffccb0f13168ca27c2b6918ea8dc99d5bc533641364eb +INFO [12-05|10:08:46.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=139 batch=0xf39041d9a5b0a356fdfe1de16b75b30ec4d38ecff34e03d6b90dd9c28f2037ae l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:46.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb60bfbe6ca1d60ae29208442c25563a55529a9f053bd5e0bde23ebf2f98aa8ac +INFO [12-05|10:08:46.083] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xf39041d9a5b0a356fdfe1de16b75b30ec4d38ecff34e03d6b90dd9c28f2037ae batch_seq_num=140 +INFO [12-05|10:08:47.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=140 batch=0x533dd40c52cc2427639519adde69ef4cfe8e22d8b96408bd95a5db325b0daba6 l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:47.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc0061f8294b9d4d653d1027515ee8b92079d1268f51fd509df576e49f0341165 +INFO [12-05|10:08:48.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=141 batch=0xf198c66bfa792a0623de040e190691e4ab10ad51460876f06125292c0c3158ed l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:48.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2b4fd707ec56e2fd6de50dcc46aa873331e10535c53201769567dbcf5ac898b5 +INFO [12-05|10:08:49.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=142 batch=0xde66fbf0db05db34cbabf488b692fadda76ccc9df6c115cfaa15b2cdf5a94796 l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:49.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9a6b91ed5e8f02462fe09bdf86834b988ab77c47527f80c9562c4b03e5186dfc +INFO [12-05|10:08:50.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=143 batch=0x1f3c3e7dbc228dc7ba24d6877cf8edf28c09042c7365e301df1ee80ac4c0348c l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:50.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe12e9b082ced482bd2e3788440624c2a3ceabbee5b6e826aa5db07e82832fafa +INFO [12-05|10:08:50.279] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=25 block_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:50.279] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:50.535] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x9929e7f484aa19420645789f75bb66be22ef26d0c99e418b1eb6b4c55812221a block_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:50.535] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=85 batch_height=84 rollup_idx=0 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.535] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=86 batch_height=85 rollup_idx=1 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.535] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=87 batch_height=86 rollup_idx=2 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.535] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=88 batch_height=87 rollup_idx=3 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=89 batch_height=88 rollup_idx=4 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=90 batch_height=89 rollup_idx=5 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=91 batch_height=90 rollup_idx=6 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=92 batch_height=91 rollup_idx=7 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=93 batch_height=92 rollup_idx=8 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=94 batch_height=93 rollup_idx=9 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=95 batch_height=94 rollup_idx=10 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=96 batch_height=95 rollup_idx=11 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=97 batch_height=96 rollup_idx=12 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=98 batch_height=97 rollup_idx=13 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=99 batch_height=98 rollup_idx=14 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=100 batch_height=99 rollup_idx=15 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=101 batch_height=100 rollup_idx=16 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=102 batch_height=101 rollup_idx=17 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=103 batch_height=102 rollup_idx=18 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=104 batch_height=103 rollup_idx=19 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=105 batch_height=104 rollup_idx=20 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=106 batch_height=105 rollup_idx=21 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=107 batch_height=106 rollup_idx=22 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=108 batch_height=107 rollup_idx=23 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +WARN [12-05|10:08:50.536] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=256.501167ms block_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:51.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=144 batch=0xf30f0c433dc923823d9493af26bc6340b18d51d594b4df7643f411cdfc3fc21c l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:51.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x33cd0738029af9653cb5da41ba41140bc9cf525229600641c20e78aa947c1fd1 +INFO [12-05|10:08:52.091] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=145 batch=0x457fa5ed3a1ba2e3acf1fe67d4a3e27c2b1dad116c0927c8cf787061c2678ba1 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:52.094] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x34f2907485fee418249b407e4af2d99885c08fef220bbc553ab9cd38df37c6ce +INFO [12-05|10:08:53.095] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=146 batch=0x2e8aceb3e13465f9e16206d7cd142e118e5e7d5cff2df117c7bddbffacead7aa l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:53.097] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1f91972afba68549339e3519d5d5eece56d7dd1ad4b9ee67af89a712ae2feeea +INFO [12-05|10:08:54.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=147 batch=0x406c46e00828dab1ef5a6536487cb64fc44b85dadd7eb47f5cad3a9bc71778e5 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:54.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9d65d3da3bf0f3d2161b81b3d1614f6f11e9475a1f5b685da532ac31790dc0b9 +INFO [12-05|10:08:55.091] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=148 batch=0xaf06694472d6cb02930ce1a688a4548e7306b9d71efde686877798c8f121cff7 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:55.097] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfa2649cb56614c9ad35866359a8c37995fad1cd0f29838cf4b7505f3c928fae3 +INFO [12-05|10:08:56.096] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=149 batch=0xc4bb2b77ed8f0c86a5a8b503f5359dff6fae8e2d1ec3574d0a9c5b0745b2e8d4 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:56.105] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xaf242afacbd9cf5aea2f370c3861a50862e6539104a11899174f552f6557c13d +INFO [12-05|10:08:56.108] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xc4bb2b77ed8f0c86a5a8b503f5359dff6fae8e2d1ec3574d0a9c5b0745b2e8d4 batch_seq_num=150 +INFO [12-05|10:08:57.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=150 batch=0x5e1b5bf0717dc15ccaf7d6c8dc0d708d68aac488a8ccec5022e9f2243f21a2b1 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:57.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8d02c2b9d1f4bbda3e33905b26a4896e805032aa1f7873a6204ffcc3ce6e1027 +INFO [12-05|10:08:58.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=151 batch=0x2cf577ee7c73b6bda309589b3ce001b9692b50407212a82616c28ac839b4a389 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:58.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x994b8184d0b47d4aee12ea23f3b28c46cd87bfe429fc7a736c786dd7af9c7a0c +INFO [12-05|10:08:59.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=152 batch=0x168dab1c6acd2d2a2b4c63bbe46448772676cc2f7430ed3bb27c6deaa8e23c5a l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:59.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3c0d33c2ca61922075afeae03c1f1f5fcb46ddbfb33180e13be79f34fc36581b +INFO [12-05|10:09:00.089] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=153 batch=0x9f99ea68758c08605b8401eed2740693510a4a1d28de71675abf8abcfdbe0e5e l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:00.090] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf857a6f456bfd61873f4ccb5da71a43087d5efb383934711f5b98cd29819e13f +INFO [12-05|10:09:01.092] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=154 batch=0x0427884645e3662ccde439b3b2e2163e975c10430aa034ddcda7ec661e043ef9 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:01.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf8642156b3b36c980d800ca09f1f5cdc147e3e4a0e2e09a1da5e5108e58ea1b5 +INFO [12-05|10:09:02.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=155 batch=0xa6f6292aa5de45efdb427bbfbf6e779b053aaaa630ba07ef41290b72051d85d5 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:02.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xccbc128e8bb9892f9cfaf2c6c3cebf0200edf1715555205e61123cb8c954b466 +INFO [12-05|10:09:02.326] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=26 block_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:02.326] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:02.664] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x825a375d9fbc85d67f5d669198fd4e74aadadb4013afd54535eda0e86bd9470c block_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=97 batch_height=96 rollup_idx=0 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=98 batch_height=97 rollup_idx=1 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=99 batch_height=98 rollup_idx=2 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=100 batch_height=99 rollup_idx=3 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=101 batch_height=100 rollup_idx=4 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=102 batch_height=101 rollup_idx=5 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=103 batch_height=102 rollup_idx=6 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=104 batch_height=103 rollup_idx=7 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=105 batch_height=104 rollup_idx=8 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=106 batch_height=105 rollup_idx=9 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=107 batch_height=106 rollup_idx=10 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=108 batch_height=107 rollup_idx=11 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=109 batch_height=108 rollup_idx=12 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=110 batch_height=109 rollup_idx=13 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=111 batch_height=110 rollup_idx=14 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=112 batch_height=111 rollup_idx=15 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=113 batch_height=112 rollup_idx=16 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=114 batch_height=113 rollup_idx=17 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=115 batch_height=114 rollup_idx=18 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=116 batch_height=115 rollup_idx=19 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=117 batch_height=116 rollup_idx=20 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=118 batch_height=117 rollup_idx=21 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=119 batch_height=118 rollup_idx=22 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=120 batch_height=119 rollup_idx=23 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +WARN [12-05|10:09:02.665] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=337.830542ms block_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:03.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=156 batch=0xef32fec7769caf48d6e7cfafd199debe6114f6401c398747a34d4a5c0e0a205c l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:03.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x05ff19b15518ca67fe16cd35a05193f0caa76e5676841a0b5ddac1f14a9ea789 +INFO [12-05|10:09:04.090] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=157 batch=0x64e322cf1ae8125177fb356a8aafcde955d8011fe8bcf1687a2629606ec93cd5 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:04.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf39ce83764ef6971c406a040faa873c661133970792d434bbd9a46c28b802716 +INFO [12-05|10:09:05.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=158 batch=0x9b0cbd27e11100927831c7fa2a73d2ef8d8cd78ba76f6158146a9c74e5580fe9 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:05.091] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x02725d2f154b068f80eafca6398e82dbcc7fa24aafa72d6526217681f5ce08dc +INFO [12-05|10:09:06.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=159 batch=0x8b4126d28c57b0db793e691801e0287cd6d9809ee37d7cd93a5b0eafc0f4cb01 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:06.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf8b8685903f35450feff790aed590f4d1c8bb02378845be745d7e35a1e7ad92c +INFO [12-05|10:09:06.088] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x8b4126d28c57b0db793e691801e0287cd6d9809ee37d7cd93a5b0eafc0f4cb01 batch_seq_num=160 +INFO [12-05|10:09:07.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=160 batch=0x44758ff8c0fc7f97e057652e38dd880c63c545500c385d44b7f97c2245fedf71 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:07.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9fa8f71ca8300c6282d1975b39edea60984ed5616ad486fda7d9b1d625886ac3 +INFO [12-05|10:09:08.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=161 batch=0xec4dfb32f99716912404457d3a727295f4eab1ed7c3cac9617fc0ab8a898cdeb l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:08.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x88f9ac4c5cedf24b9b5b7f50219a99c681b199f61f90451454b45fc7f9f4af1e +INFO [12-05|10:09:09.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=162 batch=0x49ef8481316b60b5fb3b9220c7f3de8d0a5e8bbeabe7a6283014902c410064c4 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:09.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1857567089712c1cc78f876d19f77000313d8d9a76db345039b9864f58c63295 +INFO [12-05|10:09:10.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=163 batch=0x5735b87e1676f7ede6f8965c2266316d5bbe75eea772b4438a308029266632f2 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:10.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xff029a8017a1b683617a19998b04aa03dd29668729fdf056e90b253355097d5d +INFO [12-05|10:09:11.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=164 batch=0x7d7b9d09a207e96f6e9ec79b029e9f04ab43ed3e00ea092aef785ffc702dbe47 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:11.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x80b14e55ae6575bd99b43351cc6478e820add2726a09d574fba7d7e9d1d43d28 +INFO [12-05|10:09:12.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=165 batch=0x04f8dc8eb032f02c9ca9d2cbdae5db951a4bd43826b7b07afd812eb151a8dfb9 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:12.088] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3c7fad989071c58884ad86e1949f5e567ac87b7defdcd0d7c06b5fe8dd324bbe +INFO [12-05|10:09:13.088] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=166 batch=0x8f80ca4bdbbc6d49c5dcdfcecaa55cc5ea16d05630049ae9613710be5cc00c2b l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:13.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x192b200a0cb7c2f3420b978a55865d7a3d27182cb65dc1199de07cab2cf18595 +INFO [12-05|10:09:14.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=167 batch=0x9d320ded7e802811d071e41e0d51a44dde6377c23e26b80f8836ed3a28869c96 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:14.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x49d9bd5de0ebf390e842e5d4ef69c126a3e93d758abedae4257809c5bff49669 +INFO [12-05|10:09:14.247] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=27 block_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:14.247] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:14.583] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x3afcc127ca9c07cc93f9862e9f7ac29dcd4876fb21aa55ba8e482315f02031ce block_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=109 batch_height=108 rollup_idx=0 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=110 batch_height=109 rollup_idx=1 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=111 batch_height=110 rollup_idx=2 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=112 batch_height=111 rollup_idx=3 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=113 batch_height=112 rollup_idx=4 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=114 batch_height=113 rollup_idx=5 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=115 batch_height=114 rollup_idx=6 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=116 batch_height=115 rollup_idx=7 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=117 batch_height=116 rollup_idx=8 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=118 batch_height=117 rollup_idx=9 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=119 batch_height=118 rollup_idx=10 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=120 batch_height=119 rollup_idx=11 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=121 batch_height=120 rollup_idx=12 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=122 batch_height=121 rollup_idx=13 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=123 batch_height=122 rollup_idx=14 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=124 batch_height=123 rollup_idx=15 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=125 batch_height=124 rollup_idx=16 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=126 batch_height=125 rollup_idx=17 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=127 batch_height=126 rollup_idx=18 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=128 batch_height=127 rollup_idx=19 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=129 batch_height=128 rollup_idx=20 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=130 batch_height=129 rollup_idx=21 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=131 batch_height=130 rollup_idx=22 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=132 batch_height=131 rollup_idx=23 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +WARN [12-05|10:09:14.584] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=336.512542ms block_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:15.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=168 batch=0x0e3b2473b73007553cc126daf517bcb6243a4f0ad9656f800a77a0064c671109 l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:15.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4ff4a70250b8c67d368b209ab7293be7bcba761e239e2d8307fe3280a9cf554c +INFO [12-05|10:09:16.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=169 batch=0x986d0c283dffab6e003c01e0f59ba5ffcf8c9ac992ae56e309c3a0e4cfecb500 l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:16.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8ca11b2bc5516fd0f14bc0a74023f039c324efa778df8234a10d4e1d5415ee7f +INFO [12-05|10:09:16.083] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x986d0c283dffab6e003c01e0f59ba5ffcf8c9ac992ae56e309c3a0e4cfecb500 batch_seq_num=170 +INFO [12-05|10:09:17.091] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=170 batch=0x37309de6a49671915966b9bb97c56e0d85c4eee4caae9a504d5bbcd0d5657cb2 l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:17.092] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8690b4e634629f0c9304b3d3676231f081058357d677d99dc5e0223fe526ebc1 +INFO [12-05|10:09:18.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=171 batch=0xf64e5c5c969a5c811d7320cfa68e1ec7cfdc933cf03560757aa5ad3ed8ac10b5 l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:18.088] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9f538452d61d9cfc7390d0fbd3e953ffe5c38c7982858c894cc80b6c0429624e +INFO [12-05|10:09:19.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=172 batch=0x21226dad030d45b75339d09cbeb1223aaf6832c261a20d692397cd02ba3214f6 l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:19.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9e33f35971a4308b2cddffe8baa3454eea90ca53658669b1837594b56ba81f26 +INFO [12-05|10:09:20.094] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=173 batch=0xd5fa6e624ae019845b0d0143946b2d1d42872508398a3af354fa28d550d354df l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:20.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x305b1a4c86cd4c343192f8864062787db3e09e5749b1fa82bcf9bd02825c5e5e +INFO [12-05|10:09:21.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=174 batch=0x35597e0e1c48c47d569b53a7fedd26788efffd6206eafb1d1d6d5e1bbe0baaa3 l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:21.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf591b01ba59fe98b282d344f0f933b189ba1eebbaed40728cee0863407c0cb85 +INFO [12-05|10:09:22.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=175 batch=0x78b8df000899f461849c835396760fbc9c7f6c724585ab4e9bac92eee715fd16 l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:22.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5bf2c54237d6bfef08a53fa164571e8778884db1ce4787bbaffee9c70beb148b +INFO [12-05|10:09:23.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=176 batch=0x519a8765b2dcf59d22b03a2928665a5d168b6100af437c34d20c4ec9fa0fd6e1 l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:23.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5cb5d83ec6fa371b2e07187ae719e6cf7fa061806ea1e5a45037f82c9493afea +INFO [12-05|10:09:24.093] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=177 batch=0xcdedc87b130f8da091cb1da5b9cb2511fe52a4eeccb1721352342ec6f8a7ccab l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:24.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5ddd29e7bc04ddc97aaa523ec0dba367f30386706ce56beffbeb0304f582b047 +INFO [12-05|10:09:25.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=178 batch=0x78a510dd61999111a725e0538ba0c593ce44deca06fecf9ee786f9307d2d0bfb l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:25.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbf4fb32af6def38d86e7b6dc4322e7c16cfe2a98cdf4bd4958b42977e7799a03 +INFO [12-05|10:09:26.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=179 batch=0xd20663294b71943045ad0f5ca5c238ffb10407b4ae4b8aacb3242b03f5b8139b l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:26.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xda5ba7cb1cf371e878196f81113e56fbe7f822ea026ec2e1fa175b8bb3570cf1 +INFO [12-05|10:09:26.076] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xd20663294b71943045ad0f5ca5c238ffb10407b4ae4b8aacb3242b03f5b8139b batch_seq_num=180 +INFO [12-05|10:09:26.300] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=28 block_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:26.300] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:26.585] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xfed2d9e0c51a7a8ae46229207971d75df1b7f29c991bd820e7360ae2b3b5ef53 block_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=121 batch_height=120 rollup_idx=0 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=122 batch_height=121 rollup_idx=1 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=123 batch_height=122 rollup_idx=2 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=124 batch_height=123 rollup_idx=3 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=125 batch_height=124 rollup_idx=4 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=126 batch_height=125 rollup_idx=5 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=127 batch_height=126 rollup_idx=6 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=128 batch_height=127 rollup_idx=7 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=129 batch_height=128 rollup_idx=8 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=130 batch_height=129 rollup_idx=9 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=131 batch_height=130 rollup_idx=10 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=132 batch_height=131 rollup_idx=11 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=133 batch_height=132 rollup_idx=12 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=134 batch_height=133 rollup_idx=13 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=135 batch_height=134 rollup_idx=14 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=136 batch_height=135 rollup_idx=15 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=137 batch_height=136 rollup_idx=16 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=138 batch_height=137 rollup_idx=17 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=139 batch_height=138 rollup_idx=18 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=140 batch_height=139 rollup_idx=19 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=141 batch_height=140 rollup_idx=20 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=142 batch_height=141 rollup_idx=21 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=143 batch_height=142 rollup_idx=22 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=144 batch_height=143 rollup_idx=23 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +WARN [12-05|10:09:26.587] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=286.289042ms block_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:27.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=180 batch=0xaab5a9cd80cc61c478061d21c21a7272b92adee578fdcf144c8e35d00e1717b1 l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:27.090] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x48ce15fec5fcee6b17e0e9c30b7b8e33a5821e14d51c6735d57eba96a6ac95fd +INFO [12-05|10:09:28.089] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=181 batch=0x678c75bca8a7b5c2971831e2a0c1d35666800a65eba4772641b712e05737a63a l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:28.092] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xebb18d4c46dcf15fe06ff4c9cfa81eb743b96eeca84fa1cb326d0c1a4548a0ec +INFO [12-05|10:09:29.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=182 batch=0xb15b4271b9f6052ec20cc0eccff9c0146aee29fc2aac9c36bfd63edb8ed452e8 l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:29.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x09f2e70fcce9bb064fa07b495a5737c9a55a8a2e8011debfb03512818f1d0c46 +INFO [12-05|10:09:30.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=183 batch=0xf4764d9d0dd3992fa7d43ae026ebc6ad076a9cee1337d54a1d0aa4aa7f9b046b l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:30.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa226984ebb3929aff5acd6378a0d6b4a92e6f5a8a4562033e12aa2cd872d8818 +INFO [12-05|10:09:31.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=184 batch=0xdaac4729049b3d12ca746504010ff43d716dfd7962cd89d139fe33c291f1c0ad l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:31.091] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x412770cd8d6706d31afed240848aaee295c585e2ce863920a5505d15e25fb82c +INFO [12-05|10:09:32.090] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=185 batch=0xed40d6a347218313f7dcd38a1ff49e7e1323b13725741401153c15f51b0f0788 l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:32.092] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x638cc7be11c5b11eda2913219e947e5a29dbb3558303f33c679e5f009cb47402 +INFO [12-05|10:09:33.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=186 batch=0xdddec9962b31333d8b4bcb1a8f7e1a6ce4670dc827c4642957c9738a022fd39d l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:33.088] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8ce14712326b67ac089ce4794ae015fe883f81763b4f81242ded1d9495b43b37 +INFO [12-05|10:09:34.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=187 batch=0x1561e2b653007ae277123395aedf4e9202e08f789f99b6b74eb57af48f1c4ddf l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:34.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb6c67e8ef6ff829dfeba103dd20754277654e2dacf5ae78c7f529b6ad7ffc0e9 +INFO [12-05|10:09:35.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=188 batch=0xc46b0d132d9a0b14ce56131de8b8aba96ce3dae047f4c74bda4272bcacb8ad78 l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:35.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x066e3ad8adc71dcce3e6680f3e33c8dfd1d16f0e3d932af98cbaffe572a66abf +INFO [12-05|10:09:36.094] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=189 batch=0x704e376128c11876959fe23fd700e81aae1deec11a25d971e43af8d4822d5122 l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:36.096] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8d797206bbe700c9efcc8fb08ee99091ea79cf4010f4d72f39a93eb0c6b7cb3b +INFO [12-05|10:09:36.099] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x704e376128c11876959fe23fd700e81aae1deec11a25d971e43af8d4822d5122 batch_seq_num=190 +INFO [12-05|10:09:37.096] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=190 batch=0x37f99b8898143c5ceef88ef8890d641698f33300303fdbb5341ba6f453fc1c4d l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:37.098] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x39cdd4d832e90cbd4d96c406a0f034a17d8241613a487ad2b17295eb7dcef95a +INFO [12-05|10:09:38.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=191 batch=0xf21ea9e367fbce77ee7f3d85d27c4f56de5530a558bcbeb00575ce5eb677afdd l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:38.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x40327bbc55a2b2248fe3ef69f02b3787f82b8bdfc1c712b0ba93257b79baaff3 +INFO [12-05|10:09:38.298] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=29 block_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:38.298] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:38.676] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xf3911edc9373f0ef1d7199286f28e418d5578bef95e766ed8344d76d6017860b block_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:38.677] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=133 batch_height=132 rollup_idx=0 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.677] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=134 batch_height=133 rollup_idx=1 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.677] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=135 batch_height=134 rollup_idx=2 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.677] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=136 batch_height=135 rollup_idx=3 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=137 batch_height=136 rollup_idx=4 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=138 batch_height=137 rollup_idx=5 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=139 batch_height=138 rollup_idx=6 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=140 batch_height=139 rollup_idx=7 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=141 batch_height=140 rollup_idx=8 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=142 batch_height=141 rollup_idx=9 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=143 batch_height=142 rollup_idx=10 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=144 batch_height=143 rollup_idx=11 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=145 batch_height=144 rollup_idx=12 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=146 batch_height=145 rollup_idx=13 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=147 batch_height=146 rollup_idx=14 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=148 batch_height=147 rollup_idx=15 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=149 batch_height=148 rollup_idx=16 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=150 batch_height=149 rollup_idx=17 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=151 batch_height=150 rollup_idx=18 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=152 batch_height=151 rollup_idx=19 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=153 batch_height=152 rollup_idx=20 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=154 batch_height=153 rollup_idx=21 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=155 batch_height=154 rollup_idx=22 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.680] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=156 batch_height=155 rollup_idx=23 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +WARN [12-05|10:09:38.680] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=381.290959ms block_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:39.093] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=192 batch=0x69d97fc050a8278be3a934295a27655ae0f4097ab72d8f89e5ea9476ab3a14b6 l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:39.094] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd271cdd114bae73b4aa56b9fe920409d808dd00bc6b331e62bb2d4c0c1ab9260 +INFO [12-05|10:09:40.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=193 batch=0xb79b35d79c4da208b6dd001d1aed0df628f3f85d0b245bb3ff1220ba691a0ca1 l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:40.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1e3d6cd90acbf7fd196147b9767a6e598ce4b8b2e1604223c77a8ea6d1ef75fa +INFO [12-05|10:09:41.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=194 batch=0x7eb948913ca4235a1dd88d0be324ff3de5ce3d1ba6fe33df27aa2e4b7e218eed l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:41.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xaec1e540a4b9906dcb17e7b3fae6773ce07eceb9403258484584660f328ee653 +INFO [12-05|10:09:42.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=195 batch=0xe58be5fd81fc80a1520693a703253b1adc12449d8aceea9c05bb2b646728a6ce l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:42.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbeb559d0029b783b17909e11f8611c7bfb80e84a69c06bb996493d6356ec5ee0 +INFO [12-05|10:09:43.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=196 batch=0x71b7bf8160a50d75dde2363aa8bda88d6aaa5bfd6b06f7c24dfdbe1bbf1236d4 l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:43.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x67ff18e24ec8bb97b1aa38a1b43e61fd67f18ea45d4b7fe53411cb57721bea5d +INFO [12-05|10:09:44.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=197 batch=0x9b3c4562dd89367e380f1f4d79ece5171e76a235eeb90a2e5c0ab6c075354682 l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:44.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8951abf58638c26d96ebad03fc8dd52400680756176c396e038b00bf05fcda56 +INFO [12-05|10:09:45.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=198 batch=0x45abfe0c3ee22685a9a3b487fdd3a5772a727a3c506b4463f7bee02e0d01cef6 l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:45.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc6ae2586e8aec8e034e42228f45ed71e789cd1eb5fc56b0d103078c674b6c78a +INFO [12-05|10:09:46.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=199 batch=0x8cb4a5e9886e6a44a3cfad1d079b9f02744e7da72adc4792a4897f2139d5bb85 l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:46.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb2dc56462bcb603cb3703d11bc818d595f492ca1820941135f29505df7e75752 +INFO [12-05|10:09:46.078] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x8cb4a5e9886e6a44a3cfad1d079b9f02744e7da72adc4792a4897f2139d5bb85 batch_seq_num=200 +INFO [12-05|10:09:47.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=200 batch=0x1b518ffaa61619d8037972ba3b2e65c51883b7b5e4dd0e659d1a8d6fc41bf6e4 l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:47.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbb24f8726a99cb7008fe3dcab3cc4ad4df221839ca996cc71b688e8e0d7f4e5e +INFO [12-05|10:09:48.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=201 batch=0x18f2f61f3f8cb38cc862ebb0640b20d99628b05fda3336fd93f1def64c19d45a l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:48.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x30b4fa8e955a4fa36ebd05019cf005c7d9328baa5d0ae7bc2b2922f18543648a +INFO [12-05|10:09:49.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=202 batch=0x30d15eb09fbd2465158c0cc60a19cbe133e509e49b77e303f78331df8d42d126 l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:49.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1c61f75bf5d650a59c7931994c8f235402d742d0e129453e8e88223a7667a81e +INFO [12-05|10:09:50.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=203 batch=0xc62ceb4aff18cce0cf92493a37f522cc836937f72dec7846793b49e0880993cd l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:50.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8e2b3b2106b20e83941b45fd807ddea8e136cb91bf93fccf745a8a18c19d23f7 +INFO [12-05|10:09:50.274] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=30 block_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:50.274] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:50.620] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xe2a273ed6166d678d43b8f2f56ee67f657c93bc7f697a7c6d2aa943bec6c4a89 block_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=145 batch_height=144 rollup_idx=0 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=146 batch_height=145 rollup_idx=1 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=147 batch_height=146 rollup_idx=2 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=148 batch_height=147 rollup_idx=3 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=149 batch_height=148 rollup_idx=4 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=150 batch_height=149 rollup_idx=5 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=151 batch_height=150 rollup_idx=6 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=152 batch_height=151 rollup_idx=7 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=153 batch_height=152 rollup_idx=8 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=154 batch_height=153 rollup_idx=9 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=155 batch_height=154 rollup_idx=10 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=156 batch_height=155 rollup_idx=11 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=157 batch_height=156 rollup_idx=12 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=158 batch_height=157 rollup_idx=13 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=159 batch_height=158 rollup_idx=14 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=160 batch_height=159 rollup_idx=15 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=161 batch_height=160 rollup_idx=16 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=162 batch_height=161 rollup_idx=17 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=163 batch_height=162 rollup_idx=18 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=164 batch_height=163 rollup_idx=19 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=165 batch_height=164 rollup_idx=20 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=166 batch_height=165 rollup_idx=21 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=167 batch_height=166 rollup_idx=22 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=168 batch_height=167 rollup_idx=23 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +WARN [12-05|10:09:50.621] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=345.89425ms block_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:51.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=204 batch=0x35757286ada27f000b9f293d26964daab4f5c180a134104993e50df31d12e5b1 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:51.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb9ed2fd7b728cc32ba4736ec35c75d4a844cd2b1b3a09d45e7aee08933ffc14b +INFO [12-05|10:09:52.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=205 batch=0x1b7c67bb72ca2ae2084e5ea8e8b960bf4fca26bd44c56c93167f5431ba796ab6 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:52.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb442f2c428decf568414c11ccce98fb1effb9d4572a435184c9222ca68fc79e5 +INFO [12-05|10:09:53.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=206 batch=0x435a87bb5f6f0ad44333cfeb3861be82f2781213b883b93855d4c9c6e113ca9b l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:53.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd5852a454e36b1b075d43621ae51d4750a30f83fa3e6b0d6ec5b5a498e0f64c9 +INFO [12-05|10:09:54.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=207 batch=0xe34bbe3bc8b6e6b801175a6b455d5a43464b3b2906150100fb3621df321735f2 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:54.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x38737cb8cef38800302842b7aa6a4e27621d6055b6bf65f2e6ea725f5d9a3d93 +INFO [12-05|10:09:55.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=208 batch=0xe363918a512f760cfc24f3872a8c03759ce48fb4824e20ea30c7affd970d1c52 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:55.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3e9560cb0f04f6ccc544da9f4e684c388717a40f1ce10947a9655de0a8d93b1f +INFO [12-05|10:09:56.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=209 batch=0xaf7fc54018e32fcc3e7ed531f7485bf3a2ba70aa5c06b151cddcdc5df0ccd2bc l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:56.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc817bcb46815106ab45929ab771dc409a715e9ed80838a7a0ed130ba455a8601 +INFO [12-05|10:09:56.079] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xaf7fc54018e32fcc3e7ed531f7485bf3a2ba70aa5c06b151cddcdc5df0ccd2bc batch_seq_num=210 +INFO [12-05|10:09:57.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=210 batch=0x96b0d70cb1f2cca59281da6ab5e3f57b65d1bbe5904304f9f7afe3fd86e790c8 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:57.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe8d88a154e58ab8b5f5a42594e4a76350b4a5791fc03794246fa2aa0a95ba002 +INFO [12-05|10:09:58.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=211 batch=0x57eca2b5fd2b25fa8c7426dad863b71727f521278f1df4127b4ba75cdd812365 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:58.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xff369fccb65cbe5e07635344e62bec016942bd8a0496f6ca24a95bf5933d5309 +INFO [12-05|10:09:59.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=212 batch=0xcfcaf506b42b86621b0ba16a513221dfdfcfed24733ef3650aad74b69f0ce3d8 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:59.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbe9597d754213ccef19d61009d693636a41cbde3be77cb2efda8f4759d174c78 +INFO [12-05|10:10:00.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=213 batch=0x45d2cf24eb6f0612cfafc424ea7fba7ca0e3c3ca8b31ef3887a18bf602b41e99 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:00.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x264c186275becc91e4b30f9ec570719c102d3d51ae7f4879ae3c9eefabc32840 +INFO [12-05|10:10:01.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=214 batch=0x32e6d7d5df33cf1771bf112f59cc66d475983e0b5824044a7541cef2746864a8 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:01.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc77e2cc99bceb3b331469e64538fcef4306c47a0662e5a61c2c0713053946461 +INFO [12-05|10:10:02.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=215 batch=0xe3154d500e02feebd069069ad9a42abb2a341ddf964cd58c320fb0d78fe97574 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:02.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe07839e06cb6a85a307dc3c0bcd542210189b7b20994cab6544efceee378637b +INFO [12-05|10:10:02.267] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=31 block_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:02.267] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:02.744] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x60f08f639fc30a135c9a5a37e73d1cf7aae0d4ecd998ee9504ca15b9066eca4f block_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=157 batch_height=156 rollup_idx=0 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=158 batch_height=157 rollup_idx=1 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=159 batch_height=158 rollup_idx=2 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=160 batch_height=159 rollup_idx=3 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=161 batch_height=160 rollup_idx=4 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=162 batch_height=161 rollup_idx=5 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=163 batch_height=162 rollup_idx=6 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=164 batch_height=163 rollup_idx=7 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=165 batch_height=164 rollup_idx=8 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=166 batch_height=165 rollup_idx=9 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=167 batch_height=166 rollup_idx=10 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=168 batch_height=167 rollup_idx=11 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=169 batch_height=168 rollup_idx=12 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=170 batch_height=169 rollup_idx=13 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=171 batch_height=170 rollup_idx=14 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=172 batch_height=171 rollup_idx=15 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=173 batch_height=172 rollup_idx=16 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=174 batch_height=173 rollup_idx=17 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=175 batch_height=174 rollup_idx=18 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=176 batch_height=175 rollup_idx=19 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=177 batch_height=176 rollup_idx=20 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=178 batch_height=177 rollup_idx=21 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=179 batch_height=178 rollup_idx=22 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=180 batch_height=179 rollup_idx=23 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +WARN [12-05|10:10:02.745] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=478.18ms block_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:03.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=216 batch=0xa90eadd73d7ffc53f59d32221d795b35dcdc69e03c896137215d165a3bef8a83 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:03.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcde7805abe3fd5673d9aaef0a01f71bf0be6837b53b99670153f8948cb74b441 +INFO [12-05|10:10:04.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=217 batch=0xd96574d3952dad35f29d45d90de71e6661c158a9dbb3e26776e339e04cc4f3b9 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:04.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1745f48aeca3ffcd8f17e17fe27a277b090468aeb5b451e28ed6d7cb91e69e7a +INFO [12-05|10:10:05.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=218 batch=0xe041bc04817734075ba7309f2912765a838ee63c1532f4b2ed4e2a3a7698dcc7 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:05.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x75716fb46a2120865bcfc726bfa3df8daee7efd86ad8ba657bf3567e51b0c323 +INFO [12-05|10:10:06.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=219 batch=0xe1751f517c70f2c85421be1bec57c0f2c40081ccc37f862e90337443920780e5 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:06.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe90771d324845b274cda659d4a25689cd327dfd7ae4893c4d13c1f8a9f1586ba +INFO [12-05|10:10:06.084] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xe1751f517c70f2c85421be1bec57c0f2c40081ccc37f862e90337443920780e5 batch_seq_num=220 +INFO [12-05|10:10:07.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=220 batch=0x9920c9ea84811bd912e466b204581d18fba66eb6fd5449ae223b8920fb778aca l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:07.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x353d7c5c48dc6520b6ebfddb999444c8895aa7789eaef8ce73fcb0fabe937bd7 +INFO [12-05|10:10:08.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=221 batch=0xad58dd5b94689d42edbb2c7b6818ee061a6140c069f90eaea51fb1401c84773b l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:08.091] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdde8dc293f048e200c09f1118ea037dde79820f83f59b6e6c0f7112a781816e0 +INFO [12-05|10:10:09.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=222 batch=0xf75795744001863104437f83cd2c9331452252cf208441aa423ec4b933b8bc79 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:09.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfe74fc13d66bdd516ac0ebc9ea3b5bab08923337dd2524fbffb0f7afd1f94100 +INFO [12-05|10:10:10.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=223 batch=0xf2bf9b0e856a0805a99ca361ebd086c97ca2bbbde3fa79ebe264d267e04f4105 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:10.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x31e873ca9d0ef433c6e8807961ef9100539d331c9e6ebbefac910aadfc935d22 +INFO [12-05|10:10:11.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=224 batch=0x47264893657378c1cf5df2ed0d0a0df1bf266a320b35d03e95cb2cc57ba69b56 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:11.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x996494480a37096bb4222847c52ec974ce652bb12b636075b250119ff0bb4d13 +INFO [12-05|10:10:12.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=225 batch=0x191b51a2c1fe05fbb2b78a6537865495fc9aad08d00a203d60749db45bbdcff2 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:12.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3e0a5efcfdaf478153a3ab00c4931bcaff9cdc75feb8c0fe089155e1bfc9c28c +INFO [12-05|10:10:13.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=226 batch=0xe9c8cef87045e88b0500945fae9acfe6d974e99b100c81c9da5505c9440a78ab l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:13.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x647610292e7f344675521bac82afee6d71e85231d8a4f838111348a8718d35e2 +INFO [12-05|10:10:14.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=227 batch=0xa7b068cbe19569e41969e4a13de75c028ec1daed646d91b3de85e0b649d6c6c9 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:14.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3e40b00289ab8b1b32f2c2c8f724c0f38a6f80c2abaf2f7ba92ade43643d6acb +INFO [12-05|10:10:14.310] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=32 block_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:14.310] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:14.563] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xd2167ce94d923b438cb4710fea5142409e5e15979d44f3f961a912c3298a93c2 block_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=169 batch_height=168 rollup_idx=0 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=170 batch_height=169 rollup_idx=1 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=171 batch_height=170 rollup_idx=2 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=172 batch_height=171 rollup_idx=3 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=173 batch_height=172 rollup_idx=4 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=174 batch_height=173 rollup_idx=5 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=175 batch_height=174 rollup_idx=6 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=176 batch_height=175 rollup_idx=7 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=177 batch_height=176 rollup_idx=8 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=178 batch_height=177 rollup_idx=9 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=179 batch_height=178 rollup_idx=10 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=180 batch_height=179 rollup_idx=11 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=181 batch_height=180 rollup_idx=12 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=182 batch_height=181 rollup_idx=13 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=183 batch_height=182 rollup_idx=14 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=184 batch_height=183 rollup_idx=15 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=185 batch_height=184 rollup_idx=16 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=186 batch_height=185 rollup_idx=17 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=187 batch_height=186 rollup_idx=18 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=188 batch_height=187 rollup_idx=19 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=189 batch_height=188 rollup_idx=20 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=190 batch_height=189 rollup_idx=21 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=191 batch_height=190 rollup_idx=22 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=192 batch_height=191 rollup_idx=23 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +WARN [12-05|10:10:14.565] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=253.787167ms block_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:15.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=228 batch=0xefa6d9bb8eabe9da530d98b4fddb00316bdba769662b8781c0936c6477c838b5 l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:15.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc4ae1ccc574111e5a5eb0e6c713349efeb7fdd91da31ec656f0c436f4f00e233 +INFO [12-05|10:10:16.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=229 batch=0x04825c0c189b4e8be8eb4cf4677f16ef7b02fc0b7df26b0d403ea7547e5c89e1 l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:16.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7a2fb40bb0bacdad2d0d5a9474b8cca28af1b546e02e7ca0feb6068633acf737 +INFO [12-05|10:10:16.093] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x04825c0c189b4e8be8eb4cf4677f16ef7b02fc0b7df26b0d403ea7547e5c89e1 batch_seq_num=230 +INFO [12-05|10:10:17.089] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=230 batch=0x8ab3bfb6a7eeb868908b3844a1626cdf3c757a508d0be689bc6789a8b788bfc9 l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:17.091] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd6badba0fa2f3cbcdb01d6b9768e766df971e5e92c59a22206955268f430fad5 +INFO [12-05|10:10:18.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=231 batch=0x76099062d502c44b051d738180df8af9b83350e74343e5ca38c9a01430f0c7fa l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:18.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xad3b50394da80c07e324f4a5c00abd1b1c17865c73789ba2b6e3d8e8b4003ba5 +INFO [12-05|10:10:19.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=232 batch=0x6679715b3155fa95dd1a309028c6d2c74b00fc1eb91a4d248c6d3e604c7ca55a l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:19.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xffc4af73416156d9239e69eb1bb4db07406bf4de904b4688c023af4353c26346 +INFO [12-05|10:10:20.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=233 batch=0x3e89f79824807e13a321ca4362b0b93599c86846e8512b3ae536f0b9692df34a l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:20.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x196bef3f1df8e5370ae790eb2175b2e62bed02f91e1a9b9fdf363f28ef198ffd +INFO [12-05|10:10:21.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=234 batch=0x21a1128fd19b78f868d4ff216361375410795229e095d05d3db11e2042820c38 l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:21.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0072808f9c885d51c731c4bde7631d62bbe4e73030821a0fcfc1604d02b0a3e6 +INFO [12-05|10:10:22.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=235 batch=0x1254de776be4125dea4249aca2259d705688e26b3a6a0165247380a8ef75928b l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:22.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa0426fa30efa72e6dac1aa0c0d85bd5fe440cd01a5d513a5b992d241641f2aa5 +INFO [12-05|10:10:23.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=236 batch=0xc5b086e1ea4241ec3e1944e52a543a2104f4e512168770154467e0ae02623934 l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:23.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x23b72cc76d5b3d036af15274f099c99e271b4cd0905096853aee20cddecb5aae +INFO [12-05|10:10:24.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=237 batch=0x214b8113714f6f01dcc544f20dbe4baa176d0fcf9e13079f6b5fd7ee819f41f1 l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:24.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfafbdaab12347c4335dacba4d3d419c63e641c5383acba02c6fa9ff5d8b87c21 +INFO [12-05|10:10:25.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=238 batch=0xb74b29b159d0945d8652bf6ee9dbd5437c0d58c321f3e01d9a71ddeb3d462193 l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:25.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5886261b64bb50572648ec23c9efa057c0f458a624114ba8780005cf4efaed4b +INFO [12-05|10:10:26.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=239 batch=0xdec845b560b6633af5f1f227817c675a85bc9c03db7d00f60b9875bd6fc5cd6e l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:26.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf970b0f931d82041c5a18b87dcf8133584598c0d04ab77d6e6a41b6636d1c100 +INFO [12-05|10:10:26.079] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xdec845b560b6633af5f1f227817c675a85bc9c03db7d00f60b9875bd6fc5cd6e batch_seq_num=240 +INFO [12-05|10:10:26.290] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=33 block_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:26.290] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:26.622] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x3c025e8b194073e7b70a2aa939a2861dba9a40020a5a4d1a0c208259ee64dcc6 block_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=181 batch_height=180 rollup_idx=0 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=182 batch_height=181 rollup_idx=1 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=183 batch_height=182 rollup_idx=2 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=184 batch_height=183 rollup_idx=3 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=185 batch_height=184 rollup_idx=4 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=186 batch_height=185 rollup_idx=5 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=187 batch_height=186 rollup_idx=6 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=188 batch_height=187 rollup_idx=7 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=189 batch_height=188 rollup_idx=8 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=190 batch_height=189 rollup_idx=9 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=191 batch_height=190 rollup_idx=10 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=192 batch_height=191 rollup_idx=11 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=193 batch_height=192 rollup_idx=12 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=194 batch_height=193 rollup_idx=13 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=195 batch_height=194 rollup_idx=14 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=196 batch_height=195 rollup_idx=15 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=197 batch_height=196 rollup_idx=16 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=198 batch_height=197 rollup_idx=17 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=199 batch_height=198 rollup_idx=18 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=200 batch_height=199 rollup_idx=19 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=201 batch_height=200 rollup_idx=20 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=202 batch_height=201 rollup_idx=21 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=203 batch_height=202 rollup_idx=22 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=204 batch_height=203 rollup_idx=23 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +WARN [12-05|10:10:26.624] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=333.098584ms block_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:27.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=240 batch=0x67f26885d68cfc20e2d7f6ba860589d2a9336c7e96938cdac5e6da607fe18c14 l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:27.092] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc468803fbcea95144af1ffd15221639c1c997f3d9b2ef0f587547a4795d20b35 +INFO [12-05|10:10:28.095] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=241 batch=0xa10d02c90c60d1a85767e6caae4c746e3f9d4a6dae310773d274456888f28238 l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:28.102] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5d3fc2437fd9099dc47a075b35fada23bf057228f0508b7dc254bc46c1c97537 +INFO [12-05|10:10:29.093] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=242 batch=0xd8c3f667cee1a03868bf7b118032688088e9ba9c0429eb3a5078a067df7a4c7c l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:29.101] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x783d86333a75d5f91054beac25eff322c1ae9b1aa8ddd28ec41adcea83a8712b +INFO [12-05|10:10:30.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=243 batch=0x591fc0726ab6aeda101bf52c03e6d27f1d68adb708446c475ab5b95bfec28c16 l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:30.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x98fb4caed5213b343d50f9cf0e6a9ed624331451d65c4ffb88ccf9b5aecf800c +INFO [12-05|10:10:31.091] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=244 batch=0x00c8798198ecec0aa753117f6e40158b9410b23ce9a95f909a5bda9ca82d4e6f l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:31.096] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc84e603d5851c0870ede1382ff13c7f5f492015662d83604d2019ad77cb5b417 +INFO [12-05|10:10:32.097] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=245 batch=0xb9b997658570b8d1efcc69cb73d848f6381e2e587963238d80c1ffdf0748b88b l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:32.100] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7c6730c7d1b9365a8e518c401526990147c55c0a7a059ce5ad34ff518afbc35a +INFO [12-05|10:10:33.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=246 batch=0xec1f977d0b6ad09c8e630794561f808ff69feee3293c4bd21fc9fbd3cf4b53d8 l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:33.088] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x304081cc4508e98fe041adc05927ef8d42e436c2066007b9d1aac7e8ac8fa06f +INFO [12-05|10:10:34.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=247 batch=0xaeb106c4da7b647c79abf4e2136094b858a6cb46056f6510730fb5876eebfc47 l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:34.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf9854d0219a47f0a7e899a1ca09d150fdd86c0ec38c72b19fc0630d250d0bef3 +INFO [12-05|10:10:35.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=248 batch=0x382f34157cc3cfcf3e2775e29374b0b1f71719ea615d16bef7c4069b68501237 l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:35.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xccde03e1b563a5432de723424b4b70cc928e261bcaaf63e4d79ee892980b3e43 +INFO [12-05|10:10:36.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=249 batch=0xa27a7f4accb66c396cf5dbdf7e5984a34143c681c7960717ffd75992143f3bcb l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:36.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3f4eb20365ed4b159ac5b7c31ff40918e355f7ce422945904d126256024a6ac7 +INFO [12-05|10:10:36.083] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xa27a7f4accb66c396cf5dbdf7e5984a34143c681c7960717ffd75992143f3bcb batch_seq_num=250 +INFO [12-05|10:10:37.089] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=250 batch=0x592e4aa668feefe75fe94ec846b70cf5f185e6277be8f79c7bfa61e0d579f04d l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:37.097] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd08b299fc0688de4ccf32df83a50725ea8a9a4f3f895bc4e5c598b436e871e92 +INFO [12-05|10:10:38.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=251 batch=0xb34c95bf04f00c2a8f7ebbaad4e4f390acfb41f31886a1e8c048692793ae881a l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:38.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa35a75c3a1a43e9475ccb9b4e3f3128207cf87741883645876dead8d6b8476c3 +INFO [12-05|10:10:38.331] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=34 block_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:38.331] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:38.680] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x3eef394156074cf235cbfb02cbe18515d67cd7f9816ce1f277d79bb6b9da3c4f block_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:38.680] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=193 batch_height=192 rollup_idx=0 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=194 batch_height=193 rollup_idx=1 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=195 batch_height=194 rollup_idx=2 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=196 batch_height=195 rollup_idx=3 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=197 batch_height=196 rollup_idx=4 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=198 batch_height=197 rollup_idx=5 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=199 batch_height=198 rollup_idx=6 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=200 batch_height=199 rollup_idx=7 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=201 batch_height=200 rollup_idx=8 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=202 batch_height=201 rollup_idx=9 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=203 batch_height=202 rollup_idx=10 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=204 batch_height=203 rollup_idx=11 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=205 batch_height=204 rollup_idx=12 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=206 batch_height=205 rollup_idx=13 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=207 batch_height=206 rollup_idx=14 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=208 batch_height=207 rollup_idx=15 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=209 batch_height=208 rollup_idx=16 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=210 batch_height=209 rollup_idx=17 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=211 batch_height=210 rollup_idx=18 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=212 batch_height=211 rollup_idx=19 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=213 batch_height=212 rollup_idx=20 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=214 batch_height=213 rollup_idx=21 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=215 batch_height=214 rollup_idx=22 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=216 batch_height=215 rollup_idx=23 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +WARN [12-05|10:10:38.682] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=349.768417ms block_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:39.091] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=252 batch=0x3f34bce6f0c61a6b0cd25a95c0d1b0f43d3ff9193f926a12ddac2d4ccd6a2f43 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:39.092] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb4931e63569ec4df969e119cb14cdb8801ee890a145b93cc32b57104b869b9bd +INFO [12-05|10:10:40.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=253 batch=0xa1f90ab3c6045733091c9b7a223217592c03b74fc6f1beab174d684fe30b4f67 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:40.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcd2c93e1066a728cd6f6ef6eb385fac36a4275b30720bf5bc0cd90853732f08e +INFO [12-05|10:10:41.091] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=254 batch=0x6bba9c08b14b5e9cd409937bd08aabcbf22d93650611ec12582c8e62f6c4b020 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:41.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x226aec5908a5246184897012e3bcb1f67d8f8b05ae502241c91cb4b67f9e1155 +INFO [12-05|10:10:42.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=255 batch=0xcd706506fdfbdd13264b715f953623171028baa06666b45d1c6f30e5c0ac2f0f l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:42.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd1083add9364be5226095621f70a097538e94974f14d4d1fde64ad865064649c +INFO [12-05|10:10:43.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=256 batch=0xaeebd285a5bd038589ac7f46c7c4eefbcd2b303dc159b0b5171ae6801f1a0db0 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:43.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa24010db6de6856456533478acc049ef93fce3af13e02c022cbaa9e195c06176 +INFO [12-05|10:10:44.088] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=257 batch=0xa2bd1c28628510ae36104905d0dd0e5bfa3e64a29b85ae8b5ecf38b7a5b62c23 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:44.090] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbacfada637a6095b9b4274ea0a6640ec4738fe564b1f1ebb3d3bd5e3d51fc210 +INFO [12-05|10:10:45.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=258 batch=0x90ab7a0df7793a6250ec9e7ce2b68d9cd290d1868fb88584f6b702dc09329152 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:45.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc85721c324c9bb474d73176ec0cf7a09d9e250e6e12df08605ce85ab668f964a +INFO [12-05|10:10:46.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=259 batch=0xbc003dfdd5960af57937e98b4e28150a189d01725df42d8d8b3bbf3d0646378c l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:46.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x48aa8294fb3bc88402c06ff8a7b3969dbd17f007960a6f07863ce96f315374e3 +INFO [12-05|10:10:46.089] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xbc003dfdd5960af57937e98b4e28150a189d01725df42d8d8b3bbf3d0646378c batch_seq_num=260 +INFO [12-05|10:10:47.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=260 batch=0xa3b5c854f74801ad907206cb79b4e406996d31f2f85e03d5d46bb80062ddf419 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:47.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa966951f7b405af4bdd807062aefc4a793e85000af1c6e45b40d7be252aa3396 +INFO [12-05|10:10:48.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=261 batch=0x10f9aa87c9dfa87ef6358086003781f57b685d14246d0cb0b033874e6f1083d8 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:48.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x56411b411a05f73fa33671cb61a8b19ad8a361f04d02c7b493686711a172e917 +INFO [12-05|10:10:49.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=262 batch=0xaac49261278788b7f4e0128d170065b5cfe6f1dbe2a05320fff0180f36badbab l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:49.088] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa6b21a8a7b12d6006109d589059f0a42d67bc3048847e6583155dfbbbedaf9ea +INFO [12-05|10:10:50.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=263 batch=0xd5f4fb9fb606cbd4e0b05a942e94929801877ff7e4252dd9ac2db78ec2d7dfe1 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:50.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf97659b55f18697edfaecb841efeebf191bed671e49fa3dc1bcf1a34a8ae8dd8 +INFO [12-05|10:10:50.302] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=35 block_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:50.304] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:50.732] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x29b7a866442011a36b2400e849dcbb9acaba94e29adcf593183e34bb132b5937 block_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=205 batch_height=204 rollup_idx=0 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=206 batch_height=205 rollup_idx=1 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=207 batch_height=206 rollup_idx=2 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=208 batch_height=207 rollup_idx=3 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=209 batch_height=208 rollup_idx=4 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=210 batch_height=209 rollup_idx=5 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=211 batch_height=210 rollup_idx=6 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=212 batch_height=211 rollup_idx=7 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=213 batch_height=212 rollup_idx=8 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.735] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=214 batch_height=213 rollup_idx=9 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.735] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=215 batch_height=214 rollup_idx=10 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.735] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=216 batch_height=215 rollup_idx=11 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.735] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=217 batch_height=216 rollup_idx=12 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.735] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=218 batch_height=217 rollup_idx=13 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=219 batch_height=218 rollup_idx=14 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=220 batch_height=219 rollup_idx=15 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=221 batch_height=220 rollup_idx=16 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=222 batch_height=221 rollup_idx=17 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=223 batch_height=222 rollup_idx=18 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=224 batch_height=223 rollup_idx=19 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=225 batch_height=224 rollup_idx=20 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=226 batch_height=225 rollup_idx=21 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=227 batch_height=226 rollup_idx=22 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=228 batch_height=227 rollup_idx=23 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +WARN [12-05|10:10:50.740] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=433.029334ms block_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:51.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=264 batch=0x3cc2229c451e332e745f7c9dc3844eac15e8d3140a532b2ff33bf15a1b7b4121 l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:51.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x46561f897d46929e1f4c07ed5783839d807d627aff47c6e18c2407a5cfd20244 +INFO [12-05|10:10:52.094] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=265 batch=0x31f86774902594dc8f0fee6de61a18b19119def00c9f5d0ee22d24007c2cd15e l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:52.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2edda273e7e4fcfa3c1af2d0a6ebabf073815a97752e9abae25dfdc2c9b6ce03 +INFO [12-05|10:10:53.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=266 batch=0xfb4671235211664f014432a489dd440c756ab95eaacbe6d34026224ffb038b4c l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:53.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x512d67b99941bf53498a4eb2cfadc346b3eb21e6e9209d046a39c9aaa3cd46c7 +INFO [12-05|10:10:54.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=267 batch=0xa1c94c0ef6073c8a7fabd3f61d6803403cb465589eb731a7017a6b1dd54357be l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:54.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc59910cd3f720b21e27388308a27e8c39ae9c9ad0ab657ec90ad425239eb8756 +INFO [12-05|10:10:55.095] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=268 batch=0xd60433900c651ba83157a34d7371bd86eada42f1c2d20a1db61edf65ff743e89 l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:55.097] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbbbb11559a76e5ea313fb74d1a7ab7eae0125d8300480f6501be14f69d13e9e1 +INFO [12-05|10:10:56.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=269 batch=0x6cc89322753b1de5bd82c98625c1c5cce3b73813a679d7c235748f903ae12e19 l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:56.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x823b1a75441c3404e634ad9814a05389069fe0f3afcd88ada73962313ca70225 +INFO [12-05|10:10:56.090] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x6cc89322753b1de5bd82c98625c1c5cce3b73813a679d7c235748f903ae12e19 batch_seq_num=270 +INFO [12-05|10:10:57.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=270 batch=0x6530060456665df2a9224304d4c2a3281b3360e2b5aaf8558ad210dc5c2f677c l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:57.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x74c952a5bad230b9a12ab2ff9f92bfca5e2891e3b0bbc4e9b9b69252c4007bc2 +INFO [12-05|10:10:58.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=271 batch=0xe45d6bcc3b3483b7e3e8fca1fcdc78881bebe3add2362a098525daf398631432 l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:58.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc1155b133830656f9a1471deb9f01887f6d78cf8c42221c9027e6cb297dc4465 +INFO [12-05|10:10:59.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=272 batch=0x304de96557089794a8dcc88c3ee0cfa2490147356387e0bfe440de65963cf374 l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:59.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb02cc2c99d57987959a00436fbabe51a3c445a64598a04f09f14f898b539c9e4 +INFO [12-05|10:11:00.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=273 batch=0xf66f902f66e16792106695e30e8dba654222182dad69a50b8aa074d1847463e6 l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:00.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x22bd4d2647ba84770d649bbdc8ba5dd9a59b90c0be1a2277a8fd7dec6e1c0f0f +INFO [12-05|10:11:01.099] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=274 batch=0xc89641e4c5065dab60c6aee450ee560eccc46c8c782cc25c74acac6747acad6b l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:01.100] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xaa9b9cbfa196e81fe17c5b015861eac6bc46ee24f6a72d646d08035db2623588 +INFO [12-05|10:11:02.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=275 batch=0xa6fdd7103a0c521b7187cd9cefbb53692dede9db359687866829ca1fdb504ca0 l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:02.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa313f8572f4fda5cfee626261d7ab014d90ff55f03bf9edbd532ba18e839ff9e +INFO [12-05|10:11:02.287] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=36 block_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:02.287] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:02.574] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x01ce8d23c079ad83a535249329f9b705ebf80317c8e0956b88c75b5d317a7a6e block_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=217 batch_height=216 rollup_idx=0 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=218 batch_height=217 rollup_idx=1 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=219 batch_height=218 rollup_idx=2 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=220 batch_height=219 rollup_idx=3 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=221 batch_height=220 rollup_idx=4 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=222 batch_height=221 rollup_idx=5 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=223 batch_height=222 rollup_idx=6 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=224 batch_height=223 rollup_idx=7 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=225 batch_height=224 rollup_idx=8 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=226 batch_height=225 rollup_idx=9 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=227 batch_height=226 rollup_idx=10 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=228 batch_height=227 rollup_idx=11 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=229 batch_height=228 rollup_idx=12 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=230 batch_height=229 rollup_idx=13 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=231 batch_height=230 rollup_idx=14 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=232 batch_height=231 rollup_idx=15 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=233 batch_height=232 rollup_idx=16 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=234 batch_height=233 rollup_idx=17 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=235 batch_height=234 rollup_idx=18 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=236 batch_height=235 rollup_idx=19 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=237 batch_height=236 rollup_idx=20 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=238 batch_height=237 rollup_idx=21 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=239 batch_height=238 rollup_idx=22 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.575] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=240 batch_height=239 rollup_idx=23 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +WARN [12-05|10:11:02.579] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=289.702458ms block_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:03.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=276 batch=0xaa8022570006a3bbba292fdf9e82173451ef1536887dbf7aded33e9596020895 l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:03.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x737023b4e977560912d7bce2e63748d5aaa4a08e83324dca7b8749c25fdb7ecc +INFO [12-05|10:11:04.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=277 batch=0xf7bd28382b4bcf99e51c916d966bf7d1594e78e1861d4141ade1ae814d3fbdae l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:04.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1509965b77288883a4a123e8159d2325b35fef4c36a75ee91aa182b9a40ed14a +INFO [12-05|10:11:05.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=278 batch=0x08b1ca1fe65e3fe665f04af2aa447857700b7dc146708556284faedcf79e1e63 l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:05.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4fa83e3be357ae22ba9b39a217c2e155417b0829e876191875cbad6b029effc0 +INFO [12-05|10:11:06.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=279 batch=0x77229894b7d244d1f16a7211c2024e9b8d90210fba21f214612ae2268dabdf63 l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:06.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x98c67f5a11f34c21c2e3ed737377f44b5cd339c8aa034d350e55776d2b313835 +INFO [12-05|10:11:06.083] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x77229894b7d244d1f16a7211c2024e9b8d90210fba21f214612ae2268dabdf63 batch_seq_num=280 +INFO [12-05|10:11:07.089] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=280 batch=0x8d6cda521107bc4c88110fc1a7e5630060ce01458292a10bd2b1a561091769df l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:07.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc90e3fe9525a593e97f404925cc84541433db26bb30dcae809572837e158fb8b +INFO [12-05|10:11:08.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=281 batch=0x02f91b462c84a85cbef98076b21af039e9ae3f4d598636c2203171b5ca403300 l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:08.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2866fdd15313119ddd9c34649cb41edfa96a92194c959243a5941715153aa859 +INFO [12-05|10:11:09.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=282 batch=0x3ba35c8e4a80a14915c67ba3b13937a248ecb8034105fedf1f0a55bbfdb2cc96 l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:09.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc966067a4cde7afdd7c2508a5669b8a021d7242bd0c66dac931ea0b8a3a3ac6b +INFO [12-05|10:11:10.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=283 batch=0xc3e1c096ebe8c5015b0f2378139074ff638989bf85f441ec42565bdefaa340f0 l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:10.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5a21a0efa2f09a39380f21ccd2599dd04885a49b2c89e2cffc1fe4aa745b8724 +INFO [12-05|10:11:11.094] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=284 batch=0x57c191c868a49ad4332e7859c8ef64419d04e70f0120267fd54befea9d9961ee l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:11.100] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x89728be1fd40ef8faee95d31cf5d61e27918a4988754ee2c1f47fc15315326dc +INFO [12-05|10:11:12.088] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=285 batch=0x32188721fee410fc1d036a51cf40da286e43741b7bd3f3d2ae16148928a84b88 l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:12.094] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x25853f055042f7ad374a0b466d51921ffb8a26761c2c2f7229a4c1cabfe3f800 +INFO [12-05|10:11:13.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=286 batch=0x9d96ef61c9716e9d50565f017f60239ba835d2429fe8b843f3a99b45d7ee27fa l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:13.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x212952403ee035ff0a76581ff6480f3744fa18e1d50e240b03a05eec9b74d2fa +INFO [12-05|10:11:14.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=287 batch=0x07e42f5fb701720f724e0b9f6a23c4c05ed2434385e42cb016db346a04482273 l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:14.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5508c14a9cfac9232269fc363c57431b5fd0e69781e4f5067e50aff4f8edfb0b +INFO [12-05|10:11:14.292] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67, L2Head=288), Host(L1Head=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b, L2Head=288)" +INFO [12-05|10:11:14.302] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=37 block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:14.302] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:14.699] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x49fcef6adafda45929d99de55937e7892ee71e76b3d1384eca4168149e2b3a9e block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:14.699] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=229 batch_height=228 rollup_idx=0 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.699] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=230 batch_height=229 rollup_idx=1 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.699] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=231 batch_height=230 rollup_idx=2 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.699] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=232 batch_height=231 rollup_idx=3 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.699] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=233 batch_height=232 rollup_idx=4 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.699] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=234 batch_height=233 rollup_idx=5 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.699] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=235 batch_height=234 rollup_idx=6 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.699] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=236 batch_height=235 rollup_idx=7 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=237 batch_height=236 rollup_idx=8 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=238 batch_height=237 rollup_idx=9 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=239 batch_height=238 rollup_idx=10 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=240 batch_height=239 rollup_idx=11 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=241 batch_height=240 rollup_idx=12 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=242 batch_height=241 rollup_idx=13 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=243 batch_height=242 rollup_idx=14 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=244 batch_height=243 rollup_idx=15 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=245 batch_height=244 rollup_idx=16 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=246 batch_height=245 rollup_idx=17 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=247 batch_height=246 rollup_idx=18 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=248 batch_height=247 rollup_idx=19 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=249 batch_height=248 rollup_idx=20 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=250 batch_height=249 rollup_idx=21 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=251 batch_height=250 rollup_idx=22 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=252 batch_height=251 rollup_idx=23 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +WARN [12-05|10:11:14.700] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=397.286584ms block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:14.701] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b, L2Head=288), Host(L1Head=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b, L2Head=288)" +INFO [12-05|10:11:14.725] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=37 block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:14.726] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:14.727] Rollup already stored component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B rollup=0x49fcef6adafda45929d99de55937e7892ee71e76b3d1384eca4168149e2b3a9e +INFO [12-05|10:11:15.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=288 batch=0xc9e2952c8243e9d3939f4af340539f30a03be0bb40e11110fd1cf429369021ab l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:15.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x22fb91a11c97b8f8c76102178c5c79b6a48ce8a7a8c5ea823a43d0a9f87000ac +INFO [12-05|10:11:16.093] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=289 batch=0x17fc3e73e22a58d3873b5a9d47d3f292220a199dc13ab8caa2e27c73f9033553 l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:16.097] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7745e029fdec5b2e5993f9880a8487bc055c215f9274b3f3295caab7c2abd8f4 +INFO [12-05|10:11:16.101] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x17fc3e73e22a58d3873b5a9d47d3f292220a199dc13ab8caa2e27c73f9033553 batch_seq_num=290 +INFO [12-05|10:11:17.088] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=290 batch=0xdd41c3107919086b410447fda4f937d92b77aa922c58c8459583d4e296a3302c l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:17.092] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x437248e2a8466f0129f254e2e61b47258ddb88c2aa19d018b6027c9c14d8ea80 +INFO [12-05|10:11:18.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=291 batch=0x3d1c7799f7faab211cc3c9c809eeb044b9ee49b8da3c4b12a3b21e0902d748c8 l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:18.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9b41cffe25cd3d5eaa815595f3208ae85ebfa537fdbf1c692e6f5d29a54f7fc8 +INFO [12-05|10:11:19.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=292 batch=0xfdd5163831c70f8235d074da46a2908920a57fcd74da686eac9b28166a928ec3 l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:19.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xee9a0dfe75eacb57badc584cc5f348d828111cb956b72f88dbbdeb0bb583f911 +INFO [12-05|10:11:20.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=293 batch=0x5699935553c4bc4c82ed0fdd57c580e59d9e01187cea92589fbfe74f0a2937a7 l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:20.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb35bae8162866d5e8a5e6de0306ca5d45eff61cbd09949d69cbc8d8c5e7f38ec +INFO [12-05|10:11:21.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=294 batch=0x3f91c031da2a09b40b8944a059ae752bbac745157a0deb65fde753d224a389e7 l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:21.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa8306178c5df1d3ef7fc78cbbfbad8b1321a67dd30744ef21be2cebc94642918 +INFO [12-05|10:11:22.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=295 batch=0x57ed9f20d22186de6cbbc96eb50b751655fb0796e0a2a03c6e37e1dc4e9de8ba l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:22.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x798c0c0156652666edcefd1bd59faf599779e9669f09d2017b04cf0365e8844d +INFO [12-05|10:11:23.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=296 batch=0xf5f50760652479ecc2b133a1d5787b35cbb05a7fde9509669016495a0813fd0a l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:23.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb4f705b596274db444d85ed17e5e2c739cadc045004e0d2644874513a6ddc2b2 +INFO [12-05|10:11:24.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=297 batch=0xe94b2d29bbc98819d10100800656a138063ebbec251cb60f20e08c46893def2d l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:24.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x72a3e210bd65f9e9883b08bf8f55e9d4e990643b65ca8853d2b1709729ee327f +INFO [12-05|10:11:25.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=298 batch=0xe463628bfa9ef4f858463b2f5e18e99d7f02059be5fb6d144a73da1a329130fb l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:25.088] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4f2ec0c2a3a7648498dbfd28958e29380266f2c6ca8794bd44b9a4e741b7f650 +INFO [12-05|10:11:26.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=299 batch=0x86c25c99c5e9ae6bca23b87bf2c4b1413dcddf33f808c176211edc7dba537d1a l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:26.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9b9d28ad80df460fcaea3eca7bb02d1f6ba3136d6819c0d51e6e578eaf5e75e8 +INFO [12-05|10:11:26.076] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x86c25c99c5e9ae6bca23b87bf2c4b1413dcddf33f808c176211edc7dba537d1a batch_seq_num=300 +INFO [12-05|10:11:26.286] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=38 block_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:26.286] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:26.721] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xed5eedbfa33185828ab454ce1a25e5524f8108477fea9697d008e80e4c529815 block_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=241 batch_height=240 rollup_idx=0 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=242 batch_height=241 rollup_idx=1 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=243 batch_height=242 rollup_idx=2 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=244 batch_height=243 rollup_idx=3 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=245 batch_height=244 rollup_idx=4 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=246 batch_height=245 rollup_idx=5 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=247 batch_height=246 rollup_idx=6 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=248 batch_height=247 rollup_idx=7 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=249 batch_height=248 rollup_idx=8 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=250 batch_height=249 rollup_idx=9 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=251 batch_height=250 rollup_idx=10 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=252 batch_height=251 rollup_idx=11 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=253 batch_height=252 rollup_idx=12 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=254 batch_height=253 rollup_idx=13 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=255 batch_height=254 rollup_idx=14 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=256 batch_height=255 rollup_idx=15 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=257 batch_height=256 rollup_idx=16 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=258 batch_height=257 rollup_idx=17 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=259 batch_height=258 rollup_idx=18 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=260 batch_height=259 rollup_idx=19 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=261 batch_height=260 rollup_idx=20 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=262 batch_height=261 rollup_idx=21 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=263 batch_height=262 rollup_idx=22 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=264 batch_height=263 rollup_idx=23 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +WARN [12-05|10:11:26.722] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=435.41425ms block_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:27.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=300 batch=0x1ea59359aec77fff0dae6501b8efee3c9097d9d364ecdf72fa205e41ce605e33 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:27.094] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc71b5c6fb09bf98ab0b3f0cc69dc19a1ae70f821c61fd31603efc531a771d17e +INFO [12-05|10:11:28.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=301 batch=0x7e11c74b40851f45ac9eb6ab7f02c7e25341a25eaf1ec30ace61095b721876d2 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:28.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x885bf0ae774f0dda527c881615d8cb32b9879c2b7767c8f0abaaf86902ea2bfd +INFO [12-05|10:11:29.089] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=302 batch=0x1405da4b406691e18a962a23469850a3b0955687c2ee0c3208cc8b4a757c97a8 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:29.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x39fc4d6c2788a99def5f868d516a084130ba9069650116acb6fbbdb4c2ab179f +INFO [12-05|10:11:30.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=303 batch=0x7aca7a52723683c1166c5b04712391bd73a8cbbf00007ecb2486464ad3687da9 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:30.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4adfe1057e28f7ef3ae160c9327b6282c20629d69074f33d85a44c39fa363a15 +INFO [12-05|10:11:31.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=304 batch=0xa925a4a544e291dc7d13211a8c225d7d7af0b403a8736cb7ad7a0039c3a718c9 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:31.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbe103ff5a146796e35be337f895c67db3ca76eb8293d3278cb1b56f2af2ce8dd +INFO [12-05|10:11:32.093] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=305 batch=0x8892a71d7f77e08322fd8edb2423d6f9b8593ad28f130d2ea52d43342fc59504 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:32.100] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x96a029a1ebd3f70fd4db53d6e9b15c162c6adb792642416ba07d14876ebbe734 +INFO [12-05|10:11:33.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=306 batch=0xa8526a2f96fa89be3f8563b3b7629f5e9781b55eb607507b3cf3397897ed3395 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:33.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x167c45ae2eeda72859048a209ce2481eac8f05f09f82d63a45b42e97e38c8093 +INFO [12-05|10:11:34.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=307 batch=0x6866fe5781f8d9adb14d1f1da218fff3f08a0b1e8d47ba38a124a0171fae7227 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:34.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x45003380f73a4efa80dd69a64c511c9859c78462dbc456d48ee119432fef8d72 +INFO [12-05|10:11:35.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=308 batch=0x8abf94ddbc4d7bd6fcc860f64205a677d79c426c6f9dd63a5938107d86a1452a l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:35.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5be7e66bf69b32b58855ddcc0fbd0a7b12ac2018f199115c0ccfaf6f2b2abc66 +INFO [12-05|10:11:36.094] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=309 batch=0xef921b4b7729d9a4266d4ea1bdf9c8630912eb5a275aa3af67836e7806d9556e l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:36.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xeecf3e697b06032d625efe3a560632a594cdd642f4f70ed723938f5248ad0e89 +INFO [12-05|10:11:36.096] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xef921b4b7729d9a4266d4ea1bdf9c8630912eb5a275aa3af67836e7806d9556e batch_seq_num=310 +INFO [12-05|10:11:37.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=310 batch=0xb39cb6362f0014084ee55d152d4ca53e1b67d5dc00a602f4aa77aa1614c3c793 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:37.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1c12cb297296e067242a7062abf591d6d5920b3a0ca3281e2783e9d76fe05895 +INFO [12-05|10:11:38.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=311 batch=0xc80e6c15053e8a9c418970d3b217734f19759a334d9b82ca7f91b3400436a420 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:38.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcedda15d2e0d01d1bfe2982139988ebfd4dd2d0b4d313a788c95d09f26f4cdf7 +INFO [12-05|10:11:38.279] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=39 block_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:38.279] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:38.652] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x9a0552faa9e818a5a6ae86c2dcbb435e8fb3c13f77b5cbd56180c90c59fafbbe block_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:38.652] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=253 batch_height=252 rollup_idx=0 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=254 batch_height=253 rollup_idx=1 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=255 batch_height=254 rollup_idx=2 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=256 batch_height=255 rollup_idx=3 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=257 batch_height=256 rollup_idx=4 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=258 batch_height=257 rollup_idx=5 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=259 batch_height=258 rollup_idx=6 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=260 batch_height=259 rollup_idx=7 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=261 batch_height=260 rollup_idx=8 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=262 batch_height=261 rollup_idx=9 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=263 batch_height=262 rollup_idx=10 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=264 batch_height=263 rollup_idx=11 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=265 batch_height=264 rollup_idx=12 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=266 batch_height=265 rollup_idx=13 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=267 batch_height=266 rollup_idx=14 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=268 batch_height=267 rollup_idx=15 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=269 batch_height=268 rollup_idx=16 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=270 batch_height=269 rollup_idx=17 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=271 batch_height=270 rollup_idx=18 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=272 batch_height=271 rollup_idx=19 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=273 batch_height=272 rollup_idx=20 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=274 batch_height=273 rollup_idx=21 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=275 batch_height=274 rollup_idx=22 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=276 batch_height=275 rollup_idx=23 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +WARN [12-05|10:11:38.654] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=373.558583ms block_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:39.095] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=312 batch=0xea5a69cba2437911c039d073d5df918fa6d4993ea98ec22bdb673b64d3a36b29 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:39.096] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb4e15803fcbb9a0a1d3aec3948f84663fcb7fae7ed8b0763e40fc96f9866ff2f +INFO [12-05|10:11:40.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=313 batch=0x515f0ab3d27100950f4561c78d207776898a8b31d0620f2ed2dbbce90e574af9 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:40.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x53048e2b81a43a72f5546569cc335e2d68ed062942e37fd0a7e57ca3cf74690e +INFO [12-05|10:11:41.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=314 batch=0x7e0763c966ca5b35e0878db17455c1393c83d37c651f15a91b6c9bb35e17c6f2 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:41.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x512223a9f091ed5c06da88c99e0e06b67c93033e280ddc19331e6a95d05956d3 +INFO [12-05|10:11:42.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=315 batch=0x717aeb44fd3b7cfaa8978c84b495786f41a4ed53b9a8e48ba1be313e8c807b0e l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:42.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x76035a36366a07ee954246e6c38c177ed3cb85b6d1f4090f59789dc476460d7d +INFO [12-05|10:11:43.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=316 batch=0x101008e8f250a42d3d385e79635b394f4b77e74064e29fd3ffca258e45b7b00d l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:43.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0fb2aa997c0e037505c0d5611961aec0c83fd0449e7fdb60039ac4ba1153e2d6 +INFO [12-05|10:11:44.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=317 batch=0x860d05ddf3adaa103b1591709b2c9c98ed1c7bf27335fd05b22c739a34a84d46 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:44.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5a96c5397c485eefc80c5e72e5d092fda11fad8a563a801de30c40fadff5a3c5 +INFO [12-05|10:11:45.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=318 batch=0xbb91e7c814b6076f9f2b72503602dd17e99926129c4900a3f9dc29f8a877e326 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:45.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa2e66d20af5d89bd8f5091385d318d005a39917edd574d0872be9a791b4c16d9 +INFO [12-05|10:11:46.088] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=319 batch=0x78c175276004f8eeb93bb964111eb77d898e92429c9ce66bdd40f0c6662506c9 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:46.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3ad851bc5396c73c7800a3a30a0dc5307540dd9fd3f619dd0edfea913a08e36c +INFO [12-05|10:11:46.090] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x78c175276004f8eeb93bb964111eb77d898e92429c9ce66bdd40f0c6662506c9 batch_seq_num=320 +INFO [12-05|10:11:47.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=320 batch=0xdfc8de988abb9e964f2a7f4304ddba73e89626e2bf4cff6192c82572345a72f5 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:47.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9063a8587dbdd6b4fb1255308c9e4c3e907ac44b5f3d8c615d1eadd60ae951f0 +INFO [12-05|10:11:48.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=321 batch=0xd5a92bed13cae2e407a4cf85007f894c2a48f35ad1d0d23f4b1999c35aecb067 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:48.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x331fb28679070f7347591f75f1c671dcfb8b8e1d88017dfb9f5da966985325e9 +INFO [12-05|10:11:49.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=322 batch=0x06c26f0b0eb044a4255a03887f005f627809d18893d19c6730611b1c146fba7a l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:49.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x988290eddee39a7ed4c6c69b81de8f346310c97d6997a8ec15e0c3de6be0a783 +INFO [12-05|10:11:50.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=323 batch=0x559531a0d60c0aa3735434ab95acbd9ee02641fe65de8dad784d35c3b6dc5326 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:50.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd9698e671e7ec5b5d49cc0befd5d42ebe538cacb05eac7ac8f8b9e04fbe4852f +INFO [12-05|10:11:50.274] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=40 block_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:50.274] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:50.710] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x42f90b441bebebc751b255b22c2f6ecbc497f868c1613da05e8391e63be9f339 block_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=265 batch_height=264 rollup_idx=0 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=266 batch_height=265 rollup_idx=1 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=267 batch_height=266 rollup_idx=2 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=268 batch_height=267 rollup_idx=3 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=269 batch_height=268 rollup_idx=4 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=270 batch_height=269 rollup_idx=5 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=271 batch_height=270 rollup_idx=6 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=272 batch_height=271 rollup_idx=7 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=273 batch_height=272 rollup_idx=8 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=274 batch_height=273 rollup_idx=9 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=275 batch_height=274 rollup_idx=10 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=276 batch_height=275 rollup_idx=11 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=277 batch_height=276 rollup_idx=12 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=278 batch_height=277 rollup_idx=13 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=279 batch_height=278 rollup_idx=14 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=280 batch_height=279 rollup_idx=15 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=281 batch_height=280 rollup_idx=16 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=282 batch_height=281 rollup_idx=17 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=283 batch_height=282 rollup_idx=18 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=284 batch_height=283 rollup_idx=19 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.711] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=285 batch_height=284 rollup_idx=20 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.711] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=286 batch_height=285 rollup_idx=21 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.711] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=287 batch_height=286 rollup_idx=22 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.711] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=288 batch_height=287 rollup_idx=23 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +WARN [12-05|10:11:50.711] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=436.398916ms block_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:51.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=324 batch=0x798df134add11771f6e1430954595e4365c141b44a02b0261038009f9309a2a8 l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:51.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x418f0f023d92d37aa46d44a46b974f9dfc0d996b964cb17cdc731b26f9922cef +INFO [12-05|10:11:52.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=325 batch=0xe8e3336a5dbd0801999e34a21260700fe9a2edad43fb572f7289820af1ffa5be l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:52.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xed0e33e7fa9595326c5e0cae829b38dcf8ec0d8563a0fbc746fb919359833be0 +INFO [12-05|10:11:53.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=326 batch=0x531158b8d8165768d54e6872a994fcf84204b72d866d78cc8ce81561899fa5f3 l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:53.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3b6d0c7c13db405411c16a35c60f0167a99a38bb5d1f1c7130d125b67d306b43 +INFO [12-05|10:11:54.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=327 batch=0x661a4acaf4d9f6e5c8c894d24aeb29299fc24f09b6e5e41404a6fd265018f253 l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:54.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xda7900856f9768f3a6c4256bf011eff82fa24e7eaf1bf6153df0176fe5cac3e5 +INFO [12-05|10:11:55.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=328 batch=0x110fbef55e012dad1f3c0c5cb00e0b7ca8f0c9a03ac0867e0217fa0638abe0fc l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:55.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xddeb708befb557e51f61a7b615070b63a8d6204548e963bd9c926812d76b1dc5 +INFO [12-05|10:11:56.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=329 batch=0x36d0b1c80292f99718922dd1c611693a71f89baf6b3ccc2c2abfcbec60b152b7 l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:56.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2245a41522c1598746a0cb541307ee16d86e5deb15861043578e7b3d1660759f +INFO [12-05|10:11:56.092] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x36d0b1c80292f99718922dd1c611693a71f89baf6b3ccc2c2abfcbec60b152b7 batch_seq_num=330 +INFO [12-05|10:11:57.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=330 batch=0x2009e1930c287f4f53b260448470b98e0bc4c74185c544b5f66e094ebd5fa14a l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:57.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x85ebc689c3b9aaf8fb1c581443ebd7119920918cab40eafcea07895ca37403c6 +INFO [12-05|10:11:58.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=331 batch=0x280fbfbfdc1d7e71efa4830fa5422b6356ddcc85e6c26f09087a1e7f29a959d5 l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:58.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5a64eead7a46bb3c96768c8ef7e7e6a3c8b445319ccd1bc15f3893a1319945ba +INFO [12-05|10:11:59.092] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=332 batch=0xa2f00f910bc12da26865a3f00028d0de9fc908d57b6cf9338b262550c5976241 l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:59.094] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3243ee08dd63dd10a03440de2a307bd5474db5617ba5cee392866e3e945d57ec +INFO [12-05|10:12:00.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=333 batch=0x1b90050c2e50c61e307b6464df7ca6cda01d130d9fa0455279fc82e6304e693c l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:00.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc5469a66dd59de9d70bc30de67e8b759604045539c8570f6583eeaf31d69178a +INFO [12-05|10:12:01.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=334 batch=0x86f14c8609ef689607a1946b681f2503bb94b1f9ec56879ac2cf6a16fc5c591d l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:01.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3c58c6997fa0453016bb3264634b8fb6d31ae7613d7d52410129def8a52729b8 +INFO [12-05|10:12:02.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=335 batch=0x353ff4f8074b628e8ddb2359ea83ecc1d91a4e83fd3a93cf858fc0ca5b7ebae3 l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:02.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3dd9a49c3d1b4da738539c720f711aa5779f2ff278e1d61459db8ac197358a02 +INFO [12-05|10:12:02.295] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=41 block_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:02.298] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:02.464] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x47cb9867c412f2ad6adab786c59ca3c1f4ddd05d8923fb7077154db11d119c60 block_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:02.464] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=277 batch_height=276 rollup_idx=0 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.464] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=278 batch_height=277 rollup_idx=1 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.464] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=279 batch_height=278 rollup_idx=2 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.464] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=280 batch_height=279 rollup_idx=3 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=281 batch_height=280 rollup_idx=4 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=282 batch_height=281 rollup_idx=5 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=283 batch_height=282 rollup_idx=6 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=284 batch_height=283 rollup_idx=7 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=285 batch_height=284 rollup_idx=8 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=286 batch_height=285 rollup_idx=9 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=287 batch_height=286 rollup_idx=10 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=288 batch_height=287 rollup_idx=11 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=289 batch_height=288 rollup_idx=12 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=290 batch_height=289 rollup_idx=13 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=291 batch_height=290 rollup_idx=14 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=292 batch_height=291 rollup_idx=15 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=293 batch_height=292 rollup_idx=16 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=294 batch_height=293 rollup_idx=17 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=295 batch_height=294 rollup_idx=18 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=296 batch_height=295 rollup_idx=19 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=297 batch_height=296 rollup_idx=20 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=298 batch_height=297 rollup_idx=21 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=299 batch_height=298 rollup_idx=22 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=300 batch_height=299 rollup_idx=23 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.468] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=168.954416ms block_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:03.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=336 batch=0xe02b860d5cec143eabb85ebf9b2ddf1f3234bc9c83dc5cd799452923eaefe335 l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:03.090] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe85d6e30e328de1e0563bee3d13fb417410c96159bf21d2016f1dc4cb3e1ef4d +INFO [12-05|10:12:04.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=337 batch=0x96c0d9934bbaef015515764e6317717354df46dd6b6eb2d8955d05bf80524f3a l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:04.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4ab912eaa12b4498b27edf50d461a8d9e193883a7c851b58fbcf6ec3a97ead58 +INFO [12-05|10:12:05.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=338 batch=0xb47a983e07a29e60f28bfd768f1d5e57d44c164254f66f3f4c450fee614689e3 l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:05.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x280b9fb9890becc003c55e71dcd585c95b6b91e070ed193c15a1bb4af93ccfa2 +INFO [12-05|10:12:06.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=339 batch=0x52e2951f2b54fed3876418cafc80afb062089f3c9ac5ad21ea85daa6fdd910c1 l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:06.090] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4d8fc52759e88d7dd9c58826c39bc3673fd24bff57f3c25cd90c3d7dd233d6a2 +INFO [12-05|10:12:06.091] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x52e2951f2b54fed3876418cafc80afb062089f3c9ac5ad21ea85daa6fdd910c1 batch_seq_num=340 +INFO [12-05|10:12:07.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=340 batch=0x1079d1117b06c0c75b2fb44e973f84b7fc3e3b5742a6534494ad73b4b8f9cabb l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:07.090] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6e762cfe19f4b22bff8274473dc75493cddc7b6a3c7789039c69e2f4dca9503d +INFO [12-05|10:12:08.088] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=341 batch=0xbf2c929ef82ab539565dbc4d4f2998aced9bae3fc6d14df22ce15034e9f7790c l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:08.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf090805a6944f33c2ba61e4fb4d516ddcc664c8f2922f74a05ced91b97de8759 +INFO [12-05|10:12:09.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=342 batch=0x759c72735176f39ef06ee0c32a76bfe5e9c3fb2b07edc2f090b422ff845d82cb l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:09.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x04fb655154ea5681443453c42b31bec8bae3216d223120de84b79c324854981d +INFO [12-05|10:12:10.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=343 batch=0x5452b07c89988c4d4a97ad466b31dd7af192b10e38cc44bd02a39262fed2f042 l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:10.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa2a9930f28969328dc57acbabbe194c8ecaf9d74ccf84c9e0e73dd94be6cd77d +INFO [12-05|10:12:11.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=344 batch=0x4f163844fc1d956394aa38aaa46e0f760c82f685a28af57e46ed1a5c4d4da87f l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:11.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9d2f722d58c33c4a5e8b702b10ee63ce637c8faa7973d4e3feef648f1881f9e2 +INFO [12-05|10:12:12.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=345 batch=0x8f6054f02d20abeda7ec6291f430e72d42cf4ba9e7c67c6746bd19868f95e0c1 l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:12.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4f65e4085bdc4ef96985621df1f0d2522dc7f430ef04e8d2ce96beceb4a08154 +INFO [12-05|10:12:13.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=346 batch=0x533445ab01bc41eda12d3b520b75166f0679f3a0de23098ecc6c04f613cfcc9f l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:13.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa413087650b425b472e69930d31e3be292299f71067e82ab47852441e11d9b7b +INFO [12-05|10:12:14.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=347 batch=0x35d0494af526401c708e17bce7d31bfa1bc3b3fe7f422e8df51dbd995d26bdff l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:14.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x921f063bb50e7d54399dd3a561cecdf9cda870873e5e73973d71e2d36bc24e60 +INFO [12-05|10:12:14.271] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=42 block_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:14.271] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:14.580] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x66d4ab200915935fe1ff083c73f010f56a9632eeb908ebe811cf7e9492303051 block_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=289 batch_height=288 rollup_idx=0 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=290 batch_height=289 rollup_idx=1 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=291 batch_height=290 rollup_idx=2 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=292 batch_height=291 rollup_idx=3 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=293 batch_height=292 rollup_idx=4 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=294 batch_height=293 rollup_idx=5 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=295 batch_height=294 rollup_idx=6 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=296 batch_height=295 rollup_idx=7 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=297 batch_height=296 rollup_idx=8 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=298 batch_height=297 rollup_idx=9 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=299 batch_height=298 rollup_idx=10 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=300 batch_height=299 rollup_idx=11 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=301 batch_height=300 rollup_idx=12 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=302 batch_height=301 rollup_idx=13 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=303 batch_height=302 rollup_idx=14 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=304 batch_height=303 rollup_idx=15 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=305 batch_height=304 rollup_idx=16 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=306 batch_height=305 rollup_idx=17 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=307 batch_height=306 rollup_idx=18 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=308 batch_height=307 rollup_idx=19 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.581] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=309 batch_height=308 rollup_idx=20 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.581] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=310 batch_height=309 rollup_idx=21 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.581] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=311 batch_height=310 rollup_idx=22 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.582] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=312 batch_height=311 rollup_idx=23 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +WARN [12-05|10:12:14.582] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=310.634666ms block_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:15.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=348 batch=0xe7fb4c8f335ae42dc5e00e850da21ef282ffbebcff2db8a61fa908fdc7019688 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:15.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf9c3bf90b462bc0a0d5ee6a1cb087e14378dee67a2c18ee54d53aa741cb86438 +INFO [12-05|10:12:16.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=349 batch=0xbcb00e7b9375b677b1d15a1adcdeddfe7974c7e0492c3cb1804d3e80b728b341 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:16.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x594b5fa6c9e5532738f7e3d0479243ef20be9ac4327346892b2d85d4076316b2 +INFO [12-05|10:12:16.085] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xbcb00e7b9375b677b1d15a1adcdeddfe7974c7e0492c3cb1804d3e80b728b341 batch_seq_num=350 +INFO [12-05|10:12:17.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=350 batch=0x17dcb876d50dc77a14dae2a955e62a96ab5f59da16d2752a9f67943f05ce28c3 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:17.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcf87c4965fb2bf9fd4ae25bbcd43b96e55b01ef2b0972def74df0a45bf28d5f8 +INFO [12-05|10:12:18.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=351 batch=0xc9c2511ea32d1b2c3fa4a78d38c48dc1eb025a95d59ce1aee9a13e666acec047 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:18.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa183d02c65f37fdb292f0153a9672a71e0e696cd712e2a534e77d82a1a5e90b4 +INFO [12-05|10:12:19.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=352 batch=0xf6bbb953cfd8296b86812cb0f8eb3b665559a8f1d36bba11af8e106fd404d7f8 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:19.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa00c5c7c3f218bbb5b539ac804c90b619a0679f47ab2570879407de1cfda8a70 +INFO [12-05|10:12:20.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=353 batch=0x6c9621347ad704563d15eca0542a7a5757a4d1e9a3f00dc9df05f5b0c88c88bd l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:20.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7aa392a464e48ee41e262f420e2858385c8d607f2feb2387dc131cb98612ecc6 +INFO [12-05|10:12:21.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=354 batch=0xe3bc9c6f36680ebcbc2e61d891c7cfda8b158dcbd7ffc378ae82e9a29c466710 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:21.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x22b14926d2186ee111ad98d6ccd52cb607357df93cdffee5f6c1249169bc4f5d +INFO [12-05|10:12:22.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=355 batch=0x8b31753de7e164918a39df95c6e5d83205e2155fc253a42d58edea6df6496bd0 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:22.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x05d19fb3ec6dd405adeba342a5573a1424eb5b36c387a3cce7f283aee0659836 +INFO [12-05|10:12:23.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=356 batch=0x0ca0f27f687263554a92b9537fb04cab043476c55e8b0afaa51e2ba23a9304fe l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:23.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xabdc1903acf9d3eef64e22456a771920413a3b541d753cb55e8ff282f99e1a29 +INFO [12-05|10:12:24.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=357 batch=0xe5a4933e267b724cdc9b78acee4e4625de197dd064cac6d86a0f08aa7829cfe3 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:24.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3fe85eb1de13598b8c0afd663bc2153ef7511a262b0252b8eae18b83cc92a1f9 +INFO [12-05|10:12:25.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=358 batch=0xb5602b3c793833708b8758b2de9a10d8d8af44c39520ffa5f75f331462a6c837 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:25.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x263e706500d016072c9b1bcfbc1f842c81cf3ec36a5f3a0f591a52f0dce56cdb +INFO [12-05|10:12:26.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=359 batch=0x6a94859b3c71875c4801c751d8df637c48651d7248fd0ca485b8413bfbcff44e l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:26.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1da492834f8f8fdacf8f6a85d771158c64936a2fa76b892fdabe73394d3ba5b8 +INFO [12-05|10:12:26.079] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x6a94859b3c71875c4801c751d8df637c48651d7248fd0ca485b8413bfbcff44e batch_seq_num=360 +INFO [12-05|10:12:26.274] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=43 block_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:26.274] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:26.629] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xc28f9cc9a4288c8d37d2b5b46cd82bc33e5eafc76d82c0163c8a8f50892e821b block_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=301 batch_height=300 rollup_idx=0 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=302 batch_height=301 rollup_idx=1 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=303 batch_height=302 rollup_idx=2 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=304 batch_height=303 rollup_idx=3 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=305 batch_height=304 rollup_idx=4 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=306 batch_height=305 rollup_idx=5 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=307 batch_height=306 rollup_idx=6 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=308 batch_height=307 rollup_idx=7 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=309 batch_height=308 rollup_idx=8 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=310 batch_height=309 rollup_idx=9 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=311 batch_height=310 rollup_idx=10 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=312 batch_height=311 rollup_idx=11 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=313 batch_height=312 rollup_idx=12 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=314 batch_height=313 rollup_idx=13 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=315 batch_height=314 rollup_idx=14 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=316 batch_height=315 rollup_idx=15 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=317 batch_height=316 rollup_idx=16 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=318 batch_height=317 rollup_idx=17 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=319 batch_height=318 rollup_idx=18 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=320 batch_height=319 rollup_idx=19 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=321 batch_height=320 rollup_idx=20 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=322 batch_height=321 rollup_idx=21 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=323 batch_height=322 rollup_idx=22 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=324 batch_height=323 rollup_idx=23 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +WARN [12-05|10:12:26.631] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=356.185417ms block_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:27.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=360 batch=0x2e543e308cab59052e19cd1c220d0887b4b1681181e423e8b821a5c875709b53 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:27.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3e3284036ce3d6007302f548d0139ee2ada282ccb6fe6d4747b0b6c3f3639ff4 +INFO [12-05|10:12:28.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=361 batch=0x5b4831fd558fd446517590fbca75933838c04806bacd33da9653c46de5781dd2 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:28.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x308eab3c62e0eaae51043e9874621534676a0c6b735da6c6da6b3c7fda1b778b +INFO [12-05|10:12:29.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=362 batch=0x8a93449f91c9adca4b44719540ca2fdec036b635aecdaaa92b31cb9234615681 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:29.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xec119bc3651cab9e8367d5039616a4a37b004d3b8eb0fd46c3c5cc538f5514a7 +INFO [12-05|10:12:30.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=363 batch=0x22444e6ab5a7438bc3dcf0c7176278409c06ea3a5a9db08c346a70745aab94e1 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:30.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdf8dcff6c6d7d15838d5b5d2e62887fafe5f3a06f8ef974f233a019d773601d5 +INFO [12-05|10:12:31.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=364 batch=0x4146d7c5e4ec60a9e27e0ff4b1e479455e3df6905f10d4d8d22dfb159252c372 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:31.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbf47cf9ca45a4cfb9de2aaf31e41eb4967f3d330816d8584d169ca780398ea43 +INFO [12-05|10:12:32.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=365 batch=0xc8a5512f28fee0975f73dba8d5f7e020ff8a06e2c0ad0813f6644340f3edd1b4 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:32.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x48645be2b91f4a7058a12e003279ca68ae613fbb095485c2d9e594fae0dcfd3c +INFO [12-05|10:12:33.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=366 batch=0x2d54bb4cfa2dd6d32420460952aca8f9c979eb9eaf5276014c09dd1e389513a6 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:33.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x56f3ccb31de5f11d45df5c6b20bb6dfbe2d3561698304ca837622b0a8fdb5ff8 +INFO [12-05|10:12:34.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=367 batch=0xd3447f0196137de74219aad6348ddeee07dd52bfc9a55b57f3aff9a76d82c1d4 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:34.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd8ecf2255a77b9e98be4f6e66d4161c1db8a1430a20c0d42d020527c66b714ac +INFO [12-05|10:12:35.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=368 batch=0xc3939efbaeb932a971d8fb5e37bd4805aabbcb10155e7ebbb3b8989c1225b25f l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:35.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbbb73f9585bad39cfbfed63aa700a47a274950b3270ba5612f773d09c8f36846 +INFO [12-05|10:12:36.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=369 batch=0x1e478922edfea4831b2893de5f5ab43e0b8abbbe86d5d9630463df55e393c1d6 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:36.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0a1ef47ffcec1d2e4a92a50372de2b6fa319a8dc4caaacd80cc7c09076a31975 +INFO [12-05|10:12:36.075] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x1e478922edfea4831b2893de5f5ab43e0b8abbbe86d5d9630463df55e393c1d6 batch_seq_num=370 +INFO [12-05|10:12:37.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=370 batch=0x63f51c51c70354c109514c3339752f7ac5f4097b7a5e9a3e5891811bf977f595 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:37.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x36ab59c847dd91be389d0fd6f42624f039e8fbb1bee348cdfca7ae81d5a68e3e +INFO [12-05|10:12:38.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=371 batch=0xed4127d0df08219ee4837f6da338745f3afd281e2c8fab5d26bf5d367f64de2e l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:38.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5bc1e72b55d65da0ae4dec37adac991c14a18568a4af59059a8523ee76a599b9 +INFO [12-05|10:12:38.261] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=44 block_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:38.261] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:38.682] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xd966950629a9f4d84d2136ddc68b489642523e04bb295e0d74813c2840cdf557 block_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=313 batch_height=312 rollup_idx=0 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=314 batch_height=313 rollup_idx=1 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=315 batch_height=314 rollup_idx=2 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=316 batch_height=315 rollup_idx=3 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=317 batch_height=316 rollup_idx=4 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=318 batch_height=317 rollup_idx=5 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=319 batch_height=318 rollup_idx=6 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=320 batch_height=319 rollup_idx=7 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=321 batch_height=320 rollup_idx=8 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=322 batch_height=321 rollup_idx=9 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=323 batch_height=322 rollup_idx=10 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=324 batch_height=323 rollup_idx=11 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=325 batch_height=324 rollup_idx=12 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=326 batch_height=325 rollup_idx=13 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=327 batch_height=326 rollup_idx=14 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=328 batch_height=327 rollup_idx=15 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=329 batch_height=328 rollup_idx=16 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=330 batch_height=329 rollup_idx=17 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=331 batch_height=330 rollup_idx=18 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=332 batch_height=331 rollup_idx=19 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=333 batch_height=332 rollup_idx=20 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=334 batch_height=333 rollup_idx=21 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=335 batch_height=334 rollup_idx=22 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=336 batch_height=335 rollup_idx=23 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +WARN [12-05|10:12:38.684] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=422.217167ms block_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:39.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=372 batch=0x8a0e0794c5af409e9685120c06154a7597a1ba48e9651a6d23e21af17688bf8e l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:39.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x66c79879171898484c923783b9ce607a8dc0f7ffe5bce6f978583a0ea974c746 +INFO [12-05|10:12:40.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=373 batch=0x76d082302e401cf7a559e611ea329403ad815cb8713f19efbb36f0fe8b143a36 l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:40.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3b2958a58fe32eb8d8df1958ced4843ceff6bab2ca02ff7795acfad21822ca75 +INFO [12-05|10:12:41.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=374 batch=0xfb6e1f56249a8a593b4818a4aa38502f93c36b57d0aa450fbf4c480e4d67650d l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:41.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe2800dc6b73dbe9841bf877d378064534927292b17bf29e5cc38cb38f693f6b0 +INFO [12-05|10:12:42.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=375 batch=0x13686a2db53f0d707b05b0ea6553cccf31a8e4143efda0e36dac45de829159d0 l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:42.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe9b62099252dfa11e6502b85afcc963fcedf12a8008d60a934454b25f2c4e894 +INFO [12-05|10:12:43.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=376 batch=0xea3c703de60f2e5a4391fb66645c829b8b56f058e830872bc45cb65befe74898 l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:43.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3ac8e8b487b0518e0316782c46956df603a846a7230dcfbc0fbe78159f670095 +INFO [12-05|10:12:44.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=377 batch=0x52b4ebabff0aefb5759e28ccaddd1bf749ce42d1e126dc472a233d36dbe37900 l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:44.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2a4e5dd9105e85bf012aaf2bd16b4e6c7618ebd9ffde024e02782514514113fb +INFO [12-05|10:12:45.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=378 batch=0x131b648b4af77a9f97a6434805e8fccef597e29ed11db03a49a385f50967c4db l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:45.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8df23d7ba8a47362f373535c1befb519a4292fee39b9245010c6afe25a4496f1 +INFO [12-05|10:12:46.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=379 batch=0xcf1341738abcd3e3466ab9c6b3514415eca09cfbe4e78cfd4f41719324796a0a l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:46.072] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x748babb9eddca46403fc0aa1029f8db3b296ee1775a995282dc8ad961abac912 +INFO [12-05|10:12:46.073] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xcf1341738abcd3e3466ab9c6b3514415eca09cfbe4e78cfd4f41719324796a0a batch_seq_num=380 +INFO [12-05|10:12:47.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=380 batch=0xad6c23194fb90125c4d92e5a29bc883ab71f0cd2f4564a4973d86e34d27af989 l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:47.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x335da17c69a28aef4cd750e0d4bb8bde839b513cefede65c444bc450a3cfc34b +INFO [12-05|10:12:48.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=381 batch=0x8abfe10016e8311de4c5dfb4f4dde27ddfc9cb60d9ad851e7521bc78af16837f l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:48.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3e792be20ca0b93f25a15eea847e3f22f8f6d4204e892ff7a53c68bf734061ef +INFO [12-05|10:12:49.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=382 batch=0x48066735485e4a61c7ad39367aed4fa3e99f9763cf08124426a0c54d2573b256 l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:49.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf68983bd5bac6336d1df1624fbe999291136c18e9efc506f3873031f641b0a4c +INFO [12-05|10:12:50.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=383 batch=0x9f499c57148eb27aa793d67c224991f90eaff5ac38dd2377794ea0bda84a0ce7 l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:50.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x590ec620ecc7cd8721c1f9261f94d81ef3be3a6b11d18cbf39986c484625a470 +INFO [12-05|10:12:50.273] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=45 block_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:50.273] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:50.602] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xb4aafd2cbe66eb3d0ef1c796e57483b69b9eb12b794da9eae1b1be400d6a66a7 block_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=325 batch_height=324 rollup_idx=0 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=326 batch_height=325 rollup_idx=1 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=327 batch_height=326 rollup_idx=2 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=328 batch_height=327 rollup_idx=3 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=329 batch_height=328 rollup_idx=4 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=330 batch_height=329 rollup_idx=5 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=331 batch_height=330 rollup_idx=6 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=332 batch_height=331 rollup_idx=7 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=333 batch_height=332 rollup_idx=8 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=334 batch_height=333 rollup_idx=9 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=335 batch_height=334 rollup_idx=10 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=336 batch_height=335 rollup_idx=11 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=337 batch_height=336 rollup_idx=12 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=338 batch_height=337 rollup_idx=13 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=339 batch_height=338 rollup_idx=14 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=340 batch_height=339 rollup_idx=15 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.605] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=341 batch_height=340 rollup_idx=16 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.605] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=342 batch_height=341 rollup_idx=17 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.605] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=343 batch_height=342 rollup_idx=18 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.605] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=344 batch_height=343 rollup_idx=19 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.605] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=345 batch_height=344 rollup_idx=20 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.605] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=346 batch_height=345 rollup_idx=21 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.605] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=347 batch_height=346 rollup_idx=22 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.605] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=348 batch_height=347 rollup_idx=23 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +WARN [12-05|10:12:50.605] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=331.221958ms block_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:51.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=384 batch=0x40723f7a27fc98318940ec0c723c024d79951999b02eed28d35021c81dd06b7b l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:51.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9d2bbd8a3e93f9ee241d42abe1fb9ce6c670aabdcc35535184bf84fd8d1786c2 +INFO [12-05|10:12:52.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=385 batch=0x9249f9e09095f8f8eee6806c3002ac863a18b449d42e16bf9a3e731ec88b8490 l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:52.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdc6376cbe1b5dd2aeabdd5ff66bc7f6b236774cb56c7d997af638c12446e7087 +INFO [12-05|10:12:53.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=386 batch=0x0f99fb2fceb0180e4455d6146fc7e46e75c2c129d9e6ae998fd98790bef5d67c l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:53.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf75ff0bcab3b6cc61e03ce7375f812547820f9559535c08a459137f81e9a9269 +INFO [12-05|10:12:54.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=387 batch=0x9b8869d474b63acedfec2aa3589a433daa69d97c810fcd0effbe4c01c051caa8 l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:54.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x31746ceb2b322f1db776e7e2a2134e6604e85efc3f5f885fdc2c38755bd5bb1f +INFO [12-05|10:12:55.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=388 batch=0x397dcf76a27ce22459bdeb107cdeef7855f5b6f20cb29faeb3fd861e69ae1ad1 l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:55.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8f1e81a79f8e8de2e199f3905e9c35fa5a1f1d85db6810704c950ddf88d0b601 +INFO [12-05|10:12:56.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=389 batch=0x4c86a7ee21068218e8c38f55f3eae2dac1cd51176ec5556a022b317414e3e44d l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:56.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x47aeea0f8506fc7c764428e2141669681e2100a4f3595e36932a4c97379ef72f +INFO [12-05|10:12:56.074] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x4c86a7ee21068218e8c38f55f3eae2dac1cd51176ec5556a022b317414e3e44d batch_seq_num=390 +INFO [12-05|10:12:57.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=390 batch=0x6633e1014098c91567b6253a663153d0c31f1e2d762eb3892809b7b1463a5527 l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:57.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x644a1d10348f8eaca50df7229a8d45804ff1c5c53038652759a69f2eff9b2356 +INFO [12-05|10:12:58.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=391 batch=0xfb789171f83b445e45b8707d9d3f309961224cbdaa176b96b92f1b6313decefc l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:58.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2c3c5d75f2b0f8597614dcf07e3166fb2759a38121d3f44f227fa4a2afe6c07e +INFO [12-05|10:12:59.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=392 batch=0xb2ad2a8c6b0d4ac489b7ca79dfb7e859b00f77bb6c30395310ed6f664e74171b l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:59.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5fa01e8d4ab76299b9173b1cc00156d858c99ffa1a4a39ea2ba8f31c18119c7e +INFO [12-05|10:13:00.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=393 batch=0xf811411d4de3edf57d8454d4f9bfa077ee9ae41c787a060b24e6af427a7924d9 l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:00.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdb2f1d89a781e3e03829c818f96a18f6b8dfe029f95563db1c135be596d5f039 +INFO [12-05|10:13:01.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=394 batch=0xa78d7286eb6143267d71b88a8ea7966dfd88d79e6402de7c205f25387b6f8821 l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:01.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x66150d3ba77d3f1c373f0f8d8c80807f800e45108a82a99e1545c6eafa269458 +INFO [12-05|10:13:02.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=395 batch=0xe555d02bbd566aceacaa180c8bdc0d8fda10059159b1628274ec6ce6455ba329 l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:02.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9978161849c2ee017d7659e2d433292a84683a999946d475b4697513fad282de +INFO [12-05|10:13:02.259] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=46 block_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:02.259] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:02.717] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x4725083ddab4e5344e13e8438a6be4278e2902f3e20dfc548ffa0844a8945558 block_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:02.717] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=337 batch_height=336 rollup_idx=0 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.717] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=338 batch_height=337 rollup_idx=1 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.717] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=339 batch_height=338 rollup_idx=2 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.717] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=340 batch_height=339 rollup_idx=3 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.717] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=341 batch_height=340 rollup_idx=4 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.717] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=342 batch_height=341 rollup_idx=5 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.717] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=343 batch_height=342 rollup_idx=6 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.717] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=344 batch_height=343 rollup_idx=7 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=345 batch_height=344 rollup_idx=8 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=346 batch_height=345 rollup_idx=9 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=347 batch_height=346 rollup_idx=10 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=348 batch_height=347 rollup_idx=11 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=349 batch_height=348 rollup_idx=12 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=350 batch_height=349 rollup_idx=13 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=351 batch_height=350 rollup_idx=14 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=352 batch_height=351 rollup_idx=15 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=353 batch_height=352 rollup_idx=16 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=354 batch_height=353 rollup_idx=17 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=355 batch_height=354 rollup_idx=18 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=356 batch_height=355 rollup_idx=19 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=357 batch_height=356 rollup_idx=20 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=358 batch_height=357 rollup_idx=21 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=359 batch_height=358 rollup_idx=22 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=360 batch_height=359 rollup_idx=23 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +WARN [12-05|10:13:02.718] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=458.8935ms block_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:03.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=396 batch=0x1ab4feb69c6824c8729d464bf602c106fb1098e1c2846527b5d9a0a0a5c059fb l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:03.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7a951fb629e82ebd4bab49173f26edce58fff59cd47cb17776dda76e9e32720a +INFO [12-05|10:13:04.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=397 batch=0xcc295a102118204580a163e3b54cd94d25fac42afebbfb4a054a1f1f0624dd69 l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:04.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5ce5234af90a2870f539749acf3808c7eacc306ab6a5dd645803b7b95020f7b4 +INFO [12-05|10:13:05.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=398 batch=0x6832b0e21317fbda1d78a1d4dbda579e3e599307e581ee2fe28e3b65a313d3ae l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:05.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2c41a42fbff5dcdce44167118ace21912f507b24ee9de4e860edcd58c49f3ddf +INFO [12-05|10:13:06.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=399 batch=0xf8aea72672c3ef7dfe450b2ed90bea0654a84c4e46d7f1b38c5ce6b1b0222843 l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:06.072] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5ad9e230b3db826b7bbe0f408ddb9c25617c56fd53f7d2c5ce832de4d4e8d061 +INFO [12-05|10:13:06.073] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xf8aea72672c3ef7dfe450b2ed90bea0654a84c4e46d7f1b38c5ce6b1b0222843 batch_seq_num=400 +INFO [12-05|10:13:07.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=400 batch=0x57d2e8cec56051776ae7238a1f483841112efd75c56ef9bac52ebe71becf3c0f l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:07.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x413cd4eee14722ca151f3f5be3e1645628f4afb5009cef89881d532d66312e1e +INFO [12-05|10:13:08.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=401 batch=0x674e94972d5a3fc3569ea1984ccfe2b0c7e63daf881500c0cfeeea63d0aa6355 l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:08.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x269f16ad12c5fb28d1d6b26ea222d956fcc2770fae0725d2d261a00792674589 +INFO [12-05|10:13:09.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=402 batch=0xffdaf8956b29c9d961819f68941dae902b0041ddaa694f13026a0c3e3778c0df l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:09.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdc5a722d03063abda748b6bd37137d5994c1d498c934689f200d7be6113fe8a4 +INFO [12-05|10:13:10.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=403 batch=0xfb9d9d3d380e061fd0861873a7102729b26f553b63ace0780010d36c899d3bee l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:10.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6b2ed7693812690a60d87f4932c2d6ad6e7fa4fef5384d63faf0af648e617c2e +INFO [12-05|10:13:11.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=404 batch=0x94c6f5e65058191e4b2decc155b38d5288e1dab0dfc4ce7fc0a46f86165cd837 l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:11.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe4eeb96a54d24ce58242147409aa2c18f8ca6c37c74642f91f3714e7496eb11e +INFO [12-05|10:13:12.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=405 batch=0x1f22091f4e30716b3ce9595c73250565cdde3d7b0a4e6f8bf534c7a77c711b3d l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:12.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa26305a0376af05ff25489e57e23916216333b98b8d2f71b1f384ecc00fc6988 +INFO [12-05|10:13:13.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=406 batch=0x0f861eaaace2415bbb9e56a3ab7b0647237232ebfe36e65cd444e826f167f151 l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:13.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc45c1c00bf225fb9f85093a339da703c49d34e6c30070eda81ca73f07826945e +INFO [12-05|10:13:14.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=407 batch=0x06415f2e8da6f3990ed54dfad84c35d93f5909a87ad526b32f49c608bfb75bba l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:14.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xec0b65d4e8ea5403266d91231c245c5b68b705376a387a112cf633ac836d58dd +INFO [12-05|10:13:14.283] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=47 block_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:14.284] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:14.630] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xdc744cc4cc258f39cad699fa01603fb5e3316605ccd87547e7af47c717b48232 block_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=349 batch_height=348 rollup_idx=0 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=350 batch_height=349 rollup_idx=1 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=351 batch_height=350 rollup_idx=2 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=352 batch_height=351 rollup_idx=3 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=353 batch_height=352 rollup_idx=4 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=354 batch_height=353 rollup_idx=5 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=355 batch_height=354 rollup_idx=6 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=356 batch_height=355 rollup_idx=7 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=357 batch_height=356 rollup_idx=8 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=358 batch_height=357 rollup_idx=9 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=359 batch_height=358 rollup_idx=10 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=360 batch_height=359 rollup_idx=11 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=361 batch_height=360 rollup_idx=12 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=362 batch_height=361 rollup_idx=13 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=363 batch_height=362 rollup_idx=14 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=364 batch_height=363 rollup_idx=15 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=365 batch_height=364 rollup_idx=16 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=366 batch_height=365 rollup_idx=17 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=367 batch_height=366 rollup_idx=18 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:14.631] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=368 batch_height=367 rollup_idx=19 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:14.631] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=369 batch_height=368 rollup_idx=20 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:14.631] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=370 batch_height=369 rollup_idx=21 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:14.631] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=371 batch_height=370 rollup_idx=22 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:14.631] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=372 batch_height=371 rollup_idx=23 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +WARN [12-05|10:13:14.631] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=346.593375ms block_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:15.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=408 batch=0x194d1f0246bbed2ec7337e1864976d715dbcad22636096466c74f8da7cbedf9f l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:15.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8d2cca21882322ba5a0f4ba97d7805b1a4a8ed5c4829fab3d2986053aa949318 +INFO [12-05|10:13:16.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=409 batch=0xebf57d7ac429b8ac7587b4fc84708c35258e40201b94c36cfef49f2237b15d43 l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:16.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x11c7319338b15f925c2dceab66882816c13a3eca1bc136c36ce305d744cf68e4 +INFO [12-05|10:13:16.074] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xebf57d7ac429b8ac7587b4fc84708c35258e40201b94c36cfef49f2237b15d43 batch_seq_num=410 +INFO [12-05|10:13:17.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=410 batch=0x0c41f022be81519ab41bde69b54d7a9a632e3977d5cf62b7653bc1b05cad125c l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:17.072] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xee2112d48f6f542e4b9db199e7be8c38d63b3cb2504e49a795e9a285706e7fa1 +INFO [12-05|10:13:18.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=411 batch=0x6ed126f7c18050eefd01535c7573330cf11d5360f6b5b00a8bf90e9152caed70 l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:18.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x74f04fa0840f5747a10da0bf75e566293ceb3dc6d418295624790e71b7dfb1c0 +INFO [12-05|10:13:19.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=412 batch=0xc629d64e70a1bf379a5c0a03806c68f618acea098fa69145b6729a493d87192f l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:19.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa22d5ad263c24e79e4a713dad8d7c13d78f14b556c95ef5cdb5626523f5202c4 +INFO [12-05|10:13:20.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=413 batch=0x66a145e8f3817258778394658081b7922df7373ad311c9423cd7bfcd32d9da84 l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:20.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x60ce05ed6ae6511a0e6fec45a7b8c5acfc4b467315007ad7405fb0c8ed8b5f2d +INFO [12-05|10:13:21.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=414 batch=0xe9d412d122dfd1fc55c527b76ec52282262f3ffe51a86b9673b9b476b9f3aeb7 l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:21.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x98599dbdfaa43ad9aea84a0cc5f5fc0697ce2fe383c0e70a4a9d9d9ad4c8be15 +INFO [12-05|10:13:22.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=415 batch=0xa06632678dd8a1b0e33cf50944bde9d6ff27fdd94f1236eaf9a73e3d9cece7b9 l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:22.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc2ecd989634579ba17e243c2255e20ff76ef323c461a6131621478334ab0bb19 +INFO [12-05|10:13:23.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=416 batch=0x847e37b3df88a96a04ae4d109414adb8f811e3336fed8b3e488de88dbbd53d70 l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:23.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9f8554622b4da8147fb3843b748b98f5f0c0a09e0d5c1785417b3d522d78b571 +INFO [12-05|10:13:24.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=417 batch=0x84ad84d1081be09ba8bfa1f8901a82aba23303620bbb0ccf0571395f5c69afcd l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:24.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd9cd2e9f83f968b4e777f589766bda96cf7c1cccc21959a9e0c9b22ab29e6cd1 +INFO [12-05|10:13:25.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=418 batch=0x1b2ef6cf66efb79d4c22f2d78f8ef3e13b8e363418c0fbe96d3114596011625a l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:25.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb6bffb87de5868e2c8b2aa72f8ba9920767d7fe4a0e71537db30255410588672 +INFO [12-05|10:13:26.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=419 batch=0x972978c1726d285fb5a94dd45d1ff324011c103ba8951e80e50c725ce693d4d6 l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:26.072] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4762b4a27e6221acdddfd6d2fe4dd5cd9972f1dac4fd574b5bd93a707f8166b3 +INFO [12-05|10:13:26.073] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x972978c1726d285fb5a94dd45d1ff324011c103ba8951e80e50c725ce693d4d6 batch_seq_num=420 +INFO [12-05|10:13:26.262] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=48 block_hash=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d +INFO [12-05|10:13:26.262] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d +INFO [12-05|10:13:26.556] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x202eee3f3ffd84e8416f0a074545ecf5eae04ce6e83fb4792319be974c69bc3b block_hash=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=361 batch_height=360 rollup_idx=0 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=362 batch_height=361 rollup_idx=1 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=363 batch_height=362 rollup_idx=2 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=364 batch_height=363 rollup_idx=3 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=365 batch_height=364 rollup_idx=4 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=366 batch_height=365 rollup_idx=5 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=367 batch_height=366 rollup_idx=6 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=368 batch_height=367 rollup_idx=7 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=369 batch_height=368 rollup_idx=8 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=370 batch_height=369 rollup_idx=9 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=371 batch_height=370 rollup_idx=10 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=372 batch_height=371 rollup_idx=11 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=373 batch_height=372 rollup_idx=12 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=374 batch_height=373 rollup_idx=13 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=375 batch_height=374 rollup_idx=14 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=376 batch_height=375 rollup_idx=15 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=377 batch_height=376 rollup_idx=16 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=378 batch_height=377 rollup_idx=17 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=379 batch_height=378 rollup_idx=18 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=380 batch_height=379 rollup_idx=19 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=381 batch_height=380 rollup_idx=20 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=382 batch_height=381 rollup_idx=21 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=383 batch_height=382 rollup_idx=22 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=384 batch_height=383 rollup_idx=23 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +WARN [12-05|10:13:26.557] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=294.117875ms block_hash=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d +INFO [12-05|10:13:27.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=420 batch=0x77a59c797858f648b447b5a66e3871454716a463c704345f4f6da98ead76140c l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d +INFO [12-05|10:13:27.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x39edd48a88550e920199fedaa3c366d888fcb7359d538cdf0786213bc30dac42 +INFO [12-05|10:13:28.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=421 batch=0x7b443e5476f7dd46e3e4d3b510f0b8bd1e9a9faf374767232d7fe03f9ab9cafe l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d +INFO [12-05|10:13:28.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x886b7051972d092514c15d7e6654550765b385859850581ba94ced3cca119c02 +INFO [12-05|10:13:29.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=422 batch=0xc950efec606a151aac811af38704ba605532809c6606d4fba0bf5634baa72aab l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d +INFO [12-05|10:13:29.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x548168762b3f3c49b92251d5487470618a5ee6ed56116c70ede3a0239533def9 +INFO [12-05|10:13:30.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=423 batch=0x6979273c9b28bbcc57d5d6ab1d6c7bec0f48ab51a22e2cba2147bd7df156e3de l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d +INFO [12-05|10:13:30.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdc15750e561907d2b48c2ae9c8d231161183080adf96d5c9f64b6a6b5ea04ca9 +INFO [12-05|10:13:31.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=424 batch=0x8816cf7b35dc686d40a1e75c549e46fcf4c1b87950562b8f8ebced83d178a510 l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d +INFO [12-05|10:13:31.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2aa8f711557a11a6ad23a0c740d2734f0e86cac0973de7a1db5bbdc308739457 +INFO [12-05|10:13:32.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=425 batch=0x7a98738610a9d7a55fad576aaac73e9015e346086a238b0208c465966f7be9f4 l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d +INFO [12-05|10:13:32.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x972ba3f0a5aafbbce045c45c2efb0e69aa72ac09762590f345bf7d67cdef12b4 +INFO [12-05|10:13:33.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=426 batch=0x7774706d1828e70771caaaf9112be9a607a0cd1e162c4dfdbdaf81570a76f2b8 l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d +INFO [12-05|10:13:33.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7c4c701cb38d09f41702f8ba8668213d5ffbf54dfc5ef4cb75afc9750db2e01f +INFO [12-05|10:13:34.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=427 batch=0x8946028bfce6db8660b906b23ae4bc1f69df8b7b8dcc4f9988a2f8ad49465dcc l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d +INFO [12-05|10:13:34.072] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x40fc0e583320a9a97da7e41b26783cca941bce4ca01a88b80bcde9f0cf621f37 +INFO [12-05|10:13:35.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=428 batch=0xbf4207f60a45acfdb87b27233dd456200fff3e0b3a5c6135dcb98aadcee26693 l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d +INFO [12-05|10:13:35.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc24f4d138f77608a8eaf51cb328ba2d6ccc6989fdd9e0b3f9908c643a084ba01 +INFO [12-05|10:13:36.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=429 batch=0x7ca007c972912c85e83ca4a5a6a01c457c6163748336d418fabdb1a418483b33 l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d +INFO [12-05|10:13:36.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3107acce6e6ce165ca569f29b80973062d439e15b9a308d84f2faa0e3ccbb4f7 +INFO [12-05|10:13:36.084] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x7ca007c972912c85e83ca4a5a6a01c457c6163748336d418fabdb1a418483b33 batch_seq_num=430 +INFO [12-05|10:13:37.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=430 batch=0xb64efcbade0da6dcbdf60ffc850f6182d11a9b0ed52c7650e9911683e4baacb1 l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d +INFO [12-05|10:13:37.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xaa07172e626c4d3f9757b13fc06e6d517b2af47d495981fac87cea10d7874d44 +INFO [12-05|10:13:38.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=431 batch=0xb38f934f35b9af9de11b2451b6114a02eb6d035c37342164348eeeac68ff47c7 l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d +INFO [12-05|10:13:38.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1e37f63509903fb0e7ae107a0c948a93fc2c162c7e4dcf27a4d02564dbc605eb +INFO [12-05|10:13:38.334] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=49 block_hash=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 +INFO [12-05|10:13:38.334] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 +INFO [12-05|10:13:38.584] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x0ec9003155f6412ca527b430bf459681f9678a0caea4caaba8bd6b8a972c7425 block_hash=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=373 batch_height=372 rollup_idx=0 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=374 batch_height=373 rollup_idx=1 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=375 batch_height=374 rollup_idx=2 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=376 batch_height=375 rollup_idx=3 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=377 batch_height=376 rollup_idx=4 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=378 batch_height=377 rollup_idx=5 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=379 batch_height=378 rollup_idx=6 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=380 batch_height=379 rollup_idx=7 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=381 batch_height=380 rollup_idx=8 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=382 batch_height=381 rollup_idx=9 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=383 batch_height=382 rollup_idx=10 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=384 batch_height=383 rollup_idx=11 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=385 batch_height=384 rollup_idx=12 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=386 batch_height=385 rollup_idx=13 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=387 batch_height=386 rollup_idx=14 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=388 batch_height=387 rollup_idx=15 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=389 batch_height=388 rollup_idx=16 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=390 batch_height=389 rollup_idx=17 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=391 batch_height=390 rollup_idx=18 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=392 batch_height=391 rollup_idx=19 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:38.585] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=393 batch_height=392 rollup_idx=20 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:38.585] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=394 batch_height=393 rollup_idx=21 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:38.585] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=395 batch_height=394 rollup_idx=22 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:38.585] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=396 batch_height=395 rollup_idx=23 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +WARN [12-05|10:13:38.585] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=249.900834ms block_hash=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 +INFO [12-05|10:13:39.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=432 batch=0x8fa2a2c803fafbd6c1bd7f0c2b11918fb8b4f3cb506e765a55c578e6c265a211 l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 +INFO [12-05|10:13:39.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0d61e3ca8ca15dc200a9a39a6a44c066752b69025800e87a178700c11ee7d2f5 +INFO [12-05|10:13:40.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=433 batch=0x26a9a35928bd5b97a57843731050d28518e6b0d752f03fefe28d9b227d7ddb52 l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 +INFO [12-05|10:13:40.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x15c94dca18f0a88367b3146fc6eec4c6ae5801887e9dd3000069b644ba926efc +INFO [12-05|10:13:41.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=434 batch=0x765493798fd0921bfbac8228b01374d008cd95c99da411eebf9bf59b42c98571 l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 +INFO [12-05|10:13:41.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5029609bc5e7eda9f59ddd5cafea5851408740b9d6c1de1780f4807b879cc9d4 +INFO [12-05|10:13:42.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=435 batch=0x78768f10ddd5d6817a9d5956c69e0982b0e18a9710eceadcdf5f6fffd8ec3070 l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 +INFO [12-05|10:13:42.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4cd440be4af7be878f19a997e2e2d4b9a0836d8e0f5e71bc6b54dc60406d0d4b +INFO [12-05|10:13:43.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=436 batch=0xee3a2dc78c92237179e5546c3d40c1c6b0439abda8e06d2e1f390f9e561d3827 l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 +INFO [12-05|10:13:43.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc1622ac198982036282e6013678a6d9670387ba9ffd2a947a93ba69ddb72ea69 +INFO [12-05|10:13:44.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=437 batch=0xad395f67e98019b3fcef60ab2ada018b603182c268f9ee345d3a7d0f33950d2e l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 +INFO [12-05|10:13:44.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbc5a0a6181a53e989057298b8366292b15132316e19f077c36026abe455d9ae5 +INFO [12-05|10:13:45.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=438 batch=0x272c439f4eeb1de785464c09693fed92703600ffb54c8ae546d74c4330321cb8 l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 +INFO [12-05|10:13:45.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe4ee9abb9ccab464ebd4bf22df7d97b3722ebd5fc4d9935818876cb64db648a2 +INFO [12-05|10:13:46.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=439 batch=0xa83697527c38b301dc7e91bf9a5512b3cfb7c976508dc16fe63aea6489345b92 l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 +INFO [12-05|10:13:46.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7e2839f3b6918575746362c5a488788b686331421ce135bb735b27d12b8f373d +INFO [12-05|10:13:46.074] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xa83697527c38b301dc7e91bf9a5512b3cfb7c976508dc16fe63aea6489345b92 batch_seq_num=440 +INFO [12-05|10:13:47.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=440 batch=0xa9c895ac4ba2cc889ce609e1975995c34abd1a21a4fc3bb3940cbcf0e94bc4cf l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 +INFO [12-05|10:13:47.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1ab0aac0ae55c35d82c5ef57043aff344be7eef4c7b6fed7c8c1641a422e5362 +INFO [12-05|10:13:48.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=441 batch=0xfda6a1ef87eeb60badec0e516d334d786ea847e557bd9548f2a472a0936ec8cf l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 +INFO [12-05|10:13:48.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7d97b61a7e7b4eeed5f728b48f3afca03f61c78c885ac3122f33dd92b9cd9229 +INFO [12-05|10:13:49.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=442 batch=0xfa0d79f235ba83fee7060496d6236be3d7e28c1a851fbdee256513632e3fc930 l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 +INFO [12-05|10:13:49.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfe78d65c1327155b31c05c6407469c8ed957d1b9763113ef9307daadae6784bd +INFO [12-05|10:13:50.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=443 batch=0x5eff424e5df9d9f9dcc28ba4c598ffe58b24f1a7e513a67ec233478466c391db l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 +INFO [12-05|10:13:50.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x717c5d45cee92de37ac1694daf5f637f26af34780c337e906484fb3bcc7a6494 +INFO [12-05|10:13:50.276] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=50 block_hash=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a +INFO [12-05|10:13:50.276] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a +INFO [12-05|10:13:50.594] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x964c2ae2f6714bbefb0b992696fdd67a573b6d1f0204bd570f26089d5cf6913e block_hash=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a +INFO [12-05|10:13:50.594] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=385 batch_height=384 rollup_idx=0 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=386 batch_height=385 rollup_idx=1 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=387 batch_height=386 rollup_idx=2 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=388 batch_height=387 rollup_idx=3 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=389 batch_height=388 rollup_idx=4 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=390 batch_height=389 rollup_idx=5 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=391 batch_height=390 rollup_idx=6 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=392 batch_height=391 rollup_idx=7 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=393 batch_height=392 rollup_idx=8 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=394 batch_height=393 rollup_idx=9 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=395 batch_height=394 rollup_idx=10 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=396 batch_height=395 rollup_idx=11 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=397 batch_height=396 rollup_idx=12 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=398 batch_height=397 rollup_idx=13 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=399 batch_height=398 rollup_idx=14 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=400 batch_height=399 rollup_idx=15 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=401 batch_height=400 rollup_idx=16 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=402 batch_height=401 rollup_idx=17 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=403 batch_height=402 rollup_idx=18 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=404 batch_height=403 rollup_idx=19 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=405 batch_height=404 rollup_idx=20 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=406 batch_height=405 rollup_idx=21 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=407 batch_height=406 rollup_idx=22 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=408 batch_height=407 rollup_idx=23 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +WARN [12-05|10:13:50.596] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=319.3435ms block_hash=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a +INFO [12-05|10:13:51.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=444 batch=0xde6f07c3f7badec41864118539a9dfa6e253f3c5a8f32f051f3bc9572e46e174 l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a +INFO [12-05|10:13:51.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5ffa259230eaa78087128d864b489cd190a4e95a1b432fe41bb93d4adcec005d +INFO [12-05|10:13:52.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=445 batch=0xa6c10d94d71b47bb0c7b925c70b233f5d7461eea10725d092a5e7ac27d649953 l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a +INFO [12-05|10:13:52.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x430c8392a8c6a96c0926f65460edb895d9cc3e553d725a5be524e058a9b806da +INFO [12-05|10:13:53.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=446 batch=0xe23dadcd57c0d26700172bf97d393b67b48572053c5abab6ffbbd61233542c87 l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a +INFO [12-05|10:13:53.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdc32fb0c835c5cb1ed5c397b38731d673941226bc07023f5e9124af311aa155c +INFO [12-05|10:13:54.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=447 batch=0x7e786206a2785d3b6051cc868e076e021e34c7247e82717340b6a7e96589754c l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a +INFO [12-05|10:13:54.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa3f786d45322c167a5c9b191c1a2c4c08e47e6f01ae90f9bab3f076904e2ae73 +INFO [12-05|10:13:55.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=448 batch=0x8cb5b4232197b79bdb54640908713167485b7a1e3791e015b10c6e5ba4744787 l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a +INFO [12-05|10:13:55.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8950755eb255de5f4a37eaa3f5abd20075c921e97b37f7286e54a1d4c248aad1 +INFO [12-05|10:13:56.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=449 batch=0x995bd5248aca859e3b01c8ad45d4f1955faa42d8ef1e308aed248a517576913c l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a +INFO [12-05|10:13:56.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa38da92b1ab9604f3ddd5c81e4a2837943e58324428ef854ac62221e12345fdb +INFO [12-05|10:13:56.076] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x995bd5248aca859e3b01c8ad45d4f1955faa42d8ef1e308aed248a517576913c batch_seq_num=450 +INFO [12-05|10:13:57.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=450 batch=0x2683d8257fde05d04c1607e3147fe19a047244d8ca41db5219bb62da0e667365 l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a +INFO [12-05|10:13:57.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdfffa57e90d0dc0456a777fe28637a29a2ab9c0e585ec01cb9c12c6c235a2fd1 +INFO [12-05|10:13:58.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=451 batch=0xdb984d1f811cbe536ad578115840fede7c81dd223c2c3e2f7de3de921455556a l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a +INFO [12-05|10:13:58.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1e949ff86ccf5b3b65db075183d37ab84e81536f7effb077a5ccf0e6b49ffaa5 +INFO [12-05|10:13:59.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=452 batch=0x193222f074100c9c24a0b10eee2e5b06c8a4faf1efdbeeb600e42ad0b7fc5308 l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a +INFO [12-05|10:13:59.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x535f40a405bedb51aef07eba4a95a2eca9e6b62d7e67625673a57cc408808873 +INFO [12-05|10:14:00.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=453 batch=0x6c3d48f63ca2c3c54772bc63d3bc56a2c3b25a5f705b7211b5cb305410402dae l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a +INFO [12-05|10:14:00.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x718fd932a33cdf026d2975ca571a4c9880eb77a86df1261b19dbcc6a0a94c1dc +INFO [12-05|10:14:01.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=454 batch=0xbf371eb37bffbde527e31ddd7cfbd11d9a3332dfc9466feb1af6746a3b402940 l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a +INFO [12-05|10:14:01.072] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb200b9b1e262107ae3b9de81cb63d8fe5b91cccbd2f9eb228f8ff5dc6faa026b +INFO [12-05|10:14:02.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=455 batch=0x16a6578ef78d45a201dde12204e64833ec719b52fcd34dc41606ca2b210cab38 l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a +INFO [12-05|10:14:02.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x77321b1f50e164863b1d3ea43862d95e94dbc17363df2881078d075d564df556 +INFO [12-05|10:14:02.271] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=51 block_hash=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 +INFO [12-05|10:14:02.271] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 +INFO [12-05|10:14:02.715] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x65a50508d7e7d909ebc284695e0e1ebc04ab50f536527232b3bacd38a60eeb5a block_hash=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 +INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=397 batch_height=396 rollup_idx=0 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=398 batch_height=397 rollup_idx=1 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=399 batch_height=398 rollup_idx=2 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=400 batch_height=399 rollup_idx=3 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=401 batch_height=400 rollup_idx=4 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=402 batch_height=401 rollup_idx=5 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=403 batch_height=402 rollup_idx=6 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=404 batch_height=403 rollup_idx=7 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=405 batch_height=404 rollup_idx=8 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=406 batch_height=405 rollup_idx=9 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=407 batch_height=406 rollup_idx=10 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=408 batch_height=407 rollup_idx=11 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=409 batch_height=408 rollup_idx=12 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=410 batch_height=409 rollup_idx=13 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=411 batch_height=410 rollup_idx=14 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=412 batch_height=411 rollup_idx=15 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=413 batch_height=412 rollup_idx=16 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=414 batch_height=413 rollup_idx=17 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=415 batch_height=414 rollup_idx=18 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=416 batch_height=415 rollup_idx=19 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=417 batch_height=416 rollup_idx=20 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=418 batch_height=417 rollup_idx=21 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=419 batch_height=418 rollup_idx=22 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=420 batch_height=419 rollup_idx=23 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +WARN [12-05|10:14:02.716] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=444.518292ms block_hash=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 +INFO [12-05|10:14:03.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=456 batch=0xeba08ec27c1e829434acc4b40312ce9b94aba53fab1bd1d8fd2a29878e4e788e l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 +INFO [12-05|10:14:03.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x83102faa468d0f9f009c3a92fb357d86d5d9a12b5ddfcf6ce4a4f7e2867a26f2 +INFO [12-05|10:14:04.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=457 batch=0xcf3f42194bba7478bc21d1d830e06379017418ea5da0aaaf474b9851e93e9283 l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 +INFO [12-05|10:14:04.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdde13315329757237a116f585ff7534b0769809b1bfd4c8ac6fb11e8d7376768 +INFO [12-05|10:14:05.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=458 batch=0x93c5c6b1b2a52dfafde7c730eb53c11a0746e1edd7138d4ad68464886d7aae45 l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 +INFO [12-05|10:14:05.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb9f0b5721b4eb6008e870ea4e4c4bfc61e486698e621482802692c87f601c1c2 +INFO [12-05|10:14:06.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=459 batch=0x489649075b4f662135a088aa3a920429170aad474dd73181fab4063e1255afff l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 +INFO [12-05|10:14:06.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x689b7fd04bf92b459d116c8ec12848fc49765a2867e889c6edbb3b4bdd526f0c +INFO [12-05|10:14:06.079] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x489649075b4f662135a088aa3a920429170aad474dd73181fab4063e1255afff batch_seq_num=460 +INFO [12-05|10:14:07.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=460 batch=0xdf7fcdfac26b67f9c07505fd8f9af40034b87cea2616bcab0cf8786ac7a73207 l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 +INFO [12-05|10:14:07.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9916c089b17ec0d5c59b0a24793fbdbc92f6040bff3e7d099f2c3aa72bfe268e +INFO [12-05|10:14:08.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=461 batch=0x16bd2a66fa3f353d604a520421199556b8e6a3f30bc999ac2794443f3d6f0b59 l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 +INFO [12-05|10:14:08.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0a974d8dab53ace3d964dfa42933a57f2db315983e5f17d7db38e3dd1ee107c9 +INFO [12-05|10:14:09.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=462 batch=0x7fc8c011575b49c676dfb020095e3f9c55f9d757812eafaec1c9da38b5cfdcd3 l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 +INFO [12-05|10:14:09.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x60bf1338382621f0af9fd61e2021681139c1460a080174e66a0854107fdd219b +INFO [12-05|10:14:10.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=463 batch=0xb6b2866af90d9e5ea452a0bfa80ed9798621bb971b6fa080c6fd8d1993959a2b l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 +INFO [12-05|10:14:10.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6203abc94c84d43068b53a67f134836dcd3712ddb89c1baa427572978d74a12e +INFO [12-05|10:14:11.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=464 batch=0x5e93f86a91f049f080890ade2f1e9ec2d4f9d67f69416d70e39fa2520253223b l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 +INFO [12-05|10:14:11.088] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb759ed636eb41a99f577ecae329cabbe609f41e8ed0b4a489498454b3a510c27 +INFO [12-05|10:14:12.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=465 batch=0x35e2a1c6ff1678a118aad0b8fe076c4bd6a089b15667747ccd3f47505c559434 l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 +INFO [12-05|10:14:12.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x21b5dea5845b906b63a7bcf4c56f6845ff6f3c3b0cf670d91b5be72babb1eacc +INFO [12-05|10:14:13.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=466 batch=0x804e34cf7229a2546085d3c4614c0c0db5834cbe07ed962611e2a35f2a707eeb l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 +INFO [12-05|10:14:13.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0bbb16221619bba054e1b7018503dbbb51fb467d960d96225882668a731c2b71 diff --git a/nodelogs.txt b/nodelogs.txt new file mode 100644 index 0000000000..269206c58f --- /dev/null +++ b/nodelogs.txt @@ -0,0 +1,2001 @@ +INFO [12-05|10:06:15.634] Creating enclave service with following config component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 cfg="{\n \"HostID\": \"0x0f5f82b989491811cf4edda9a997c7930d541755\",\n \"HostAddress\": \"127.0.0.1:16602\",\n \"Address\": \"127.0.0.1:16702\",\n \"NodeType\": 1,\n \"L1ChainID\": 1337,\n \"ObscuroChainID\": 443,\n \"WillAttest\": false,\n \"ValidateL1Blocks\": false,\n \"GenesisJSON\": null,\n \"ManagementContractAddress\": \"0xf3be1f5bac1ccdb46736beacf40d851c06c8bec8\",\n \"LogLevel\": 1,\n \"LogPath\": \"../.build/simulations/sim-log-2024-12-05_10-03-33-full-network-4167492917.txt\",\n \"UseInMemoryDB\": true,\n \"EdgelessDBHost\": \"\",\n \"SqliteDBPath\": \"\",\n \"ProfilerEnabled\": false,\n \"MinGasPrice\": 1000000000,\n \"MessageBusAddress\": \"0xdf5da871d676f688bab28168cca6ff6b60daaaab\",\n \"SystemContractOwner\": \"0x0100000000000000000000000000000000000000\",\n \"SequencerP2PAddress\": \"127.0.0.1:16600\",\n \"TenGenesis\": \"{}\",\n \"DebugNamespaceEnabled\": true,\n \"MaxBatchSize\": 56320,\n \"MaxRollupSize\": 131072,\n \"GasPaymentAddress\": \"0x95c4303ea3b4da105cef97e32ce16f2ea5a2c555\",\n \"BaseFee\": 1000000000,\n \"GasBatchExecutionLimit\": 300000000000,\n \"GasLocalExecutionCapFlag\": 300000000000,\n \"RPCTimeout\": 5000000000\n}" +INFO [12-05|10:06:15.638] UseInMemoryDB flag is true, data will not be persisted. Creating temporary sqlite database... component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:15.639] Connect to sqlite component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 path="file:/tmp/ten-persistence/3VCe2/enclave.db?mode=rw&_foreign_keys=on&_journal_mode=wal&_txlock=immediate&_synchronous=normal" +INFO [12-05|10:06:15.642] Opened new sqlite db file at /tmp/ten-persistence/3VCe2/enclave.db component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:15.642] Connect to sqlite component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 ro_path="file:/tmp/ten-persistence/3VCe2/enclave.db?mode=ro&_foreign_keys=on&_journal_mode=wal&_txlock=immediate&_synchronous=normal" +INFO [12-05|10:06:15.643] Generating new enclave key component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:15.643] L2 Cross Chain Owner Address: 0xE7927CF0fED1dDAC42Ff6A557E01740D715579Bf component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=cross_chain +INFO [12-05|10:06:15.643] Load: Initializing system contracts component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +ERROR[12-05|10:06:15.643] Load: Failed fetching batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batchSeqNo=2 error="not found" +WARN [12-05|10:06:15.643] WARNING - Attestation is not enabled, enclave will not create a verified attestation report. component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +WARN [12-05|10:06:15.644] could not read enclave pub key. Defaulting to validator type component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="could not retrieve attestation key for address 0x9Bf0f1aAA985F45cA454df13d2F792154711805e. Cause: not found" +WARN [12-05|10:06:15.644] could not read enclave pub key. Defaulting to validator type component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="could not retrieve attestation key for address 0x9Bf0f1aAA985F45cA454df13d2F792154711805e. Cause: not found" +WARN [12-05|10:06:15.644] could not read enclave pub key. Defaulting to validator type component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="could not retrieve attestation key for address 0x9Bf0f1aAA985F45cA454df13d2F792154711805e. Cause: not found" +INFO [12-05|10:06:15.644] Enclave service created successfully. component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e +INFO [12-05|10:06:15.644] obscuro enclave RPC service started. component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:15.644] RPCServer listening on address 127.0.0.1:16702. component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:15.644] Building host container with config: &{L1ChainID:1337 ObscuroChainID:443 L1StartHash:0x0000000000000000000000000000000000000000000000000000000000000000 SequencerP2PAddress:127.0.0.1:16600 ManagementContractAddress:0xF3be1f5BaC1ccDB46736beaCf40d851C06c8BeC8 MessageBusAddress:0xdF5DA871D676F688BAB28168CcA6FF6B60daAaab BatchInterval:1s MaxBatchInterval:1s RollupInterval:5s MaxRollupSize:131072 L1BlockTime:1s CrossChainInterval:6s ID:0x0f5F82b989491811cF4EDDA9a997c7930d541755 PrivateKeyString:cac7308014df83e9e81cfdd5da62faaa27e47ca066408c3195f7ac38a61a45c4 IsGenesis:false NodeType:validator LogLevel:1 LogPath: UseInMemoryDB:true PostgresDBHost: SqliteDBPath: HasClientRPCHTTP:true ClientRPCPortHTTP:16802 HasClientRPCWebsockets:true ClientRPCPortWS:16902 ClientRPCHost:0.0.0.0 EnclaveRPCAddresses:[127.0.0.1:16702] P2PBindAddress:127.0.0.1:16602 P2PPublicAddress:127.0.0.1:16602 L1WebsocketURL:ws://127.0.0.1:16100 L1BeaconUrl:127.0.0.1:16560 L1BlobArchiveUrl: EnclaveRPCTimeout:10s L1RPCTimeout:15s P2PConnectionTimeout:10s ProfilerEnabled:false MetricsEnabled:true MetricsHTTPPort:0 DebugNamespaceEnabled:true IsInboundP2PDisabled:true} component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:16.152] UseInMemoryDB flag is true, data will not be persisted. Creating in-memory database... component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:16.157] Host service created with following config: component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 cfg="{\n \"L1ChainID\": 1337,\n \"ObscuroChainID\": 443,\n \"L1StartHash\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n \"SequencerP2PAddress\": \"127.0.0.1:16600\",\n \"ManagementContractAddress\": \"0xf3be1f5bac1ccdb46736beacf40d851c06c8bec8\",\n \"MessageBusAddress\": \"0xdf5da871d676f688bab28168cca6ff6b60daaaab\",\n \"BatchInterval\": 1000000000,\n \"MaxBatchInterval\": 1000000000,\n \"RollupInterval\": 5000000000,\n \"MaxRollupSize\": 131072,\n \"L1BlockTime\": 1000000000,\n \"CrossChainInterval\": 6000000000,\n \"ID\": \"0x0f5f82b989491811cf4edda9a997c7930d541755\",\n \"PrivateKeyString\": \"cac7308014df83e9e81cfdd5da62faaa27e47ca066408c3195f7ac38a61a45c4\",\n \"IsGenesis\": false,\n \"NodeType\": 1,\n \"LogLevel\": 1,\n \"LogPath\": \"\",\n \"UseInMemoryDB\": true,\n \"PostgresDBHost\": \"\",\n \"SqliteDBPath\": \"\",\n \"HasClientRPCHTTP\": true,\n \"ClientRPCPortHTTP\": 16802,\n \"HasClientRPCWebsockets\": true,\n \"ClientRPCPortWS\": 16902,\n \"ClientRPCHost\": \"0.0.0.0\",\n \"EnclaveRPCAddresses\": [\n \"127.0.0.1:16702\"\n ],\n \"P2PBindAddress\": \"127.0.0.1:16602\",\n \"P2PPublicAddress\": \"127.0.0.1:16602\",\n \"L1WebsocketURL\": \"ws://127.0.0.1:16100\",\n \"L1BeaconUrl\": \"127.0.0.1:16560\",\n \"L1BlobArchiveUrl\": \"\",\n \"EnclaveRPCTimeout\": 10000000000,\n \"L1RPCTimeout\": 15000000000,\n \"P2PConnectionTimeout\": 10000000000,\n \"ProfilerEnabled\": false,\n \"MetricsEnabled\": true,\n \"MetricsHTTPPort\": 0,\n \"DebugNamespaceEnabled\": true,\n \"IsInboundP2PDisabled\": true\n}" +INFO [12-05|10:06:16.158] HTTP Metric server started component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 address=0.0.0.0:0 +INFO [12-05|10:06:16.160] Starting guardian process. component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e +INFO [12-05|10:06:16.161] P2P server started listening component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p bindAddress=127.0.0.1:16602 publicAddress=127.0.0.1:16602 +ERROR[12-05|10:06:16.161] Failed to register for broadcasts component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p err="incoming P2P is disabled, can't register for broadcasts" +INFO [12-05|10:06:16.161] Host started with following config component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 cfg="l1_chain_id = 1337\nobscuro_chain_id = 443\nl1_start_hash = \"0x0000000000000000000000000000000000000000000000000000000000000000\"\nsequencer_p2_p_address = \"127.0.0.1:16600\"\nmanagement_contract_address = \"0xf3be1f5bac1ccdb46736beacf40d851c06c8bec8\"\nmessage_bus_address = \"0xdf5da871d676f688bab28168cca6ff6b60daaaab\"\nbatch_interval = 1000000000\nmax_batch_interval = 1000000000\nrollup_interval = 5000000000\nmax_rollup_size = 131072\nl1_block_time = 1000000000\ncross_chain_interval = 6000000000\nid = \"0x0f5f82b989491811cf4edda9a997c7930d541755\"\nprivate_key_string = \"cac7308014df83e9e81cfdd5da62faaa27e47ca066408c3195f7ac38a61a45c4\"\nis_genesis = false\nnode_type = 1\nlog_level = 1\nlog_path = \"\"\nuse_in_memory_d_b = true\npostgres_d_b_host = \"\"\nsqlite_d_b_path = \"\"\nhas_client_rpc_h_http = true\nclient_rpc_port_h_http = 16802\nhas_client_rpc_websockets = true\nclient_rpc_port_w_s = 16902\nclient_rpc_host = \"0.0.0.0\"\nenclave_rpc_addresses = [\"127.0.0.1:16702\"]\np2_p_bind_address = \"127.0.0.1:16602\"\np2_p_public_address = \"127.0.0.1:16602\"\nl1_websocket_url = \"ws://127.0.0.1:16100\"\nl1_beacon_url = \"127.0.0.1:16560\"\nl1_blob_archive_url = \"\"\nenclave_rpc_timeout = 10000000000\nl1_rpc_timeout = 15000000000\np2_p_connection_timeout = 10000000000\nprofiler_enabled = false\nmetrics_enabled = true\nmetrics_http_port = 0\ndebug_namespace_enabled = true\nis_inbound_p2_p_disabled = true\n" +INFO [12-05|10:06:16.162] Started Obscuro host... component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:16.163] Starting L2 update stream from enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e +INFO [12-05|10:06:16.164] Updating enclave status from [Disconnected] to [AwaitingSecret] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Disconnected] enclave(StatusCode=1, L1Head=0x0000000000000000000000000000000000000000000000000000000000000000, L2Head=0), Host(L1Head=0x0000000000000000000000000000000000000000000000000000000000000000, L2Head=)" +INFO [12-05|10:06:16.164] HTTP server started component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 endpoint=[::]:16802 auth=false prefix= cors=* vhosts=* +INFO [12-05|10:06:16.164] WebSocket enabled component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 url=ws://[::]:16902 +INFO [12-05|10:06:16.164] Started Obscuro host RPC Server... component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:16.164] Requesting secret. component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e +INFO [12-05|10:06:16.172] Host preparing to issue L1 tx component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:16.176] Host issuing L1 tx component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 tx=0x659979c5cdffc238ebe145fc7a4aa5c439b183f3819d9c9f71bf385c73013309 size=0 retries=0 +INFO [12-05|10:06:16.177] Successfully submitted tx to L1 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 txHash=0x659979c5cdffc238ebe145fc7a4aa5c439b183f3819d9c9f71bf385c73013309 +INFO [12-05|10:06:22.208] Receipt not found for transaction, we will re-attempt component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="timed out after 6s (7 attempts) - latest error: could not get receipt publishing tx for L1 tx=0x659979c5cdffc238ebe145fc7a4aa5c439b183f3819d9c9f71bf385c73013309: not found" +INFO [12-05|10:06:22.209] Host issuing L1 tx component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 tx=0x128c66a948522c5e854b52270c65e44c29e4c8cd09406752471a0e46760eb2a8 size=0 retries=1 +INFO [12-05|10:06:22.210] Successfully submitted tx to L1 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 txHash=0x128c66a948522c5e854b52270c65e44c29e4c8cd09406752471a0e46760eb2a8 +INFO [12-05|10:06:39.553] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:40.058] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:40.564] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:41.069] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:41.577] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:42.083] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:42.587] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:43.095] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:43.599] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:44.103] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:44.609] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:45.118] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:45.621] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:46.126] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:46.631] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:47.136] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:47.639] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:48.142] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:48.645] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:49.150] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:49.664] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:50.167] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:50.669] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:06:50.788] Secret received component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e +INFO [12-05|10:06:50.788] Updating enclave status from [AwaitingSecret] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [AwaitingSecret] enclave(StatusCode=0, L1Head=0x0000000000000000000000000000000000000000000000000000000000000000, L2Head=0), Host(L1Head=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7, L2Head=)" +INFO [12-05|10:06:50.789] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=0 block_hash=0xd457166476301ff5f6b6b207552736d94d7bc2c2a549788c601f29c807799976 +INFO [12-05|10:06:50.789] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xd457166476301ff5f6b6b207552736d94d7bc2c2a549788c601f29c807799976 +INFO [12-05|10:06:50.791] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=1 block_hash=0x489b2e76b1da7d6888c1ddbc8662a2111b7dcb5b26ecd5f4c7e17b5b7bb6c02f +INFO [12-05|10:06:50.792] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x489b2e76b1da7d6888c1ddbc8662a2111b7dcb5b26ecd5f4c7e17b5b7bb6c02f +INFO [12-05|10:06:50.794] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=2 block_hash=0x4a899c63a636dac6acaedc57ce341078fc28f438bc3c1514e35bca5b8120f842 +INFO [12-05|10:06:50.794] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x4a899c63a636dac6acaedc57ce341078fc28f438bc3c1514e35bca5b8120f842 +INFO [12-05|10:06:50.795] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=3 block_hash=0x06490e097dad8d70ba58a2887581ac3259206f9fcd310f02c17f6608e15ff2e8 +INFO [12-05|10:06:50.795] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x06490e097dad8d70ba58a2887581ac3259206f9fcd310f02c17f6608e15ff2e8 +INFO [12-05|10:06:50.797] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=4 block_hash=0x59f5c5566120125748bb0107c240fc086239fbb85d755ff818985d220764712a +INFO [12-05|10:06:50.797] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x59f5c5566120125748bb0107c240fc086239fbb85d755ff818985d220764712a +INFO [12-05|10:06:50.799] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=5 block_hash=0x1147f5be7edb4d37ae3e5cc35a782e4f0aaebf043f58e63a22b2818ccbc65cde +INFO [12-05|10:06:50.799] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x1147f5be7edb4d37ae3e5cc35a782e4f0aaebf043f58e63a22b2818ccbc65cde +INFO [12-05|10:06:50.801] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=6 block_hash=0x06a72497af0e73e0d220912b2a3695f3bf735ebb03321814b461ac9775bb3679 +INFO [12-05|10:06:50.801] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x06a72497af0e73e0d220912b2a3695f3bf735ebb03321814b461ac9775bb3679 +INFO [12-05|10:06:50.803] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=7 block_hash=0xe43b4e15d0f42c238a9ebd09d7d8462d3d6ad03f5455a2494739aaf25325f273 +INFO [12-05|10:06:50.803] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xe43b4e15d0f42c238a9ebd09d7d8462d3d6ad03f5455a2494739aaf25325f273 +INFO [12-05|10:06:50.804] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=8 block_hash=0x98bce010c031cb3e8713f12f9c2feefffe0ebc36fa75333dadd9f981ef24c492 +INFO [12-05|10:06:50.804] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x98bce010c031cb3e8713f12f9c2feefffe0ebc36fa75333dadd9f981ef24c492 +INFO [12-05|10:06:50.814] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=9 block_hash=0xcb573cf3bba076b710275165c195a160e48211b25ee3ba9f4cb03d959a93739c +INFO [12-05|10:06:50.814] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xcb573cf3bba076b710275165c195a160e48211b25ee3ba9f4cb03d959a93739c +INFO [12-05|10:06:50.827] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=10 block_hash=0x1883ff15ad78e7c9bb1eb60daa6ed112a271aef71f820678e6a016f48d5eff83 +INFO [12-05|10:06:50.827] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x1883ff15ad78e7c9bb1eb60daa6ed112a271aef71f820678e6a016f48d5eff83 +INFO [12-05|10:06:50.831] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=11 block_hash=0xb2751f9eab0f1c8ffc40b1012703c38755d6eb0d078dbb779cad7a4e9cb7e367 +INFO [12-05|10:06:50.831] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xb2751f9eab0f1c8ffc40b1012703c38755d6eb0d078dbb779cad7a4e9cb7e367 +INFO [12-05|10:06:50.839] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=12 block_hash=0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a +INFO [12-05|10:06:50.839] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a +INFO [12-05|10:06:50.846] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=13 block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:06:50.846] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:06:50.847] Store attestation. Owner: 0xdb5DD1710c847220bB1168dEee32c37EC92F6632 component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:50.847] Process shared secret request. component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height="&{ParentHash:0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a UncleHash:0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347 Coinbase:0x123463a4B065722E99115D6c222f267d9cABb524 Root:0x5aa1ee8a4ef49aa5aef349c52feca5146efd3dd1fa3e447f33b14ad33c949958 TxHash:0x689ea5eb44092b7ffc59a9a4767dac9183b1eec67c387521a7cc6f25ef4c4528 ReceiptHash:0x98bbbc489bfa82690931e7ed9983c21aaa18874695322d679cf968ad22010502 Bloom:[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 1 0 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 128 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 0 0 0 0 64 0 4 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] Difficulty:+0 Number:+13 GasLimit:30000000 GasUsed:201980 Time:1733393186 Extra:[217 131 1 14 6 132 103 101 116 104 136 103 111 49 46 50 49 46 48 134 100 97 114 119 105 110] MixDigest:0xcb35c572fe032cfcaa455eddb18550df4ddc3899a93fc2783c3e3a2acaaa5632 Nonce:[0 0 0 0 0 0 0 0] BaseFee:+192882353 WithdrawalsHash:0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421 BlobGasUsed:0x14004418ed0 ExcessBlobGas:0x14004418ed8 ParentBeaconRoot:0x7352e839bd1d7cec131691a67da385df0c5c044f6eae33bb6b37a0d1218399e4}" block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 tx=0x94a553e76b1842a93891f61053b2670ea0667faa0b3bdb6690a58a41970e47f5 +INFO [12-05|10:06:50.847] received attestation component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 attestation="&{Report:[77 79 67 75 32 82 69 80 79 82 84] PubKey:[2 127 2 28 125 115 198 171 146 229 221 170 57 26 199 218 110 248 226 23 124 240 152 140 227 231 142 55 61 184 204 136 174] EnclaveID:0x6C5Da44dd1B1aA7ad611e811ac694C9963B1ae56 HostAddress:127.0.0.1:16601}" +INFO [12-05|10:06:50.847] Successfully verified attestation and identity. Owner: 0x6C5Da44dd1B1aA7ad611e811ac694C9963B1ae56 component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:50.847] Encrypting secret with public key 027f021c7d73c6ab92e5ddaa391ac7da6ef8e2177cf0988ce3e78e373db8cc88ae component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:50.847] Store attestation. Owner: 0x6C5Da44dd1B1aA7ad611e811ac694C9963B1ae56 component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:50.847] Process shared secret request. component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height="&{ParentHash:0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a UncleHash:0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347 Coinbase:0x123463a4B065722E99115D6c222f267d9cABb524 Root:0x5aa1ee8a4ef49aa5aef349c52feca5146efd3dd1fa3e447f33b14ad33c949958 TxHash:0x689ea5eb44092b7ffc59a9a4767dac9183b1eec67c387521a7cc6f25ef4c4528 ReceiptHash:0x98bbbc489bfa82690931e7ed9983c21aaa18874695322d679cf968ad22010502 Bloom:[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 1 0 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 128 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 0 0 0 0 64 0 4 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] Difficulty:+0 Number:+13 GasLimit:30000000 GasUsed:201980 Time:1733393186 Extra:[217 131 1 14 6 132 103 101 116 104 136 103 111 49 46 50 49 46 48 134 100 97 114 119 105 110] MixDigest:0xcb35c572fe032cfcaa455eddb18550df4ddc3899a93fc2783c3e3a2acaaa5632 Nonce:[0 0 0 0 0 0 0 0] BaseFee:+192882353 WithdrawalsHash:0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421 BlobGasUsed:0x14004418ed0 ExcessBlobGas:0x14004418ed8 ParentBeaconRoot:0x7352e839bd1d7cec131691a67da385df0c5c044f6eae33bb6b37a0d1218399e4}" block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 tx=0x128c66a948522c5e854b52270c65e44c29e4c8cd09406752471a0e46760eb2a8 +INFO [12-05|10:06:50.847] received attestation component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 attestation="&{Report:[77 79 67 75 32 82 69 80 79 82 84] PubKey:[2 96 133 8 7 18 51 20 104 30 42 202 189 216 155 111 18 212 53 76 103 239 1 238 130 133 69 26 229 184 216 228 74] EnclaveID:0x9Bf0f1aAA985F45cA454df13d2F792154711805e HostAddress:127.0.0.1:16602}" +INFO [12-05|10:06:50.848] Successfully verified attestation and identity. Owner: 0x9Bf0f1aAA985F45cA454df13d2F792154711805e component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:50.848] Encrypting secret with public key 0260850807123314681e2acabdd89b6f12d4354c67ef01ee8285451ae5b8d8e44a component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:50.848] Store attestation. Owner: 0x9Bf0f1aAA985F45cA454df13d2F792154711805e component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:50.848] Process shared secret request. component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height="&{ParentHash:0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a UncleHash:0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347 Coinbase:0x123463a4B065722E99115D6c222f267d9cABb524 Root:0x5aa1ee8a4ef49aa5aef349c52feca5146efd3dd1fa3e447f33b14ad33c949958 TxHash:0x689ea5eb44092b7ffc59a9a4767dac9183b1eec67c387521a7cc6f25ef4c4528 ReceiptHash:0x98bbbc489bfa82690931e7ed9983c21aaa18874695322d679cf968ad22010502 Bloom:[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 1 0 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 128 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 0 0 0 0 64 0 4 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] Difficulty:+0 Number:+13 GasLimit:30000000 GasUsed:201980 Time:1733393186 Extra:[217 131 1 14 6 132 103 101 116 104 136 103 111 49 46 50 49 46 48 134 100 97 114 119 105 110] MixDigest:0xcb35c572fe032cfcaa455eddb18550df4ddc3899a93fc2783c3e3a2acaaa5632 Nonce:[0 0 0 0 0 0 0 0] BaseFee:+192882353 WithdrawalsHash:0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421 BlobGasUsed:0x14004418ed0 ExcessBlobGas:0x14004418ed8 ParentBeaconRoot:0x7352e839bd1d7cec131691a67da385df0c5c044f6eae33bb6b37a0d1218399e4}" block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 tx=0xd2eb88a2c5a73f5c3ae2b950c094cc868f30dd0811c6853c2d9fcb830e61ddcc +INFO [12-05|10:06:50.848] received attestation component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 attestation="&{Report:[77 79 67 75 32 82 69 80 79 82 84] PubKey:[2 235 253 161 153 222 96 80 249 111 132 202 176 65 176 75 51 11 91 193 45 103 162 213 68 251 221 78 247 161 173 162 189] EnclaveID:0xF34A4a7381a524f4437dbb5f66d402c986C2bB24 HostAddress:127.0.0.1:16603}" +INFO [12-05|10:06:50.848] Successfully verified attestation and identity. Owner: 0xF34A4a7381a524f4437dbb5f66d402c986C2bB24 component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:50.848] Encrypting secret with public key 02ebfda199de6050f96f84cab041b04b330b5bc12d67a2d544fbdd4ef7a1ada2bd component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:50.848] Store attestation. Owner: 0xF34A4a7381a524f4437dbb5f66d402c986C2bB24 component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:50.848] Process shared secret request. component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height="&{ParentHash:0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a UncleHash:0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347 Coinbase:0x123463a4B065722E99115D6c222f267d9cABb524 Root:0x5aa1ee8a4ef49aa5aef349c52feca5146efd3dd1fa3e447f33b14ad33c949958 TxHash:0x689ea5eb44092b7ffc59a9a4767dac9183b1eec67c387521a7cc6f25ef4c4528 ReceiptHash:0x98bbbc489bfa82690931e7ed9983c21aaa18874695322d679cf968ad22010502 Bloom:[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 1 0 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 128 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 0 0 0 0 64 0 4 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] Difficulty:+0 Number:+13 GasLimit:30000000 GasUsed:201980 Time:1733393186 Extra:[217 131 1 14 6 132 103 101 116 104 136 103 111 49 46 50 49 46 48 134 100 97 114 119 105 110] MixDigest:0xcb35c572fe032cfcaa455eddb18550df4ddc3899a93fc2783c3e3a2acaaa5632 Nonce:[0 0 0 0 0 0 0 0] BaseFee:+192882353 WithdrawalsHash:0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421 BlobGasUsed:0x14004418ed0 ExcessBlobGas:0x14004418ed8 ParentBeaconRoot:0x7352e839bd1d7cec131691a67da385df0c5c044f6eae33bb6b37a0d1218399e4}" block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 tx=0x11d39f5c1774c84b7ff0be76b31c0f875d01668e697adba6c15deec091cdd10a +INFO [12-05|10:06:50.848] received attestation component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 attestation="&{Report:[77 79 67 75 32 82 69 80 79 82 84] PubKey:[3 195 130 176 113 214 204 59 146 78 5 125 67 55 75 146 246 210 18 189 220 85 171 223 229 127 28 229 235 9 58 243 175] EnclaveID:0x7143831b66bEA963342A98ce7bB957B1ec513c8B HostAddress:127.0.0.1:16604}" +INFO [12-05|10:06:50.848] Successfully verified attestation and identity. Owner: 0x7143831b66bEA963342A98ce7bB957B1ec513c8B component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:50.848] Encrypting secret with public key 03c382b071d6cc3b924e057d43374b92f6d212bddc55abdfe57f1ce5eb093af3af component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:50.849] Store attestation. Owner: 0x7143831b66bEA963342A98ce7bB957B1ec513c8B component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:06:50.851] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=14 block_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:06:50.851] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:06:50.854] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=15 block_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:06:50.854] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:06:50.855] Updating enclave status from [L1Catchup] to [L2Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7, L2Head=0), Host(L1Head=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7, L2Head=)" +WARN [12-05|10:06:50.855] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:50.956] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:51.058] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:51.204] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:51.204] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:51.312] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:51.414] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:51.516] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:51.618] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:51.706] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:51.721] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:51.824] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:51.926] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:52.033] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:52.137] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:52.209] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:52.244] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:52.345] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:52.447] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:52.549] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:52.651] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:52.714] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:52.762] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:52.867] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:52.971] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:53.072] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:53.174] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:53.216] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:53.276] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:53.386] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:53.496] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:53.599] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:53.701] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:53.723] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:53.802] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:53.908] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:54.012] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:54.116] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:54.222] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:54.227] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:54.325] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:54.427] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:54.530] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:54.634] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:54.731] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:54.740] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:54.848] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:54.952] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:55.056] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:55.159] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:55.235] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:55.262] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:55.365] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:55.468] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:55.575] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:55.679] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:55.738] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:55.792] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:55.900] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:56.002] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:56.105] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:56.209] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:56.243] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:56.313] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:56.417] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:56.519] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:56.623] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:56.726] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:56.748] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:56.831] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:56.950] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:57.055] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:57.157] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:57.257] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:57.258] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:57.370] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:57.472] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:57.576] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:57.680] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:57.764] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:57.783] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:57.889] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:57.992] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:58.095] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:58.200] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:58.269] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:58.303] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:58.406] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:58.511] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:58.617] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:58.719] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:58.773] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:58.822] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:58.926] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:59.030] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:59.132] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:59.237] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:59.279] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:59.339] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:59.448] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:59.551] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:59.657] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:59.761] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:06:59.795] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:06:59.863] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:06:59.966] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:00.069] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:00.176] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:00.278] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:00.299] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:00.382] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:00.486] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:00.589] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:00.693] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:00.806] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:00.806] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:00.918] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:01.021] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:01.130] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:01.234] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:01.312] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:01.340] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:01.446] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:01.548] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:01.652] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:01.755] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:01.818] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:01.859] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:01.964] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:02.072] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:02.173] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:02.278] Updating enclave status from [L2Catchup] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L2Catchup] enclave(StatusCode=0, L1Head=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7, L2Head=0), Host(L1Head=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e, L2Head=)" +INFO [12-05|10:07:02.279] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=16 block_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:02.279] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:02.279] Updating enclave status from [L1Catchup] to [L2Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e, L2Head=0), Host(L1Head=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e, L2Head=)" +INFO [12-05|10:07:02.281] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=16 block_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:02.281] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +WARN [12-05|10:07:02.281] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:02.320] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:02.383] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:02.483] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:02.584] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:02.685] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:02.787] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:02.823] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:02.891] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:02.995] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:03.096] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:03.199] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:03.307] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:03.325] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:03.409] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:03.513] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:03.615] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:03.721] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:03.824] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:03.828] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:03.929] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:04.032] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:04.135] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:04.237] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:04.334] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:04.340] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:04.444] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:04.548] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:04.651] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:04.755] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:04.843] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:04.858] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:04.961] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:05.066] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:05.169] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:05.272] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:05.347] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:05.373] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:05.475] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:05.580] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:05.685] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:05.789] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:05.854] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:05.893] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:05.995] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:06.096] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:06.203] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:06.310] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:06.359] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:06.413] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:06.517] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:06.621] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:06.723] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:06.826] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:06.864] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:06.930] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:07.033] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:07.138] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:07.240] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:07.344] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:07.370] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:07.451] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:07.558] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:07.663] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:07.765] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:07.870] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:07.874] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:07.974] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:08.076] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:08.181] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:08.285] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:08.381] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:08.387] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:08.491] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:08.593] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:08.697] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:08.801] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:08.889] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:08.903] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:09.005] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:09.107] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:09.213] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:09.317] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:09.395] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:09.420] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:09.523] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:09.626] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:09.728] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:09.830] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:09.899] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:09.932] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:10.034] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:10.135] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:10.236] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:10.338] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:10.401] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:10.439] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:10.541] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:10.642] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:10.743] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:10.846] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:10.905] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:10.949] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:11.052] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:11.156] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:11.265] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:11.367] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:11.418] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:11.470] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:11.573] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:11.677] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:11.781] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:11.886] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:11.922] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:11.992] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:12.094] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:12.199] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:12.302] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:12.406] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:12.427] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:12.508] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:12.609] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:12.713] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:12.815] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:12.918] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:12.929] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:13.022] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:13.123] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:13.227] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:13.329] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:13.432] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:13.433] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:13.535] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:13.637] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:13.741] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:13.851] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:13.939] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:13.954] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:14.056] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:14.158] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:14.256] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=17 block_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:14.257] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:14.258] Updating enclave status from [L2Catchup] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L2Catchup] enclave(StatusCode=0, L1Head=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e, L2Head=0), Host(L1Head=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b, L2Head=)" +INFO [12-05|10:07:14.261] Updating enclave status from [L1Catchup] to [L2Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b, L2Head=0), Host(L1Head=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b, L2Head=)" +INFO [12-05|10:07:14.263] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=17 block_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:07:14.265] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +WARN [12-05|10:07:14.266] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:14.371] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:14.444] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:14.473] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:14.573] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:14.675] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:14.775] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:14.878] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:14.948] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:14.986] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:15.088] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:15.192] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:15.295] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:15.398] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:15.452] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:15.502] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:15.605] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:15.717] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:15.824] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:15.927] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:15.955] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:16.029] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:16.130] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:16.166] No broadcast received from sequencer, re-registering. component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p +ERROR[12-05|10:07:16.167] Failed to re-register for broadcasts component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p err="incoming P2P is disabled, can't register for broadcasts" +WARN [12-05|10:07:16.232] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:16.334] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:16.436] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:16.461] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:16.538] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:16.640] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:16.744] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:16.846] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:16.950] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:16.964] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:17.055] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:17.158] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:17.264] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:17.367] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:17.467] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:17.468] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:17.573] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:17.676] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:17.781] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:17.885] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:17.971] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:17.992] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:18.092] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:18.195] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:18.298] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:18.400] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:18.475] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:18.504] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:18.609] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:18.714] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:18.816] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:18.921] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:18.983] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:19.024] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:19.126] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:19.229] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:19.333] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:19.437] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:19.492] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:19.539] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:19.642] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:19.747] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:19.852] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:19.955] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:19.999] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:20.058] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:20.165] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:20.269] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:20.371] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:20.475] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:20.501] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:20.577] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:20.681] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:20.784] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:20.887] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:20.990] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:21.005] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:21.091] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:21.194] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:21.298] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:21.400] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:21.509] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:21.511] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:21.612] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:21.728] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:21.835] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:21.939] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:22.013] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:22.039] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:22.141] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:22.242] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:22.344] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:22.445] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:22.516] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:22.546] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:22.648] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:22.749] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:22.851] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:22.952] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:23.019] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:23.054] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:23.155] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:23.257] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:23.359] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:23.460] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:23.521] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:23.561] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:23.663] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:23.765] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:23.867] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:23.971] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:24.024] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:24.072] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:24.174] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:24.276] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:24.383] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:24.484] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:24.529] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:24.587] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:24.689] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:24.791] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:24.893] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:24.995] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:25.033] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:25.097] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:25.198] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:25.299] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:25.401] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:25.503] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:25.535] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:25.609] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:25.710] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:25.812] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:25.913] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:26.015] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:26.038] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +WARN [12-05|10:07:26.137] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:26.237] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:26.270] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=18 block_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:26.270] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +WARN [12-05|10:07:26.370] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +WARN [12-05|10:07:26.529] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" +INFO [12-05|10:07:26.567] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" +INFO [12-05|10:07:26.620] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x4d754b00695bcc6f459385469258eb46fc728d627288b565abde84c452d36e5d block_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=1 batch_height=0 rollup_idx=0 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=2 batch_height=1 rollup_idx=1 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=3 batch_height=2 rollup_idx=2 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=4 batch_height=3 rollup_idx=3 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=5 batch_height=4 rollup_idx=4 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=6 batch_height=5 rollup_idx=5 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=7 batch_height=6 rollup_idx=6 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=8 batch_height=7 rollup_idx=7 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=9 batch_height=8 rollup_idx=8 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=10 batch_height=9 rollup_idx=9 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=11 batch_height=10 rollup_idx=10 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=12 batch_height=11 rollup_idx=11 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:26.621] Stored genesis component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x3de648964517100bbea3a8a765beece8134f1895d36a89e51edce8fc2a5be1a0 +INFO [12-05|10:07:26.621] Generated synthetic deployment transaction for the SystemDeployer contract component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:07:26.625] Initialize: Starting initialization of system contracts component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batchSeqNo=2 +INFO [12-05|10:07:26.625] Initialize: Initializing required addresses component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 addresses="map[Fees:0xcA0455DDEE5AAF5749b394a541BAA8DedFeB93CA MessageBus:0x45d8d4e632D82699433F6657AA7301e3744b666B PublicCallbacks:0xF77229630f48F0cB49e6739e7890ddDF96E11AB9 TransactionsPostProcessor:0xc94693CD0a8217F6f45f398d8a8C0b6586966Fc6]" +INFO [12-05|10:07:26.629] Updating enclave status from [L2Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L2Catchup] enclave(StatusCode=0, L1Head=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7, L2Head=2), Host(L1Head=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7, L2Head=1)" +INFO [12-05|10:07:26.630] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe637645fb2da977e58c1427e0ce5b5da6194f1d2c7589a33b05591582a122861 +INFO [12-05|10:07:26.631] Starting tx pool component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:07:26.631] Tx pool started component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 +INFO [12-05|10:07:26.631] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x081a460bf183daaf19032fd97cfe8884852279b921c8726983bfe58b2de0b282 +INFO [12-05|10:07:26.632] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x24c9b786c00bb4fc9eb6afac7d78525ce5a0a2fb4bacf3833d4dc04e3d9b9172 +INFO [12-05|10:07:26.637] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1fd54aadae3a61fd76acae78597a38911f345b22bef392ec53e9c82b57a84806 +INFO [12-05|10:07:26.638] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x34fccf45cecf0e3b228f4e087f8ab36b83608016423e306190d040f4774fdce8 +INFO [12-05|10:07:26.640] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x80d8c7bfca2fe44715294d937b3cd1b81778c17e1fdd211e1a6fcd26eef46ab8 +INFO [12-05|10:07:26.641] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcda2160e52d3e6ea097abe1a1bd3065d690a3ef6af953d0bc85cb6af2ef8f707 +INFO [12-05|10:07:26.642] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x11bc14c3cd1e1b9b5eff4a3c805a7383b826157fa8df27c0a6ef7c0870c6f6c4 +INFO [12-05|10:07:26.643] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xca0a0904422862de00bc2b09beb60ed69fbaeb5c3d59ab0bd88272000e101593 batch_seq_num=10 +INFO [12-05|10:07:26.643] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf310da7d9638e178c1329271044a1b4e7974f1b143a93d34aadaa788493dd527 +INFO [12-05|10:07:26.644] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x05f93fd7b9a268d547e7ca8c161f939f85af4a47aa04d6bea3449dbd6d232518 +WARN [12-05|10:07:26.645] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=374.197875ms block_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:07:26.645] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=1 batch=0xf39889c3306495ea2a29b18f006bdefa015373b6cd0e6f8b7fe5593a6b85f4ea l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +ERROR[12-05|10:07:26.645] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:07:26.645] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:07:26.646] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=2 batch=0x7217b4882f294799c12a84fdc3fdc26a88b3ed8884cb7f099490e09fe7eaef50 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +ERROR[12-05|10:07:26.646] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:07:26.646] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:07:26.646] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=3 batch=0x0624d5bfc1d2a91804635f9b92f5cecbe302b6702b2595febd1743c29bbf9e2a l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +ERROR[12-05|10:07:26.646] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:07:26.646] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:07:26.646] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=4 batch=0x3137f2f921ac789a4966dac2bacd7a9a7ebc3469ab932a6dae718a16bff33bda l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +ERROR[12-05|10:07:26.646] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:07:26.646] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:07:26.647] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=5 batch=0xc13a820fa81dd04f43a518f3037bcadfcd4e606fe82d198eb2dfa636e0c3c633 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +ERROR[12-05|10:07:26.647] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:07:26.647] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:07:26.647] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=6 batch=0x74cb47a18d7b4f391a8dbd1df50bcc26275d37d86d25264d6e4a74d78e6ca637 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +ERROR[12-05|10:07:26.647] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:07:26.647] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:07:26.647] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=7 batch=0x8de95dcd4e9d8a3633a011395e0cdef9991c94fcd910dea25ab360134151969b l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +ERROR[12-05|10:07:26.647] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:07:26.647] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:07:26.647] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=8 batch=0x4729f0043551af8e014c445341195ea2610091f539faf1d601d2e1134facd3cc l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +ERROR[12-05|10:07:26.647] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:07:26.648] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:07:26.648] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=9 batch=0xca0a0904422862de00bc2b09beb60ed69fbaeb5c3d59ab0bd88272000e101593 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +ERROR[12-05|10:07:26.648] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:07:26.648] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:07:26.648] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=10 batch=0x09e99931a3c7df09360aa758e7036a09abee0fae29fc02a8441845523a36e2d5 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +ERROR[12-05|10:07:26.648] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:07:26.648] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:07:26.648] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=11 batch=0x78826143a1f6963083e3d51beb97c48dd19f631b542499396c0c571f4806d6fc l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +ERROR[12-05|10:07:26.648] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:07:26.648] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:07:38.279] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=19 block_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:38.279] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:38.590] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x56cbcab2653e88ca899d2411687b72cef4351f6a5a6745dee302d174d135e5f0 block_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:38.590] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=1 batch_height=0 rollup_idx=0 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=2 batch_height=1 rollup_idx=1 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=3 batch_height=2 rollup_idx=2 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=4 batch_height=3 rollup_idx=3 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=5 batch_height=4 rollup_idx=4 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=6 batch_height=5 rollup_idx=5 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=7 batch_height=6 rollup_idx=6 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=8 batch_height=7 rollup_idx=7 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=9 batch_height=8 rollup_idx=8 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=10 batch_height=9 rollup_idx=9 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=11 batch_height=10 rollup_idx=10 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=12 batch_height=11 rollup_idx=11 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=13 batch_height=12 rollup_idx=12 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=14 batch_height=13 rollup_idx=13 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=15 batch_height=14 rollup_idx=14 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=16 batch_height=15 rollup_idx=15 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=17 batch_height=16 rollup_idx=16 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=18 batch_height=17 rollup_idx=17 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=19 batch_height=18 rollup_idx=18 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=20 batch_height=19 rollup_idx=19 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=21 batch_height=20 rollup_idx=20 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=22 batch_height=21 rollup_idx=21 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=23 batch_height=22 rollup_idx=22 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=24 batch_height=23 rollup_idx=23 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=25 batch_height=24 rollup_idx=24 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=26 batch_height=25 rollup_idx=25 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=27 batch_height=26 rollup_idx=26 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=28 batch_height=27 rollup_idx=27 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=29 batch_height=28 rollup_idx=28 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=30 batch_height=29 rollup_idx=29 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=31 batch_height=30 rollup_idx=30 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=32 batch_height=31 rollup_idx=31 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=33 batch_height=32 rollup_idx=32 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=34 batch_height=33 rollup_idx=33 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=35 batch_height=34 rollup_idx=34 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=36 batch_height=35 rollup_idx=35 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:38.592] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd7a91405aa1c91ac9f7464d9c4ac82df488a33d360cb40c0fa2aca34e3c7e9c8 +INFO [12-05|10:07:38.595] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6b5253b4a40cdcd398a9ac2c874d06a922a7476d41e48b274ca3579ea485fa2d +INFO [12-05|10:07:38.596] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7, L2Head=13), Host(L1Head=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122, L2Head=12)" +INFO [12-05|10:07:38.596] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6b4ebe2e46d6722f6356a2200fdcc213f6c2a636b1f4244134bd79022c6a7947 +INFO [12-05|10:07:38.598] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x08eea0782beebe1f42c1702be93f6bb5c4d1392deb2869ca78d71a6acfb2e7f6 +INFO [12-05|10:07:38.599] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb75c9ed7e7ca57e0b9b9689f72035d795fd28e700e3ae062e939ada681ffc48d +INFO [12-05|10:07:38.600] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd495e6d31afed537c0e202c200bfe79658d46d1452cb500462be5f85b06f2f37 +INFO [12-05|10:07:38.602] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf56091bceded330e236c5dcca125bf19cef9eda51b85179208cd885984992517 +INFO [12-05|10:07:38.603] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9da96de6dac5c073414be4f1201f8055a26bda623cbb151195e24b8caffd9f72 +INFO [12-05|10:07:38.604] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x5831879c688e5a2a4b487e03bf75f61857db1eede569e7c8e818c18f3ea0a326 batch_seq_num=20 +INFO [12-05|10:07:38.606] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1ec4e1c7ce22d576a120dad9cd17c36d4b884c449f4cc013629fda35dd96babd +INFO [12-05|10:07:38.627] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x00e082de518ccc3ce29a676a6db884983727abe42d996d79b2970d6ab17e8e8a +INFO [12-05|10:07:38.628] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcb9b03ccdfe02dc8587aac43e065f30984322a7a7126a7bb553263cd7c489314 +INFO [12-05|10:07:38.629] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9244b304fb0cbd1d12b5a56ac34ced25f8b7c2492859f4932f357b02aa0163c8 +INFO [12-05|10:07:38.630] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd68dc9b8aff15b3e84490ca424d59e4267fd1cec47d3ca8b844dd1d53d55068d +INFO [12-05|10:07:38.631] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xfb89f0c694c5ffa87d3f16f2098c7c7ef924cdea2f191e3e3e1a04c9d081617e +INFO [12-05|10:07:38.632] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd258fe8c7a9ee2275b707f8415c1fd87cbabefe81af5b5a406525d521d703821 +INFO [12-05|10:07:38.633] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbfafb2fbedda7f34c7a7bba3339a8bd21e8d3b02fb3d3247a393bf54a7439ae5 +INFO [12-05|10:07:38.635] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcebc0b1370480a066b43d65016052c8efe8afb7a3e18aca53a12b2a7cc7a041c +INFO [12-05|10:07:38.636] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbc2729e79df378b7278b78adac7cc5fd35712eb222566f6dbec8dae0e9e42ddd +INFO [12-05|10:07:38.636] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xfc755fb0418b3057fdb27f79bad46dc599baff436fc8de3ad6aefa06225808ce batch_seq_num=30 +INFO [12-05|10:07:38.637] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5de887dc68878b0b283f2f6fb4acb40ff4ca725087cec4989d178e6906f25bb0 +INFO [12-05|10:07:38.638] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbbcba24828e69733fc6ceab3d3db2cf30d5c08cbf75c023e38325117ba9feb33 +INFO [12-05|10:07:38.639] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x337fce49422fce214b4440c29afd663643d2185448aa38464e47bcfd853b3fb7 +INFO [12-05|10:07:38.640] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf477d5e94bd587126753ffd779325634a170b1ac9ed480b42c4364029e49cd59 +INFO [12-05|10:07:38.641] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd77b1c2eb936b14e9ce4c8d51e1700cfced6afb36b876c0daa3a9abfd7c62cce +INFO [12-05|10:07:38.642] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6b30e2641e4ddf08c155b86795b04f22c9a54d022de87da52e4ed98a1597434c +WARN [12-05|10:07:38.643] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=363.213ms block_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:07:38.643] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122, L2Head=35), Host(L1Head=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122, L2Head=35)" +INFO [12-05|10:07:38.643] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=35 batch=0xf50a4035cf579dece71dbe79ddd287686367f915d8be1aad83c957472e103bda l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +ERROR[12-05|10:07:38.643] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:07:38.643] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:07:50.280] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=20 block_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:50.280] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:50.611] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xe81d8ccd785f6a1e0d8aec40ba26e531f407a2ae85bcc952fffafdc4ca6ef85f block_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=13 batch_height=12 rollup_idx=0 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=14 batch_height=13 rollup_idx=1 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=15 batch_height=14 rollup_idx=2 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=16 batch_height=15 rollup_idx=3 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=17 batch_height=16 rollup_idx=4 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=18 batch_height=17 rollup_idx=5 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=19 batch_height=18 rollup_idx=6 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=20 batch_height=19 rollup_idx=7 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=21 batch_height=20 rollup_idx=8 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=22 batch_height=21 rollup_idx=9 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=23 batch_height=22 rollup_idx=10 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=24 batch_height=23 rollup_idx=11 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=25 batch_height=24 rollup_idx=12 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=26 batch_height=25 rollup_idx=13 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=27 batch_height=26 rollup_idx=14 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=28 batch_height=27 rollup_idx=15 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=29 batch_height=28 rollup_idx=16 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=30 batch_height=29 rollup_idx=17 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=31 batch_height=30 rollup_idx=18 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=32 batch_height=31 rollup_idx=19 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=33 batch_height=32 rollup_idx=20 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=34 batch_height=33 rollup_idx=21 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=35 batch_height=34 rollup_idx=22 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=36 batch_height=35 rollup_idx=23 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 +INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=37 batch_height=36 rollup_idx=24 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=38 batch_height=37 rollup_idx=25 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=39 batch_height=38 rollup_idx=26 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=40 batch_height=39 rollup_idx=27 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=41 batch_height=40 rollup_idx=28 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=42 batch_height=41 rollup_idx=29 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=43 batch_height=42 rollup_idx=30 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=44 batch_height=43 rollup_idx=31 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=45 batch_height=44 rollup_idx=32 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=46 batch_height=45 rollup_idx=33 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=47 batch_height=46 rollup_idx=34 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=48 batch_height=47 rollup_idx=35 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:07:50.612] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xad29b1d8e35beabfaaf7e5bfdc2d80709cb1b25d1ce643f0a3349041e7caa8ad +INFO [12-05|10:07:50.614] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x0bbd298cff56ec79480199ea956e40206b17638511c58e7593592e519bbf41d9 +INFO [12-05|10:07:50.614] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122, L2Head=37), Host(L1Head=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1, L2Head=36)" +INFO [12-05|10:07:50.615] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3d8e5c12a7b9978db40e1178afa34375e980baff8538f3a08f44860758b7831d +INFO [12-05|10:07:50.616] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2de1ead0f4a375e89db6fc64d4a22a71ab14b0e77259cf51a06eea346d4d6625 +INFO [12-05|10:07:50.617] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xa68e861e23588601b29809cc839e4db03581ba6c1785475da5ede084ac46f5b5 batch_seq_num=40 +INFO [12-05|10:07:50.617] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3bd3a8dca75ffe3bf03e7b61d66b2ec0558aea3d4e02331bcc0dc35ed47dde8f +INFO [12-05|10:07:50.618] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4c5f5cb113183f1d987f76a93a50aeae1aa9d27b842781d83ec8250937abf485 +INFO [12-05|10:07:50.619] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x221f6a750c2e7fbeda6617b82bad5ac36e621e29af6da24da6694745d03e6b76 +INFO [12-05|10:07:50.620] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf69149991b738dc416c49e52c2e04585af900988b359609f56a8144a66fb9336 +INFO [12-05|10:07:50.621] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xdddb112c79358cc0cdca9a87ae8d714cab47fc2c3b1fe30457111ebd3bf6f9e6 +INFO [12-05|10:07:50.626] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2561c85228eb47b3f1310ae4b36a80946321633a54754b089e1a381535792e42 +INFO [12-05|10:07:50.627] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2419dc713d2fc24fdcbd38f3d7416c8306b6a0deb8c2605ba2fb91381623f9f1 +INFO [12-05|10:07:50.628] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x011d093956250a0a3b7a408e3b9f70b8973d37b111cd6374cffb7515bab0597b +WARN [12-05|10:07:50.629] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=348.0795ms block_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:07:50.629] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1, L2Head=47), Host(L1Head=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1, L2Head=47)" +INFO [12-05|10:07:50.629] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=47 batch=0x568c584371e6bc1dcf46a23a9c1b5073f69a659035c817628ec002462a59917c l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +ERROR[12-05|10:07:50.629] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:07:50.630] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:02.274] Error encountered converting the extracted relevant logs to messages component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="abi: cannot marshal in to go type: length insufficient 64 require 96" +ERROR[12-05|10:08:02.274] Error encountered converting logs to transfers component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 "!BADKEY"="abi: cannot marshal in to go type: length insufficient 64 require 96" "!BADKEY"= LOG_ERROR="Normalized odd number of arguments by adding nil" +ERROR[12-05|10:08:02.284] Error encountered converting the extracted relevant logs to messages component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="abi: cannot marshal in to go type: length insufficient 64 require 96" +ERROR[12-05|10:08:02.284] Error encountered converting logs to transfers component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 "!BADKEY"="abi: cannot marshal in to go type: length insufficient 64 require 96" "!BADKEY"= LOG_ERROR="Normalized odd number of arguments by adding nil" +ERROR[12-05|10:08:02.292] Error encountered converting the extracted relevant logs to messages component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="abi: cannot marshal in to go type: length insufficient 64 require 96" +ERROR[12-05|10:08:02.292] Error encountered converting logs to transfers component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 "!BADKEY"="abi: cannot marshal in to go type: length insufficient 64 require 96" "!BADKEY"= LOG_ERROR="Normalized odd number of arguments by adding nil" +INFO [12-05|10:08:02.325] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=21 block_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:02.325] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:02.846] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x9055fe4d96a9f1fcd7863d0aa102cfa6bc7c774b9b684c63a5a5b52156e4427a block_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=37 batch_height=36 rollup_idx=0 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=38 batch_height=37 rollup_idx=1 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=39 batch_height=38 rollup_idx=2 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=40 batch_height=39 rollup_idx=3 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=41 batch_height=40 rollup_idx=4 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=42 batch_height=41 rollup_idx=5 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=43 batch_height=42 rollup_idx=6 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=44 batch_height=43 rollup_idx=7 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=45 batch_height=44 rollup_idx=8 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=46 batch_height=45 rollup_idx=9 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=47 batch_height=46 rollup_idx=10 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=48 batch_height=47 rollup_idx=11 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=49 batch_height=48 rollup_idx=12 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=50 batch_height=49 rollup_idx=13 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=51 batch_height=50 rollup_idx=14 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=52 batch_height=51 rollup_idx=15 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=53 batch_height=52 rollup_idx=16 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=54 batch_height=53 rollup_idx=17 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=55 batch_height=54 rollup_idx=18 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=56 batch_height=55 rollup_idx=19 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=57 batch_height=56 rollup_idx=20 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=58 batch_height=57 rollup_idx=21 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=59 batch_height=58 rollup_idx=22 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=60 batch_height=59 rollup_idx=23 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:02.847] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7ecc0096de2381a298b55cfd59740a8dfb5e23a316d1faae54b33818e35445a4 +INFO [12-05|10:08:02.848] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb3cacb1c10c76f15526c419b3da8c76bacfed9c2a6b405c4cece49e68a1cb7c4 +INFO [12-05|10:08:02.849] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xeeb37eeb92854343c6c937c06a94c946c468493c4387d2ae6e8c9efc3854b3cb batch_seq_num=50 +INFO [12-05|10:08:02.849] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x16c1dd6425b09adf9d48bc61d6acae6a19fc9314651b00f73ed14e0d37e4d606 +INFO [12-05|10:08:02.850] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9e9dadf18d733bfbcc63e860c4c4c3e84b9abacd9b2ae7eec3c79038daea6827 +INFO [12-05|10:08:02.851] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe03483335a3c7480b529730c1fec92deddf54b64fb5f870d82be7a0df63a55c5 +INFO [12-05|10:08:02.852] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcd333c99909bcd099db25b7d14c1913f57491a4aac77e95303c13aa4b33eb6ec +INFO [12-05|10:08:02.853] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6a54bd039e22307fd176779fecb4ad2de846ac2565faeab0be1900599c200c6d +INFO [12-05|10:08:02.855] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x95e217f2103a361576bcb68bdb67e05cef45d9771cb0d31986b81013600fabcd +INFO [12-05|10:08:02.857] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x00578b5da965cb06b099f873d57ccdeabfe4a17b027509533ab401c6aa5b7c86 +INFO [12-05|10:08:02.859] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x828b66aaf85978127e672bdbc9ddd2d19c73a4f0c707655e00754667c8babf34 +INFO [12-05|10:08:02.860] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6bbe31dea81cfeb94ce57999bb29c222dc5573dcb0078a894cab3d044ee30068 +INFO [12-05|10:08:02.862] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6850d26beee4b51ee951efdea160120eb6732d853a8583c866ff3a319df49b68 +INFO [12-05|10:08:02.863] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xda84e8c2861184036152639e679adf751aa6a855c9265d89b4efc9b7ae75d56a batch_seq_num=60 +ERROR[12-05|10:08:02.863] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=537.751083ms block_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:02.864] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=48 batch=0x926f9e0f6936da8a7954402d552a19d4be964a6ad802721f52ba7fb838825b98 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +ERROR[12-05|10:08:02.864] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:02.864] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:08:02.864] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=49 batch=0xeeb37eeb92854343c6c937c06a94c946c468493c4387d2ae6e8c9efc3854b3cb l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +ERROR[12-05|10:08:02.864] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:02.864] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:08:02.864] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=50 batch=0x3c2e65273f2a761fc4ef4ed59bda5f2e77e6dc9ffb3203960a070e6f02480bc6 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +ERROR[12-05|10:08:02.864] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:02.864] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:08:02.864] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=51 batch=0xe30b0fbda65a5779b07c412a778c8eb3737e493a968ae562da8851ac0847619a l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +ERROR[12-05|10:08:02.864] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:02.865] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:08:02.865] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=52 batch=0x1690bb392413cb3b0f0e5b2db2363f3ca628bf089120bfb79c9f73a6d2800819 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +ERROR[12-05|10:08:02.865] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:02.865] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:08:02.865] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=53 batch=0x168c05c52d1ee3abcf723729a3ecf1c805393a11f04c878688f00a1005817c0b l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +ERROR[12-05|10:08:02.865] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:02.865] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:08:02.865] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=54 batch=0xa57feef2b1757c4d4194dc27afbd0b6054dde3aa13ad6778002e1d43e6c187c4 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +ERROR[12-05|10:08:02.865] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:02.866] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:08:02.866] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=55 batch=0x39bd8bace4d2b2b67eb3a9bdc68adddc5252d76c7b70471b30d3273075864f8a l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +ERROR[12-05|10:08:02.866] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:02.866] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:08:02.866] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=56 batch=0xbd63e399e13ebfefe7381c15b08221058376b13737dea1d9332c36aefbc8e249 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +ERROR[12-05|10:08:02.866] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:02.866] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:08:02.866] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=57 batch=0x269fb72d07828969727e6c1114aacec9ebb71f03d8d23f94fbea1b6335289b8f l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +ERROR[12-05|10:08:02.866] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:02.867] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:08:02.867] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=58 batch=0xfda7960bf2fb804b5126ff4c6ad09e51b5369006f6616763687d675095e04692 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +ERROR[12-05|10:08:02.867] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:02.867] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:08:02.867] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=59 batch=0xda84e8c2861184036152639e679adf751aa6a855c9265d89b4efc9b7ae75d56a l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +ERROR[12-05|10:08:02.867] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:02.867] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:08:14.272] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=22 block_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:14.272] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:14.579] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x741d5263c3958da9f12a48b2e2fefd0f86b47e28339beb118ff2792ee2b7ed42 block_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=49 batch_height=48 rollup_idx=0 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=50 batch_height=49 rollup_idx=1 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=51 batch_height=50 rollup_idx=2 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=52 batch_height=51 rollup_idx=3 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=53 batch_height=52 rollup_idx=4 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=54 batch_height=53 rollup_idx=5 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=55 batch_height=54 rollup_idx=6 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=56 batch_height=55 rollup_idx=7 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=57 batch_height=56 rollup_idx=8 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=58 batch_height=57 rollup_idx=9 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=59 batch_height=58 rollup_idx=10 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=60 batch_height=59 rollup_idx=11 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=61 batch_height=60 rollup_idx=12 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=62 batch_height=61 rollup_idx=13 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=63 batch_height=62 rollup_idx=14 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=64 batch_height=63 rollup_idx=15 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=65 batch_height=64 rollup_idx=16 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=66 batch_height=65 rollup_idx=17 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=67 batch_height=66 rollup_idx=18 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=68 batch_height=67 rollup_idx=19 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=69 batch_height=68 rollup_idx=20 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=70 batch_height=69 rollup_idx=21 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=71 batch_height=70 rollup_idx=22 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=72 batch_height=71 rollup_idx=23 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:14.580] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8a962a7fd526cad730fc484f4ec9657130714f712a24f6015d5412db85e8c4e9 +INFO [12-05|10:08:14.581] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc5da16b7d460c6fcbd3318277c817287d9477160f1f1d7a648fa602ef102b8e6 +INFO [12-05|10:08:14.583] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3a815fa6b967a191f2e9745ef8e3498869be2111f988dafdbf6f3b5d4a40bcc5 +INFO [12-05|10:08:14.584] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd8f401f3ecb38d71c777c181d228e37109bf0225e50972f1bcb81b8baf0a483b +INFO [12-05|10:08:14.585] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1f163ad0f178b1252c5458ed3b2a5464e4e21df358c64a99ca2d80742dfa2307 +INFO [12-05|10:08:14.587] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc770bd6be85f24e414f10eb80b8a40876b7b37633db34985bc6287983c45e271 +INFO [12-05|10:08:14.588] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8efcfdfb0599b7abc22f94ce081efe586eb148a0d5972981c55b9181380fcb92 +INFO [12-05|10:08:14.589] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc0394b032031384e7dd453a3e0bd726c58b068170f28887682122a2aa0a4b6af +INFO [12-05|10:08:14.591] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad, L2Head=61), Host(L1Head=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe, L2Head=60)" +INFO [12-05|10:08:14.592] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb0021e0cd18492364b2154de205f47faa34cf8f9ccee343fcb5a0d7dfda4fde5 +INFO [12-05|10:08:14.631] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7f4f76a835af1de1025aebb0c783f26176d59d2025ddc6810f0dbb0d54ce6693 +INFO [12-05|10:08:14.633] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x7a05621563c168bd80c4bff3ee1f35b474a1f83d6974a5a004fd2f75b1a5ffc7 batch_seq_num=70 +INFO [12-05|10:08:14.634] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xdb5414cbffdeb53e2d17bbe1a216d266decb4e7b19d987cf5e70754f54df6764 +INFO [12-05|10:08:14.635] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x57156cb2aa9828f538abddeacfadd0168a6e59fb27f5de0d04a17cb980ebf8bf +WARN [12-05|10:08:14.636] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=363.741792ms block_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:08:14.637] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe, L2Head=71), Host(L1Head=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe, L2Head=71)" +INFO [12-05|10:08:14.637] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=71 batch=0x610c0d88336f3df810df2ff1d43d5fb4f16451bf3e319d530d97d8d5e2bcd351 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +ERROR[12-05|10:08:14.637] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:14.637] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:08:16.166] No broadcast received from sequencer, re-registering. component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p +ERROR[12-05|10:08:16.167] Failed to re-register for broadcasts component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p err="incoming P2P is disabled, can't register for broadcasts" +INFO [12-05|10:08:26.322] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=23 block_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:26.322] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:26.558] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x44dad3ddd9436dc2e2f6b7465991220233359c6c10a220ae69c66b88c84d5693 block_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=61 batch_height=60 rollup_idx=0 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=62 batch_height=61 rollup_idx=1 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=63 batch_height=62 rollup_idx=2 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=64 batch_height=63 rollup_idx=3 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=65 batch_height=64 rollup_idx=4 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=66 batch_height=65 rollup_idx=5 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=67 batch_height=66 rollup_idx=6 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=68 batch_height=67 rollup_idx=7 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=69 batch_height=68 rollup_idx=8 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=70 batch_height=69 rollup_idx=9 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=71 batch_height=70 rollup_idx=10 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=72 batch_height=71 rollup_idx=11 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=73 batch_height=72 rollup_idx=12 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=74 batch_height=73 rollup_idx=13 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=75 batch_height=74 rollup_idx=14 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=76 batch_height=75 rollup_idx=15 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=77 batch_height=76 rollup_idx=16 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=78 batch_height=77 rollup_idx=17 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=79 batch_height=78 rollup_idx=18 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=80 batch_height=79 rollup_idx=19 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=81 batch_height=80 rollup_idx=20 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=82 batch_height=81 rollup_idx=21 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=83 batch_height=82 rollup_idx=22 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=84 batch_height=83 rollup_idx=23 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:26.560] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8e4e832f1286a0588fd31b1779fd2870a7a183a89261b146d703d37ec3edebe8 +INFO [12-05|10:08:26.561] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4bcb335e8f017bbbbf36591915504b864fab34e63c76985105e4e298f156dd5e +INFO [12-05|10:08:26.562] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcc606b1307711bb781b7083c254fafd461787253bcfefe68f97bd1e3bdad8641 +INFO [12-05|10:08:26.566] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe, L2Head=73), Host(L1Head=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817, L2Head=72)" +INFO [12-05|10:08:26.570] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x68f2febf1c0595158211eb2db6026e611ff578073d7bf95b0ebea9140e037a5e +INFO [12-05|10:08:26.571] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xec1d5bc5b90efeb8def902a126855a9d4dbab7d2d2bb6bab55e38affc2f53b07 +INFO [12-05|10:08:26.573] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xfc7f5babde42eb27fa0d62c90bcf8351c770773761a398cca0ec1d423605ff5b +INFO [12-05|10:08:26.574] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xba5a5ae9601fc4de6e9e6242f5f4c93db5706437b915a3fd55c512b0fab4aebd +INFO [12-05|10:08:26.577] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe6f87b91bbaf2050f7498c735e584564520cbb13dd647053df826062f3db3045 +INFO [12-05|10:08:26.579] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xd82b8e93bbcd6da0939497f1f236734eef95fe700ffa4bd42525166983fe0dcf batch_seq_num=80 +INFO [12-05|10:08:26.580] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x945512b12c2bc555cd26509c05bdd73b8b0354ed86b58638f50dcb21281715ba +INFO [12-05|10:08:26.633] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x275f9eb995c495cf374ce6a9db0835e4be78b126caae8ab37f87e3243b0241de +INFO [12-05|10:08:26.634] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc17a83b46f765119503b5995e700b4ca5418c8ee38eb37dde957d48c2a5153e6 +INFO [12-05|10:08:26.643] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x20dd8cedd83fd2953a439f0650db497c800038f3a9128ebcdaf6bfbe4629f3ac +WARN [12-05|10:08:26.653] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=330.480125ms block_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:08:26.661] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817, L2Head=84), Host(L1Head=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817, L2Head=83)" +INFO [12-05|10:08:26.662] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=83 batch=0x3775faec8fe7707d794a14fea8f4e3ddea738c1b5d97e48fe8f6a0d78953e3a8 l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +ERROR[12-05|10:08:26.662] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:26.665] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:08:38.306] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=24 block_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:38.306] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:38.534] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x0438f4e7a1d665279152b903a512db360e688aa829f2e124ef0455ea09f80a8e block_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=73 batch_height=72 rollup_idx=0 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=74 batch_height=73 rollup_idx=1 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=75 batch_height=74 rollup_idx=2 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=76 batch_height=75 rollup_idx=3 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=77 batch_height=76 rollup_idx=4 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=78 batch_height=77 rollup_idx=5 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=79 batch_height=78 rollup_idx=6 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=80 batch_height=79 rollup_idx=7 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=81 batch_height=80 rollup_idx=8 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=82 batch_height=81 rollup_idx=9 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=83 batch_height=82 rollup_idx=10 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=84 batch_height=83 rollup_idx=11 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 +INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=85 batch_height=84 rollup_idx=12 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=86 batch_height=85 rollup_idx=13 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=87 batch_height=86 rollup_idx=14 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=88 batch_height=87 rollup_idx=15 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=89 batch_height=88 rollup_idx=16 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=90 batch_height=89 rollup_idx=17 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=91 batch_height=90 rollup_idx=18 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=92 batch_height=91 rollup_idx=19 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=93 batch_height=92 rollup_idx=20 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=94 batch_height=93 rollup_idx=21 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=95 batch_height=94 rollup_idx=22 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=96 batch_height=95 rollup_idx=23 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:38.535] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3cc670f3a6f70fa2a2958d10c72089e5c63cefa78be221f4389e2d877427eda6 +INFO [12-05|10:08:38.537] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6ba5d7c709e709c31dcee5197012ae2511e1e09578695c021d43a6870d622474 +INFO [12-05|10:08:38.538] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xfa1bd89fea5b74197ad3d0ae32257fd894042d64f4adf2519c1f18b9bf01649e +INFO [12-05|10:08:38.540] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x516a23583539426682105571e10f5c34aa8b1af996410d73a7f00fea2c795032 +INFO [12-05|10:08:38.541] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa6229f177e08596375f63c1c8b9e72fdc55d9c814017d7e0f4ce35324c26db44 +INFO [12-05|10:08:38.543] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x76c4fdf248929e12ebcf93980b9c64a2a386abf919a64e00c9bc4b945d3752be +INFO [12-05|10:08:38.544] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x4ec63248b7f7eba1f664ccc84bce00586d42f12e3256710d23e20bc6e494fb1a batch_seq_num=90 +INFO [12-05|10:08:38.544] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x41c8a4cc0282d43d97bc13a71afc073f271fc88033fa240ee6efccb15d4b430c +INFO [12-05|10:08:38.546] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2baf2cc5f36589bdb81322409ecd6cfadc80044d5c8989807da3455061e55ea0 +INFO [12-05|10:08:38.546] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817, L2Head=85), Host(L1Head=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0, L2Head=84)" +INFO [12-05|10:08:38.548] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc665e7488d8544ba1b937528d2ba73cba7678764290f31cac7ec8324c673200b +INFO [12-05|10:08:38.567] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xaa68139ce4b686602490e88341a99ff9fbb73ea599b5db87c09a9703598f063d +INFO [12-05|10:08:38.635] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x18b192b241acec6bff11b1ccf7e90f11c358d6a4cf2d5fe1d771bd3a4cfec5d1 +INFO [12-05|10:08:38.636] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcff1ec381fe45e2488bf450059f9355f9bf985d92f5fc7f9c66856bc94ff6e64 +WARN [12-05|10:08:38.637] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=330.408209ms block_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:08:38.638] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0, L2Head=96), Host(L1Head=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0, L2Head=95)" +INFO [12-05|10:08:38.639] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=95 batch=0xf323b8f8cb166c16c60ac84db898998b6d6575bdea2cd82a15566cdbc54593ed l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +ERROR[12-05|10:08:38.639] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:38.640] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:08:50.278] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=25 block_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:50.278] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:50.586] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x9929e7f484aa19420645789f75bb66be22ef26d0c99e418b1eb6b4c55812221a block_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=85 batch_height=84 rollup_idx=0 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=86 batch_height=85 rollup_idx=1 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=87 batch_height=86 rollup_idx=2 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=88 batch_height=87 rollup_idx=3 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=89 batch_height=88 rollup_idx=4 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=90 batch_height=89 rollup_idx=5 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=91 batch_height=90 rollup_idx=6 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=92 batch_height=91 rollup_idx=7 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=93 batch_height=92 rollup_idx=8 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=94 batch_height=93 rollup_idx=9 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=95 batch_height=94 rollup_idx=10 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=96 batch_height=95 rollup_idx=11 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 +INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=97 batch_height=96 rollup_idx=12 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=98 batch_height=97 rollup_idx=13 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=99 batch_height=98 rollup_idx=14 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=100 batch_height=99 rollup_idx=15 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=101 batch_height=100 rollup_idx=16 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=102 batch_height=101 rollup_idx=17 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=103 batch_height=102 rollup_idx=18 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=104 batch_height=103 rollup_idx=19 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=105 batch_height=104 rollup_idx=20 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=106 batch_height=105 rollup_idx=21 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=107 batch_height=106 rollup_idx=22 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=108 batch_height=107 rollup_idx=23 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:08:50.588] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x74e42d7149dd99eb62467537a6eb816c6317a9af0b582e63d2d59321ec59925d +INFO [12-05|10:08:50.590] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf7eae1b52aedbfdac922633dabd4ba1a901fa586abbf497bf21ef395ff67c26f +INFO [12-05|10:08:50.591] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0, L2Head=97), Host(L1Head=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047, L2Head=96)" +INFO [12-05|10:08:50.596] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8762433daf5fce3871414115f45296d8b42940b39947fcef42bc56c3efac1a37 +INFO [12-05|10:08:50.597] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7836a31339fd66f4e50491ed2d0d5acb84c4e8225823840bcd09afabc0f413e6 +INFO [12-05|10:08:50.598] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xa18526cf44dd12c7b0b001aa1a335fe2f4b4ed021d782bef3c5d64054bfcc666 batch_seq_num=100 +INFO [12-05|10:08:50.598] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9a4a3aaff3c8e63aed16c774058211523a41edf52eb0374d55f2d90b1e56fdb4 +INFO [12-05|10:08:50.600] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf4fca0f35db7d01f64a0be3efcee2caed2e3bd4210050f194ec052cec9a99da7 +INFO [12-05|10:08:50.617] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x24da0d510f6c245b3a880f4a322ac6ac4aef709d6092aa7f858da62bf00ecdb3 +INFO [12-05|10:08:50.623] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x91caf522213155349fdc74f333f6a3d5da33c5dc4b3bf47e3c1bcb5edf362b72 +INFO [12-05|10:08:50.624] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4cb22c5d50cad003693e31cf8f192def1aca9920e0d79be31c2f9978947b990a +INFO [12-05|10:08:50.626] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf7e7a1939b2d4b222998aeccc7a94209c1aa7e8bd865ec6c36f4d5a90061bbda +INFO [12-05|10:08:50.630] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2172549ca2d5e4ac6305984099be24424b30f70e62316031129aef32f6bedac0 +INFO [12-05|10:08:50.631] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7b6cdaf7b792e8dffb4216c6840ddee17a2e4c4db46d7bf64fd4bc608be449e8 +WARN [12-05|10:08:50.632] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=352.730292ms block_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:08:50.632] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047, L2Head=107), Host(L1Head=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047, L2Head=107)" +INFO [12-05|10:08:50.632] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=107 batch=0x3a46ad359ea8ac142aed3973883ce71e91fbed87ad4516901d60df2cb0fe8c9c l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +ERROR[12-05|10:08:50.632] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:08:50.632] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:09:02.327] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=26 block_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:02.327] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:02.890] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x825a375d9fbc85d67f5d669198fd4e74aadadb4013afd54535eda0e86bd9470c block_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=97 batch_height=96 rollup_idx=0 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=98 batch_height=97 rollup_idx=1 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=99 batch_height=98 rollup_idx=2 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=100 batch_height=99 rollup_idx=3 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=101 batch_height=100 rollup_idx=4 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=102 batch_height=101 rollup_idx=5 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=103 batch_height=102 rollup_idx=6 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=104 batch_height=103 rollup_idx=7 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=105 batch_height=104 rollup_idx=8 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=106 batch_height=105 rollup_idx=9 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=107 batch_height=106 rollup_idx=10 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=108 batch_height=107 rollup_idx=11 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=109 batch_height=108 rollup_idx=12 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=110 batch_height=109 rollup_idx=13 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=111 batch_height=110 rollup_idx=14 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=112 batch_height=111 rollup_idx=15 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=113 batch_height=112 rollup_idx=16 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=114 batch_height=113 rollup_idx=17 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=115 batch_height=114 rollup_idx=18 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.891] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=116 batch_height=115 rollup_idx=19 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.891] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=117 batch_height=116 rollup_idx=20 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.891] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=118 batch_height=117 rollup_idx=21 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.891] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=119 batch_height=118 rollup_idx=22 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.891] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=120 batch_height=119 rollup_idx=23 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:02.891] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x311daf0f599c23e81934db533d0d75d41d5c62fcb280911d5de361fbca5fa0b2 +INFO [12-05|10:09:02.892] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6625e5df29643b2516f41896e51ac94627b3e63bef597a1475d4767f4d88d6e5 +INFO [12-05|10:09:02.893] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047, L2Head=109), Host(L1Head=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640, L2Head=108)" +INFO [12-05|10:09:02.894] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x37bfc53e03a8b2ba4b75d8e2d00c30428a4454f68933097f2b8d7007e39a36d4 batch_seq_num=110 +INFO [12-05|10:09:02.894] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5fa4fd7ac4e98c0e43b36be8e60a391d56de0f07c207cb76d893cdd4a7ba6657 +INFO [12-05|10:09:02.896] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc162230b7db96585761fbe392d10e9b846067819c7bb805d28e1f215c32e6785 +INFO [12-05|10:09:02.898] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xab37cd06aa42175adeadcbbb0f81056662c68b340991438efbe7832b8a46a82b +INFO [12-05|10:09:02.899] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe1748dc8b991bbb11925eba64dbc54ea78b54fa54f8ba381fb6db5ef806f1654 +INFO [12-05|10:09:02.902] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x0db46de50c1c18aac965ca503c89154b1895afa59a435faf584c8cb63afa4afc +INFO [12-05|10:09:02.903] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x78d7b05126112591e2561275d2799e24d59792c84793bc757d39ecc2d4f24026 +INFO [12-05|10:09:02.905] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x74ea441c27057ef4481ff2514f7237cb17e5b087b7aa85713e1fa81a64651c32 +INFO [12-05|10:09:02.907] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7748ab7786bce4cbbcabf107416f29f8708150e024622dd7c863beca1e2ce6f3 +INFO [12-05|10:09:02.908] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8be1d3d5a2317818e472dddcef475b5870255ee61c7c9b04f0b6114dd772ad10 +INFO [12-05|10:09:02.909] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x097ad87fe3d68e347efefa52c97e2b1fca9767d1b5542c113f29922e10577edd +INFO [12-05|10:09:02.910] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xa6683b1d45731a16acde0b0bd745dcbfb262040bf61f572b213d4fa48c72ee7c batch_seq_num=120 +ERROR[12-05|10:09:02.910] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=582.302417ms block_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:02.910] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640, L2Head=119), Host(L1Head=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640, L2Head=119)" +INFO [12-05|10:09:02.911] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=119 batch=0xa6683b1d45731a16acde0b0bd745dcbfb262040bf61f572b213d4fa48c72ee7c l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +ERROR[12-05|10:09:02.911] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:09:02.911] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:09:14.247] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=27 block_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:14.247] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:14.462] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x3afcc127ca9c07cc93f9862e9f7ac29dcd4876fb21aa55ba8e482315f02031ce block_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=109 batch_height=108 rollup_idx=0 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=110 batch_height=109 rollup_idx=1 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=111 batch_height=110 rollup_idx=2 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=112 batch_height=111 rollup_idx=3 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=113 batch_height=112 rollup_idx=4 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=114 batch_height=113 rollup_idx=5 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=115 batch_height=114 rollup_idx=6 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=116 batch_height=115 rollup_idx=7 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=117 batch_height=116 rollup_idx=8 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=118 batch_height=117 rollup_idx=9 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=119 batch_height=118 rollup_idx=10 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=120 batch_height=119 rollup_idx=11 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=121 batch_height=120 rollup_idx=12 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=122 batch_height=121 rollup_idx=13 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=123 batch_height=122 rollup_idx=14 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=124 batch_height=123 rollup_idx=15 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=125 batch_height=124 rollup_idx=16 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=126 batch_height=125 rollup_idx=17 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=127 batch_height=126 rollup_idx=18 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=128 batch_height=127 rollup_idx=19 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=129 batch_height=128 rollup_idx=20 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=130 batch_height=129 rollup_idx=21 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=131 batch_height=130 rollup_idx=22 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=132 batch_height=131 rollup_idx=23 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:14.464] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7caa955f0827a20387e913ebd48dcd31a21e48217cf5e0ed2f2d699d338fb461 +INFO [12-05|10:09:14.465] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x02a299ab49b2d45465943a0852b89f3e05d269b6ef3ef62d890795e40cb0afb3 +INFO [12-05|10:09:14.467] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc31ddcbf8d1a148b237e1b94ad75fd280fda2091f044b040328b0d45dc8e1c78 +INFO [12-05|10:09:14.469] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640, L2Head=121), Host(L1Head=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df, L2Head=120)" +INFO [12-05|10:09:14.533] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb0d9d18b3aa758658ae4d3c4600e4aecf33d2b17d534f3552a44940f3e2f2517 +INFO [12-05|10:09:14.535] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1a7994fd1d74e86d61a55c3ebe1919a99c7e4cd827bc50b22aa65ed8f4153694 +INFO [12-05|10:09:14.536] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1119737378487e361e095045cd029dfa9341c918224495b282f94399e3899788 +INFO [12-05|10:09:14.539] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2dd63ae517032757e40c1c43aa05a6e75fbc64a121f8d20aeff491bd0fbfba23 +INFO [12-05|10:09:14.541] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd9cf6ca0aded6caca2a926fb4dc19d42f77720e254e90383a35c95bc3bb7c9ad +INFO [12-05|10:09:14.543] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa094f3238bd6401ffedef5588540b221dfba7ac6923201b606e3808cb93ba8a0 +INFO [12-05|10:09:14.545] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4edaefa978245a8e57573749d36f622094b5bd4fbff1c97b20b1cebc2016821a +INFO [12-05|10:09:14.546] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x7a1a0634d0caecbee41363fcd7c42d42d928ff3c9aa77676c9cd2bd1c08d8757 batch_seq_num=130 +INFO [12-05|10:09:14.546] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xfaf9bb358c74f87e09ffd52f44d2c5523904838c8620e7f6c246d142587b33d8 +INFO [12-05|10:09:14.548] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xfe4c181c1b9791538ed5c0d73c14dc98ede9b016993d443f8b918346be9b1a4f +WARN [12-05|10:09:14.549] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=301.04075ms block_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:09:14.549] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df, L2Head=127), Host(L1Head=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df, L2Head=127)" +INFO [12-05|10:09:14.551] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=127 batch=0xad119e0aeb19160c6650751ff527b1a99b6d90be50e48edf7fbea4fc07a448cb l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +ERROR[12-05|10:09:14.552] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:09:14.552] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:09:14.552] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=128 batch=0xfd8e0a08b60b19bf208f1de81f05cf3fc3f4eff578f8fde0862ec7752d005ca5 l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +ERROR[12-05|10:09:14.552] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:09:14.552] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:09:14.552] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=129 batch=0x7a1a0634d0caecbee41363fcd7c42d42d928ff3c9aa77676c9cd2bd1c08d8757 l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +ERROR[12-05|10:09:14.557] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:09:14.558] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:09:14.561] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=130 batch=0x4f3450c979da480f6b1f55b0e75a85ac2d36e51c6733fd5241024f2dcbd1d2bf l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +ERROR[12-05|10:09:14.561] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:09:14.567] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:09:14.570] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=131 batch=0x95ebf88846233ee7d5fdfb870b30d024e704bec0c3764d0450996b58cdc0de1d l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +ERROR[12-05|10:09:14.570] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:09:14.570] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:09:16.167] No broadcast received from sequencer, re-registering. component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p +ERROR[12-05|10:09:16.167] Failed to re-register for broadcasts component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p err="incoming P2P is disabled, can't register for broadcasts" +INFO [12-05|10:09:26.300] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=28 block_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:26.300] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:26.614] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xfed2d9e0c51a7a8ae46229207971d75df1b7f29c991bd820e7360ae2b3b5ef53 block_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=121 batch_height=120 rollup_idx=0 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=122 batch_height=121 rollup_idx=1 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=123 batch_height=122 rollup_idx=2 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=124 batch_height=123 rollup_idx=3 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=125 batch_height=124 rollup_idx=4 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=126 batch_height=125 rollup_idx=5 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=127 batch_height=126 rollup_idx=6 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=128 batch_height=127 rollup_idx=7 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=129 batch_height=128 rollup_idx=8 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=130 batch_height=129 rollup_idx=9 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=131 batch_height=130 rollup_idx=10 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=132 batch_height=131 rollup_idx=11 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=133 batch_height=132 rollup_idx=12 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=134 batch_height=133 rollup_idx=13 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=135 batch_height=134 rollup_idx=14 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=136 batch_height=135 rollup_idx=15 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=137 batch_height=136 rollup_idx=16 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=138 batch_height=137 rollup_idx=17 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=139 batch_height=138 rollup_idx=18 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=140 batch_height=139 rollup_idx=19 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=141 batch_height=140 rollup_idx=20 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=142 batch_height=141 rollup_idx=21 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=143 batch_height=142 rollup_idx=22 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=144 batch_height=143 rollup_idx=23 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:26.616] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7f651e9ef74e05e335b67a1b020367818d8887dcee4469632dc23d80f537a0a8 +INFO [12-05|10:09:26.617] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2c6588270212f5d819ab1bc6988e769ef6ce260f291be5f1fb3f6742686a938a +INFO [12-05|10:09:26.619] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df, L2Head=133), Host(L1Head=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1, L2Head=132)" +INFO [12-05|10:09:26.622] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x33c6d42324526b26c445907af98397818212cc131b2e9fede128bff29c58d96e +INFO [12-05|10:09:26.625] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x95acc78d1362a0898a4d85ea37616d029f2de7fdc6a5dd4f5d15116cf2d4fdf6 +INFO [12-05|10:09:26.627] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6abe363ed9195009dd0d8e686c69e92805ced689f279ef741c68bc91a077ddfb +INFO [12-05|10:09:26.628] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x0305602660e094f01435960e1ef093fe3f0ba3f4ebb0dc79a1d7e77c9089c6e3 +INFO [12-05|10:09:26.630] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xaa4096c661566e4a7f4ffccb0f13168ca27c2b6918ea8dc99d5bc533641364eb +INFO [12-05|10:09:26.632] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb60bfbe6ca1d60ae29208442c25563a55529a9f053bd5e0bde23ebf2f98aa8ac +INFO [12-05|10:09:26.634] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xf39041d9a5b0a356fdfe1de16b75b30ec4d38ecff34e03d6b90dd9c28f2037ae batch_seq_num=140 +INFO [12-05|10:09:26.634] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc0061f8294b9d4d653d1027515ee8b92079d1268f51fd509df576e49f0341165 +INFO [12-05|10:09:26.636] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2b4fd707ec56e2fd6de50dcc46aa873331e10535c53201769567dbcf5ac898b5 +INFO [12-05|10:09:26.637] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9a6b91ed5e8f02462fe09bdf86834b988ab77c47527f80c9562c4b03e5186dfc +INFO [12-05|10:09:26.639] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe12e9b082ced482bd2e3788440624c2a3ceabbee5b6e826aa5db07e82832fafa +WARN [12-05|10:09:26.640] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=339.618208ms block_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:09:26.640] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1, L2Head=141), Host(L1Head=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1, L2Head=141)" +INFO [12-05|10:09:26.641] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=141 batch=0xf198c66bfa792a0623de040e190691e4ab10ad51460876f06125292c0c3158ed l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +ERROR[12-05|10:09:26.641] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:09:26.642] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:09:26.643] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=142 batch=0xde66fbf0db05db34cbabf488b692fadda76ccc9df6c115cfaa15b2cdf5a94796 l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +ERROR[12-05|10:09:26.643] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:09:26.648] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:09:26.649] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=143 batch=0x1f3c3e7dbc228dc7ba24d6877cf8edf28c09042c7365e301df1ee80ac4c0348c l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +ERROR[12-05|10:09:26.649] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:09:26.650] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:09:38.295] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=29 block_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:38.298] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:38.625] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xf3911edc9373f0ef1d7199286f28e418d5578bef95e766ed8344d76d6017860b block_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=133 batch_height=132 rollup_idx=0 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=134 batch_height=133 rollup_idx=1 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=135 batch_height=134 rollup_idx=2 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=136 batch_height=135 rollup_idx=3 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=137 batch_height=136 rollup_idx=4 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=138 batch_height=137 rollup_idx=5 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=139 batch_height=138 rollup_idx=6 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=140 batch_height=139 rollup_idx=7 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=141 batch_height=140 rollup_idx=8 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=142 batch_height=141 rollup_idx=9 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=143 batch_height=142 rollup_idx=10 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=144 batch_height=143 rollup_idx=11 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=145 batch_height=144 rollup_idx=12 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=146 batch_height=145 rollup_idx=13 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=147 batch_height=146 rollup_idx=14 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=148 batch_height=147 rollup_idx=15 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=149 batch_height=148 rollup_idx=16 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=150 batch_height=149 rollup_idx=17 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=151 batch_height=150 rollup_idx=18 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=152 batch_height=151 rollup_idx=19 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=153 batch_height=152 rollup_idx=20 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=154 batch_height=153 rollup_idx=21 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=155 batch_height=154 rollup_idx=22 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=156 batch_height=155 rollup_idx=23 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:38.627] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x33cd0738029af9653cb5da41ba41140bc9cf525229600641c20e78aa947c1fd1 +INFO [12-05|10:09:38.629] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x34f2907485fee418249b407e4af2d99885c08fef220bbc553ab9cd38df37c6ce +INFO [12-05|10:09:38.633] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1, L2Head=145), Host(L1Head=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960, L2Head=144)" +INFO [12-05|10:09:38.633] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1f91972afba68549339e3519d5d5eece56d7dd1ad4b9ee67af89a712ae2feeea +INFO [12-05|10:09:38.639] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9d65d3da3bf0f3d2161b81b3d1614f6f11e9475a1f5b685da532ac31790dc0b9 +INFO [12-05|10:09:38.642] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xfa2649cb56614c9ad35866359a8c37995fad1cd0f29838cf4b7505f3c928fae3 +INFO [12-05|10:09:38.643] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xaf242afacbd9cf5aea2f370c3861a50862e6539104a11899174f552f6557c13d +INFO [12-05|10:09:38.644] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xc4bb2b77ed8f0c86a5a8b503f5359dff6fae8e2d1ec3574d0a9c5b0745b2e8d4 batch_seq_num=150 +INFO [12-05|10:09:38.645] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8d02c2b9d1f4bbda3e33905b26a4896e805032aa1f7873a6204ffcc3ce6e1027 +INFO [12-05|10:09:38.646] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x994b8184d0b47d4aee12ea23f3b28c46cd87bfe429fc7a736c786dd7af9c7a0c +INFO [12-05|10:09:38.647] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3c0d33c2ca61922075afeae03c1f1f5fcb46ddbfb33180e13be79f34fc36581b +INFO [12-05|10:09:38.649] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf857a6f456bfd61873f4ccb5da71a43087d5efb383934711f5b98cd29819e13f +INFO [12-05|10:09:38.650] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf8642156b3b36c980d800ca09f1f5cdc147e3e4a0e2e09a1da5e5108e58ea1b5 +INFO [12-05|10:09:38.651] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xccbc128e8bb9892f9cfaf2c6c3cebf0200edf1715555205e61123cb8c954b466 +WARN [12-05|10:09:38.652] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=353.225083ms block_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:09:38.653] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960, L2Head=156), Host(L1Head=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960, L2Head=155)" +INFO [12-05|10:09:38.659] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=155 batch=0xa6f6292aa5de45efdb427bbfbf6e779b053aaaa630ba07ef41290b72051d85d5 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +ERROR[12-05|10:09:38.659] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:09:38.661] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:09:50.275] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=30 block_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:50.275] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:50.569] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xe2a273ed6166d678d43b8f2f56ee67f657c93bc7f697a7c6d2aa943bec6c4a89 block_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:50.569] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=145 batch_height=144 rollup_idx=0 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.569] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=146 batch_height=145 rollup_idx=1 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.569] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=147 batch_height=146 rollup_idx=2 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.569] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=148 batch_height=147 rollup_idx=3 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.569] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=149 batch_height=148 rollup_idx=4 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.569] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=150 batch_height=149 rollup_idx=5 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.569] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=151 batch_height=150 rollup_idx=6 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=152 batch_height=151 rollup_idx=7 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=153 batch_height=152 rollup_idx=8 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=154 batch_height=153 rollup_idx=9 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=155 batch_height=154 rollup_idx=10 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=156 batch_height=155 rollup_idx=11 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=157 batch_height=156 rollup_idx=12 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=158 batch_height=157 rollup_idx=13 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=159 batch_height=158 rollup_idx=14 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=160 batch_height=159 rollup_idx=15 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=161 batch_height=160 rollup_idx=16 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=162 batch_height=161 rollup_idx=17 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=163 batch_height=162 rollup_idx=18 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=164 batch_height=163 rollup_idx=19 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=165 batch_height=164 rollup_idx=20 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=166 batch_height=165 rollup_idx=21 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=167 batch_height=166 rollup_idx=22 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=168 batch_height=167 rollup_idx=23 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:09:50.570] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x05ff19b15518ca67fe16cd35a05193f0caa76e5676841a0b5ddac1f14a9ea789 +INFO [12-05|10:09:50.572] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf39ce83764ef6971c406a040faa873c661133970792d434bbd9a46c28b802716 +INFO [12-05|10:09:50.575] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x02725d2f154b068f80eafca6398e82dbcc7fa24aafa72d6526217681f5ce08dc +INFO [12-05|10:09:50.578] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf8b8685903f35450feff790aed590f4d1c8bb02378845be745d7e35a1e7ad92c +INFO [12-05|10:09:50.582] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960, L2Head=157), Host(L1Head=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113, L2Head=156)" +INFO [12-05|10:09:50.584] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x8b4126d28c57b0db793e691801e0287cd6d9809ee37d7cd93a5b0eafc0f4cb01 batch_seq_num=160 +INFO [12-05|10:09:50.584] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9fa8f71ca8300c6282d1975b39edea60984ed5616ad486fda7d9b1d625886ac3 +INFO [12-05|10:09:50.586] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x88f9ac4c5cedf24b9b5b7f50219a99c681b199f61f90451454b45fc7f9f4af1e +INFO [12-05|10:09:50.587] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1857567089712c1cc78f876d19f77000313d8d9a76db345039b9864f58c63295 +INFO [12-05|10:09:50.588] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xff029a8017a1b683617a19998b04aa03dd29668729fdf056e90b253355097d5d +INFO [12-05|10:09:50.590] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x80b14e55ae6575bd99b43351cc6478e820add2726a09d574fba7d7e9d1d43d28 +INFO [12-05|10:09:50.591] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3c7fad989071c58884ad86e1949f5e567ac87b7defdcd0d7c06b5fe8dd324bbe +INFO [12-05|10:09:50.592] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x192b200a0cb7c2f3420b978a55865d7a3d27182cb65dc1199de07cab2cf18595 +INFO [12-05|10:09:50.594] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x49d9bd5de0ebf390e842e5d4ef69c126a3e93d758abedae4257809c5bff49669 +WARN [12-05|10:09:50.595] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=319.549542ms block_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:09:50.596] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113, L2Head=168), Host(L1Head=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113, L2Head=167)" +INFO [12-05|10:09:50.600] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=167 batch=0x9d320ded7e802811d071e41e0d51a44dde6377c23e26b80f8836ed3a28869c96 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +ERROR[12-05|10:09:50.601] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:09:50.603] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:09:50.603] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=156 batch=0xef32fec7769caf48d6e7cfafd199debe6114f6401c398747a34d4a5c0e0a205c l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +ERROR[12-05|10:09:50.604] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:09:50.604] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:10:02.268] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=31 block_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:02.268] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:02.632] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x60f08f639fc30a135c9a5a37e73d1cf7aae0d4ecd998ee9504ca15b9066eca4f block_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=157 batch_height=156 rollup_idx=0 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=158 batch_height=157 rollup_idx=1 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=159 batch_height=158 rollup_idx=2 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=160 batch_height=159 rollup_idx=3 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=161 batch_height=160 rollup_idx=4 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=162 batch_height=161 rollup_idx=5 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=163 batch_height=162 rollup_idx=6 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=164 batch_height=163 rollup_idx=7 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=165 batch_height=164 rollup_idx=8 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=166 batch_height=165 rollup_idx=9 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=167 batch_height=166 rollup_idx=10 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=168 batch_height=167 rollup_idx=11 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=169 batch_height=168 rollup_idx=12 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=170 batch_height=169 rollup_idx=13 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=171 batch_height=170 rollup_idx=14 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=172 batch_height=171 rollup_idx=15 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=173 batch_height=172 rollup_idx=16 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=174 batch_height=173 rollup_idx=17 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=175 batch_height=174 rollup_idx=18 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=176 batch_height=175 rollup_idx=19 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=177 batch_height=176 rollup_idx=20 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=178 batch_height=177 rollup_idx=21 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=179 batch_height=178 rollup_idx=22 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=180 batch_height=179 rollup_idx=23 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:02.633] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4ff4a70250b8c67d368b209ab7293be7bcba761e239e2d8307fe3280a9cf554c +INFO [12-05|10:10:02.643] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8ca11b2bc5516fd0f14bc0a74023f039c324efa778df8234a10d4e1d5415ee7f +INFO [12-05|10:10:02.644] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x986d0c283dffab6e003c01e0f59ba5ffcf8c9ac992ae56e309c3a0e4cfecb500 batch_seq_num=170 +INFO [12-05|10:10:02.645] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8690b4e634629f0c9304b3d3676231f081058357d677d99dc5e0223fe526ebc1 +INFO [12-05|10:10:02.647] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9f538452d61d9cfc7390d0fbd3e953ffe5c38c7982858c894cc80b6c0429624e +INFO [12-05|10:10:02.647] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113, L2Head=169), Host(L1Head=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c, L2Head=157)" +INFO [12-05|10:10:02.649] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9e33f35971a4308b2cddffe8baa3454eea90ca53658669b1837594b56ba81f26 +INFO [12-05|10:10:02.650] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x305b1a4c86cd4c343192f8864062787db3e09e5749b1fa82bcf9bd02825c5e5e +INFO [12-05|10:10:02.652] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf591b01ba59fe98b282d344f0f933b189ba1eebbaed40728cee0863407c0cb85 +INFO [12-05|10:10:02.653] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5bf2c54237d6bfef08a53fa164571e8778884db1ce4787bbaffee9c70beb148b +INFO [12-05|10:10:02.655] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5cb5d83ec6fa371b2e07187ae719e6cf7fa061806ea1e5a45037f82c9493afea +INFO [12-05|10:10:02.671] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5ddd29e7bc04ddc97aaa523ec0dba367f30386706ce56beffbeb0304f582b047 +INFO [12-05|10:10:02.701] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbf4fb32af6def38d86e7b6dc4322e7c16cfe2a98cdf4bd4958b42977e7799a03 +INFO [12-05|10:10:02.703] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xda5ba7cb1cf371e878196f81113e56fbe7f822ea026ec2e1fa175b8bb3570cf1 +INFO [12-05|10:10:02.713] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xd20663294b71943045ad0f5ca5c238ffb10407b4ae4b8aacb3242b03f5b8139b batch_seq_num=180 +WARN [12-05|10:10:02.716] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=448.334334ms block_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:02.725] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c, L2Head=180), Host(L1Head=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c, L2Head=179)" +INFO [12-05|10:10:02.727] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=179 batch=0xd20663294b71943045ad0f5ca5c238ffb10407b4ae4b8aacb3242b03f5b8139b l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +ERROR[12-05|10:10:02.727] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:10:02.727] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:10:14.310] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=32 block_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:14.310] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:14.663] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xd2167ce94d923b438cb4710fea5142409e5e15979d44f3f961a912c3298a93c2 block_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=169 batch_height=168 rollup_idx=0 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=170 batch_height=169 rollup_idx=1 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=171 batch_height=170 rollup_idx=2 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=172 batch_height=171 rollup_idx=3 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=173 batch_height=172 rollup_idx=4 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=174 batch_height=173 rollup_idx=5 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=175 batch_height=174 rollup_idx=6 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=176 batch_height=175 rollup_idx=7 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=177 batch_height=176 rollup_idx=8 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=178 batch_height=177 rollup_idx=9 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=179 batch_height=178 rollup_idx=10 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=180 batch_height=179 rollup_idx=11 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=181 batch_height=180 rollup_idx=12 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=182 batch_height=181 rollup_idx=13 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=183 batch_height=182 rollup_idx=14 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=184 batch_height=183 rollup_idx=15 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=185 batch_height=184 rollup_idx=16 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=186 batch_height=185 rollup_idx=17 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=187 batch_height=186 rollup_idx=18 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=188 batch_height=187 rollup_idx=19 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=189 batch_height=188 rollup_idx=20 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=190 batch_height=189 rollup_idx=21 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=191 batch_height=190 rollup_idx=22 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=192 batch_height=191 rollup_idx=23 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:14.664] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x48ce15fec5fcee6b17e0e9c30b7b8e33a5821e14d51c6735d57eba96a6ac95fd +INFO [12-05|10:10:14.665] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xebb18d4c46dcf15fe06ff4c9cfa81eb743b96eeca84fa1cb326d0c1a4548a0ec +INFO [12-05|10:10:14.667] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x09f2e70fcce9bb064fa07b495a5737c9a55a8a2e8011debfb03512818f1d0c46 +INFO [12-05|10:10:14.667] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c, L2Head=181), Host(L1Head=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176, L2Head=180)" +INFO [12-05|10:10:14.668] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa226984ebb3929aff5acd6378a0d6b4a92e6f5a8a4562033e12aa2cd872d8818 +INFO [12-05|10:10:14.671] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x412770cd8d6706d31afed240848aaee295c585e2ce863920a5505d15e25fb82c +INFO [12-05|10:10:14.672] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x638cc7be11c5b11eda2913219e947e5a29dbb3558303f33c679e5f009cb47402 +INFO [12-05|10:10:14.673] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8ce14712326b67ac089ce4794ae015fe883f81763b4f81242ded1d9495b43b37 +INFO [12-05|10:10:14.674] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb6c67e8ef6ff829dfeba103dd20754277654e2dacf5ae78c7f529b6ad7ffc0e9 +INFO [12-05|10:10:14.676] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x066e3ad8adc71dcce3e6680f3e33c8dfd1d16f0e3d932af98cbaffe572a66abf +INFO [12-05|10:10:14.678] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8d797206bbe700c9efcc8fb08ee99091ea79cf4010f4d72f39a93eb0c6b7cb3b +INFO [12-05|10:10:14.680] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x704e376128c11876959fe23fd700e81aae1deec11a25d971e43af8d4822d5122 batch_seq_num=190 +INFO [12-05|10:10:14.681] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x39cdd4d832e90cbd4d96c406a0f034a17d8241613a487ad2b17295eb7dcef95a +INFO [12-05|10:10:14.682] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x40327bbc55a2b2248fe3ef69f02b3787f82b8bdfc1c712b0ba93257b79baaff3 +WARN [12-05|10:10:14.683] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=371.826917ms block_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:10:14.683] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176, L2Head=192), Host(L1Head=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176, L2Head=192)" +INFO [12-05|10:10:16.167] No broadcast received from sequencer, re-registering. component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p +ERROR[12-05|10:10:16.168] Failed to re-register for broadcasts component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p err="incoming P2P is disabled, can't register for broadcasts" +INFO [12-05|10:10:26.290] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=33 block_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:26.290] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:26.625] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x3c025e8b194073e7b70a2aa939a2861dba9a40020a5a4d1a0c208259ee64dcc6 block_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:26.625] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=181 batch_height=180 rollup_idx=0 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.625] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=182 batch_height=181 rollup_idx=1 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.625] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=183 batch_height=182 rollup_idx=2 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.625] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=184 batch_height=183 rollup_idx=3 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.625] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=185 batch_height=184 rollup_idx=4 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.625] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=186 batch_height=185 rollup_idx=5 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.625] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=187 batch_height=186 rollup_idx=6 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.625] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=188 batch_height=187 rollup_idx=7 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=189 batch_height=188 rollup_idx=8 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=190 batch_height=189 rollup_idx=9 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=191 batch_height=190 rollup_idx=10 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=192 batch_height=191 rollup_idx=11 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 +INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=193 batch_height=192 rollup_idx=12 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=194 batch_height=193 rollup_idx=13 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=195 batch_height=194 rollup_idx=14 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=196 batch_height=195 rollup_idx=15 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=197 batch_height=196 rollup_idx=16 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=198 batch_height=197 rollup_idx=17 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=199 batch_height=198 rollup_idx=18 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=200 batch_height=199 rollup_idx=19 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=201 batch_height=200 rollup_idx=20 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=202 batch_height=201 rollup_idx=21 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=203 batch_height=202 rollup_idx=22 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=204 batch_height=203 rollup_idx=23 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:26.626] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd271cdd114bae73b4aa56b9fe920409d808dd00bc6b331e62bb2d4c0c1ab9260 +INFO [12-05|10:10:26.629] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1e3d6cd90acbf7fd196147b9767a6e598ce4b8b2e1604223c77a8ea6d1ef75fa +INFO [12-05|10:10:26.630] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176, L2Head=193), Host(L1Head=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe, L2Head=192)" +INFO [12-05|10:10:26.630] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xaec1e540a4b9906dcb17e7b3fae6773ce07eceb9403258484584660f328ee653 +INFO [12-05|10:10:26.632] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbeb559d0029b783b17909e11f8611c7bfb80e84a69c06bb996493d6356ec5ee0 +INFO [12-05|10:10:26.634] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x67ff18e24ec8bb97b1aa38a1b43e61fd67f18ea45d4b7fe53411cb57721bea5d +INFO [12-05|10:10:26.635] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8951abf58638c26d96ebad03fc8dd52400680756176c396e038b00bf05fcda56 +INFO [12-05|10:10:26.636] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc6ae2586e8aec8e034e42228f45ed71e789cd1eb5fc56b0d103078c674b6c78a +INFO [12-05|10:10:26.637] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb2dc56462bcb603cb3703d11bc818d595f492ca1820941135f29505df7e75752 +INFO [12-05|10:10:26.638] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x8cb4a5e9886e6a44a3cfad1d079b9f02744e7da72adc4792a4897f2139d5bb85 batch_seq_num=200 +INFO [12-05|10:10:26.638] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbb24f8726a99cb7008fe3dcab3cc4ad4df221839ca996cc71b688e8e0d7f4e5e +INFO [12-05|10:10:26.640] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x30b4fa8e955a4fa36ebd05019cf005c7d9328baa5d0ae7bc2b2922f18543648a +INFO [12-05|10:10:26.642] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1c61f75bf5d650a59c7931994c8f235402d742d0e129453e8e88223a7667a81e +INFO [12-05|10:10:26.644] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8e2b3b2106b20e83941b45fd807ddea8e136cb91bf93fccf745a8a18c19d23f7 +WARN [12-05|10:10:26.646] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=354.804833ms block_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:10:26.646] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe, L2Head=204), Host(L1Head=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe, L2Head=204)" +INFO [12-05|10:10:38.331] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=34 block_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:38.331] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:38.678] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x3eef394156074cf235cbfb02cbe18515d67cd7f9816ce1f277d79bb6b9da3c4f block_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=193 batch_height=192 rollup_idx=0 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=194 batch_height=193 rollup_idx=1 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=195 batch_height=194 rollup_idx=2 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=196 batch_height=195 rollup_idx=3 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=197 batch_height=196 rollup_idx=4 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=198 batch_height=197 rollup_idx=5 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=199 batch_height=198 rollup_idx=6 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=200 batch_height=199 rollup_idx=7 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=201 batch_height=200 rollup_idx=8 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=202 batch_height=201 rollup_idx=9 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=203 batch_height=202 rollup_idx=10 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=204 batch_height=203 rollup_idx=11 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=205 batch_height=204 rollup_idx=12 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=206 batch_height=205 rollup_idx=13 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=207 batch_height=206 rollup_idx=14 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=208 batch_height=207 rollup_idx=15 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=209 batch_height=208 rollup_idx=16 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=210 batch_height=209 rollup_idx=17 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=211 batch_height=210 rollup_idx=18 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=212 batch_height=211 rollup_idx=19 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=213 batch_height=212 rollup_idx=20 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=214 batch_height=213 rollup_idx=21 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=215 batch_height=214 rollup_idx=22 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=216 batch_height=215 rollup_idx=23 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:38.680] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb9ed2fd7b728cc32ba4736ec35c75d4a844cd2b1b3a09d45e7aee08933ffc14b +INFO [12-05|10:10:38.681] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb442f2c428decf568414c11ccce98fb1effb9d4572a435184c9222ca68fc79e5 +INFO [12-05|10:10:38.681] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe, L2Head=205), Host(L1Head=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db, L2Head=204)" +INFO [12-05|10:10:38.682] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd5852a454e36b1b075d43621ae51d4750a30f83fa3e6b0d6ec5b5a498e0f64c9 +INFO [12-05|10:10:38.683] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x38737cb8cef38800302842b7aa6a4e27621d6055b6bf65f2e6ea725f5d9a3d93 +INFO [12-05|10:10:38.685] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3e9560cb0f04f6ccc544da9f4e684c388717a40f1ce10947a9655de0a8d93b1f +INFO [12-05|10:10:38.686] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc817bcb46815106ab45929ab771dc409a715e9ed80838a7a0ed130ba455a8601 +INFO [12-05|10:10:38.687] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xaf7fc54018e32fcc3e7ed531f7485bf3a2ba70aa5c06b151cddcdc5df0ccd2bc batch_seq_num=210 +INFO [12-05|10:10:38.687] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe8d88a154e58ab8b5f5a42594e4a76350b4a5791fc03794246fa2aa0a95ba002 +INFO [12-05|10:10:38.689] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xff369fccb65cbe5e07635344e62bec016942bd8a0496f6ca24a95bf5933d5309 +INFO [12-05|10:10:38.691] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbe9597d754213ccef19d61009d693636a41cbde3be77cb2efda8f4759d174c78 +INFO [12-05|10:10:38.694] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x264c186275becc91e4b30f9ec570719c102d3d51ae7f4879ae3c9eefabc32840 +INFO [12-05|10:10:38.696] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc77e2cc99bceb3b331469e64538fcef4306c47a0662e5a61c2c0713053946461 +INFO [12-05|10:10:38.698] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe07839e06cb6a85a307dc3c0bcd542210189b7b20994cab6544efceee378637b +WARN [12-05|10:10:38.699] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=367.371792ms block_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:10:38.699] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db, L2Head=215), Host(L1Head=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db, L2Head=215)" +INFO [12-05|10:10:38.699] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=215 batch=0xe3154d500e02feebd069069ad9a42abb2a341ddf964cd58c320fb0d78fe97574 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +ERROR[12-05|10:10:38.699] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:10:38.700] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:10:50.309] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=35 block_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:50.322] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:50.817] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x29b7a866442011a36b2400e849dcbb9acaba94e29adcf593183e34bb132b5937 block_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=205 batch_height=204 rollup_idx=0 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=206 batch_height=205 rollup_idx=1 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=207 batch_height=206 rollup_idx=2 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=208 batch_height=207 rollup_idx=3 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=209 batch_height=208 rollup_idx=4 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=210 batch_height=209 rollup_idx=5 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=211 batch_height=210 rollup_idx=6 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=212 batch_height=211 rollup_idx=7 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=213 batch_height=212 rollup_idx=8 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=214 batch_height=213 rollup_idx=9 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=215 batch_height=214 rollup_idx=10 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=216 batch_height=215 rollup_idx=11 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=217 batch_height=216 rollup_idx=12 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=218 batch_height=217 rollup_idx=13 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=219 batch_height=218 rollup_idx=14 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=220 batch_height=219 rollup_idx=15 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=221 batch_height=220 rollup_idx=16 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=222 batch_height=221 rollup_idx=17 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=223 batch_height=222 rollup_idx=18 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=224 batch_height=223 rollup_idx=19 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=225 batch_height=224 rollup_idx=20 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=226 batch_height=225 rollup_idx=21 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=227 batch_height=226 rollup_idx=22 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=228 batch_height=227 rollup_idx=23 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:10:50.819] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcde7805abe3fd5673d9aaef0a01f71bf0be6837b53b99670153f8948cb74b441 +INFO [12-05|10:10:50.825] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1745f48aeca3ffcd8f17e17fe27a277b090468aeb5b451e28ed6d7cb91e69e7a +INFO [12-05|10:10:50.828] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db, L2Head=217), Host(L1Head=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77, L2Head=216)" +INFO [12-05|10:10:50.830] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x75716fb46a2120865bcfc726bfa3df8daee7efd86ad8ba657bf3567e51b0c323 +INFO [12-05|10:10:50.834] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe90771d324845b274cda659d4a25689cd327dfd7ae4893c4d13c1f8a9f1586ba +INFO [12-05|10:10:50.835] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xe1751f517c70f2c85421be1bec57c0f2c40081ccc37f862e90337443920780e5 batch_seq_num=220 +INFO [12-05|10:10:50.835] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x353d7c5c48dc6520b6ebfddb999444c8895aa7789eaef8ce73fcb0fabe937bd7 +INFO [12-05|10:10:50.837] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xdde8dc293f048e200c09f1118ea037dde79820f83f59b6e6c0f7112a781816e0 +INFO [12-05|10:10:50.838] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xfe74fc13d66bdd516ac0ebc9ea3b5bab08923337dd2524fbffb0f7afd1f94100 +INFO [12-05|10:10:50.840] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x31e873ca9d0ef433c6e8807961ef9100539d331c9e6ebbefac910aadfc935d22 +INFO [12-05|10:10:50.841] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x996494480a37096bb4222847c52ec974ce652bb12b636075b250119ff0bb4d13 +INFO [12-05|10:10:50.843] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3e0a5efcfdaf478153a3ab00c4931bcaff9cdc75feb8c0fe089155e1bfc9c28c +INFO [12-05|10:10:50.844] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x647610292e7f344675521bac82afee6d71e85231d8a4f838111348a8718d35e2 +INFO [12-05|10:10:50.846] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3e40b00289ab8b1b32f2c2c8f724c0f38a6f80c2abaf2f7ba92ade43643d6acb +ERROR[12-05|10:10:50.847] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=522.230125ms block_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:10:50.847] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77, L2Head=227), Host(L1Head=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77, L2Head=227)" +INFO [12-05|10:10:50.847] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=227 batch=0xa7b068cbe19569e41969e4a13de75c028ec1daed646d91b3de85e0b649d6c6c9 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +ERROR[12-05|10:10:50.847] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:10:50.847] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:11:02.285] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=36 block_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:02.285] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:02.572] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x01ce8d23c079ad83a535249329f9b705ebf80317c8e0956b88c75b5d317a7a6e block_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=217 batch_height=216 rollup_idx=0 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=218 batch_height=217 rollup_idx=1 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=219 batch_height=218 rollup_idx=2 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=220 batch_height=219 rollup_idx=3 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=221 batch_height=220 rollup_idx=4 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=222 batch_height=221 rollup_idx=5 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=223 batch_height=222 rollup_idx=6 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=224 batch_height=223 rollup_idx=7 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=225 batch_height=224 rollup_idx=8 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=226 batch_height=225 rollup_idx=9 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=227 batch_height=226 rollup_idx=10 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=228 batch_height=227 rollup_idx=11 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=229 batch_height=228 rollup_idx=12 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=230 batch_height=229 rollup_idx=13 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=231 batch_height=230 rollup_idx=14 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=232 batch_height=231 rollup_idx=15 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=233 batch_height=232 rollup_idx=16 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=234 batch_height=233 rollup_idx=17 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.573] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=235 batch_height=234 rollup_idx=18 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.573] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=236 batch_height=235 rollup_idx=19 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.573] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=237 batch_height=236 rollup_idx=20 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.573] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=238 batch_height=237 rollup_idx=21 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.573] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=239 batch_height=238 rollup_idx=22 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.573] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=240 batch_height=239 rollup_idx=23 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:02.573] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc4ae1ccc574111e5a5eb0e6c713349efeb7fdd91da31ec656f0c436f4f00e233 +INFO [12-05|10:11:02.575] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7a2fb40bb0bacdad2d0d5a9474b8cca28af1b546e02e7ca0feb6068633acf737 +INFO [12-05|10:11:02.576] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x04825c0c189b4e8be8eb4cf4677f16ef7b02fc0b7df26b0d403ea7547e5c89e1 batch_seq_num=230 +INFO [12-05|10:11:02.576] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd6badba0fa2f3cbcdb01d6b9768e766df971e5e92c59a22206955268f430fad5 +INFO [12-05|10:11:02.577] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xad3b50394da80c07e324f4a5c00abd1b1c17865c73789ba2b6e3d8e8b4003ba5 +INFO [12-05|10:11:02.580] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77, L2Head=229), Host(L1Head=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67, L2Head=228)" +INFO [12-05|10:11:02.583] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xffc4af73416156d9239e69eb1bb4db07406bf4de904b4688c023af4353c26346 +INFO [12-05|10:11:02.620] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x196bef3f1df8e5370ae790eb2175b2e62bed02f91e1a9b9fdf363f28ef198ffd +INFO [12-05|10:11:02.651] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x0072808f9c885d51c731c4bde7631d62bbe4e73030821a0fcfc1604d02b0a3e6 +INFO [12-05|10:11:02.662] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa0426fa30efa72e6dac1aa0c0d85bd5fe440cd01a5d513a5b992d241641f2aa5 +INFO [12-05|10:11:02.664] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x23b72cc76d5b3d036af15274f099c99e271b4cd0905096853aee20cddecb5aae +INFO [12-05|10:11:02.673] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xfafbdaab12347c4335dacba4d3d419c63e641c5383acba02c6fa9ff5d8b87c21 +INFO [12-05|10:11:02.675] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5886261b64bb50572648ec23c9efa057c0f458a624114ba8780005cf4efaed4b +INFO [12-05|10:11:02.676] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf970b0f931d82041c5a18b87dcf8133584598c0d04ab77d6e6a41b6636d1c100 +INFO [12-05|10:11:02.677] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xdec845b560b6633af5f1f227817c675a85bc9c03db7d00f60b9875bd6fc5cd6e batch_seq_num=240 +WARN [12-05|10:11:02.677] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=391.25475ms block_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:02.678] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67, L2Head=239), Host(L1Head=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67, L2Head=239)" +INFO [12-05|10:11:02.678] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=239 batch=0xdec845b560b6633af5f1f227817c675a85bc9c03db7d00f60b9875bd6fc5cd6e l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +ERROR[12-05|10:11:02.678] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:11:02.678] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:11:14.292] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67, L2Head=240), Host(L1Head=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b, L2Head=240)" +INFO [12-05|10:11:14.302] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=37 block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:14.302] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:14.642] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x49fcef6adafda45929d99de55937e7892ee71e76b3d1384eca4168149e2b3a9e block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=229 batch_height=228 rollup_idx=0 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=230 batch_height=229 rollup_idx=1 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=231 batch_height=230 rollup_idx=2 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=232 batch_height=231 rollup_idx=3 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=233 batch_height=232 rollup_idx=4 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=234 batch_height=233 rollup_idx=5 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=235 batch_height=234 rollup_idx=6 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=236 batch_height=235 rollup_idx=7 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=237 batch_height=236 rollup_idx=8 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=238 batch_height=237 rollup_idx=9 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=239 batch_height=238 rollup_idx=10 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=240 batch_height=239 rollup_idx=11 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=241 batch_height=240 rollup_idx=12 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=242 batch_height=241 rollup_idx=13 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=243 batch_height=242 rollup_idx=14 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=244 batch_height=243 rollup_idx=15 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=245 batch_height=244 rollup_idx=16 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=246 batch_height=245 rollup_idx=17 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=247 batch_height=246 rollup_idx=18 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=248 batch_height=247 rollup_idx=19 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=249 batch_height=248 rollup_idx=20 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.643] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=250 batch_height=249 rollup_idx=21 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.643] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=251 batch_height=250 rollup_idx=22 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.643] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=252 batch_height=251 rollup_idx=23 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:14.643] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc468803fbcea95144af1ffd15221639c1c997f3d9b2ef0f587547a4795d20b35 +INFO [12-05|10:11:14.646] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5d3fc2437fd9099dc47a075b35fada23bf057228f0508b7dc254bc46c1c97537 +INFO [12-05|10:11:14.648] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x783d86333a75d5f91054beac25eff322c1ae9b1aa8ddd28ec41adcea83a8712b +INFO [12-05|10:11:14.657] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x98fb4caed5213b343d50f9cf0e6a9ed624331451d65c4ffb88ccf9b5aecf800c +INFO [12-05|10:11:14.659] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc84e603d5851c0870ede1382ff13c7f5f492015662d83604d2019ad77cb5b417 +INFO [12-05|10:11:14.660] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7c6730c7d1b9365a8e518c401526990147c55c0a7a059ce5ad34ff518afbc35a +INFO [12-05|10:11:14.673] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x304081cc4508e98fe041adc05927ef8d42e436c2066007b9d1aac7e8ac8fa06f +INFO [12-05|10:11:14.674] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf9854d0219a47f0a7e899a1ca09d150fdd86c0ec38c72b19fc0630d250d0bef3 +INFO [12-05|10:11:14.676] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xccde03e1b563a5432de723424b4b70cc928e261bcaaf63e4d79ee892980b3e43 +INFO [12-05|10:11:14.677] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3f4eb20365ed4b159ac5b7c31ff40918e355f7ce422945904d126256024a6ac7 +INFO [12-05|10:11:14.679] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xa27a7f4accb66c396cf5dbdf7e5984a34143c681c7960717ffd75992143f3bcb batch_seq_num=250 +INFO [12-05|10:11:14.680] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd08b299fc0688de4ccf32df83a50725ea8a9a4f3f895bc4e5c598b436e871e92 +INFO [12-05|10:11:14.681] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa35a75c3a1a43e9475ccb9b4e3f3128207cf87741883645876dead8d6b8476c3 +WARN [12-05|10:11:14.682] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=379.321458ms block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:11:14.683] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b, L2Head=252), Host(L1Head=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b, L2Head=251)" +INFO [12-05|10:11:14.684] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=251 batch=0xb34c95bf04f00c2a8f7ebbaad4e4f390acfb41f31886a1e8c048692793ae881a l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +ERROR[12-05|10:11:14.684] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:11:14.685] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:11:16.168] No broadcast received from sequencer, re-registering. component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p +ERROR[12-05|10:11:16.168] Failed to re-register for broadcasts component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p err="incoming P2P is disabled, can't register for broadcasts" +INFO [12-05|10:11:26.286] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=38 block_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:26.286] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:26.680] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xed5eedbfa33185828ab454ce1a25e5524f8108477fea9697d008e80e4c529815 block_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=241 batch_height=240 rollup_idx=0 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=242 batch_height=241 rollup_idx=1 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=243 batch_height=242 rollup_idx=2 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=244 batch_height=243 rollup_idx=3 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=245 batch_height=244 rollup_idx=4 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=246 batch_height=245 rollup_idx=5 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=247 batch_height=246 rollup_idx=6 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=248 batch_height=247 rollup_idx=7 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=249 batch_height=248 rollup_idx=8 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=250 batch_height=249 rollup_idx=9 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=251 batch_height=250 rollup_idx=10 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=252 batch_height=251 rollup_idx=11 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe +INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=253 batch_height=252 rollup_idx=12 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=254 batch_height=253 rollup_idx=13 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=255 batch_height=254 rollup_idx=14 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=256 batch_height=255 rollup_idx=15 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=257 batch_height=256 rollup_idx=16 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=258 batch_height=257 rollup_idx=17 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=259 batch_height=258 rollup_idx=18 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=260 batch_height=259 rollup_idx=19 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=261 batch_height=260 rollup_idx=20 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=262 batch_height=261 rollup_idx=21 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=263 batch_height=262 rollup_idx=22 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=264 batch_height=263 rollup_idx=23 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:26.681] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb4931e63569ec4df969e119cb14cdb8801ee890a145b93cc32b57104b869b9bd +INFO [12-05|10:11:26.686] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcd2c93e1066a728cd6f6ef6eb385fac36a4275b30720bf5bc0cd90853732f08e +INFO [12-05|10:11:26.689] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x226aec5908a5246184897012e3bcb1f67d8f8b05ae502241c91cb4b67f9e1155 +INFO [12-05|10:11:26.691] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd1083add9364be5226095621f70a097538e94974f14d4d1fde64ad865064649c +INFO [12-05|10:11:26.692] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa24010db6de6856456533478acc049ef93fce3af13e02c022cbaa9e195c06176 +INFO [12-05|10:11:26.693] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b, L2Head=253), Host(L1Head=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767, L2Head=252)" +INFO [12-05|10:11:26.694] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbacfada637a6095b9b4274ea0a6640ec4738fe564b1f1ebb3d3bd5e3d51fc210 +INFO [12-05|10:11:26.697] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc85721c324c9bb474d73176ec0cf7a09d9e250e6e12df08605ce85ab668f964a +INFO [12-05|10:11:26.699] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x48aa8294fb3bc88402c06ff8a7b3969dbd17f007960a6f07863ce96f315374e3 +INFO [12-05|10:11:26.700] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xbc003dfdd5960af57937e98b4e28150a189d01725df42d8d8b3bbf3d0646378c batch_seq_num=260 +INFO [12-05|10:11:26.701] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa966951f7b405af4bdd807062aefc4a793e85000af1c6e45b40d7be252aa3396 +INFO [12-05|10:11:26.702] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x56411b411a05f73fa33671cb61a8b19ad8a361f04d02c7b493686711a172e917 +INFO [12-05|10:11:26.703] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa6b21a8a7b12d6006109d589059f0a42d67bc3048847e6583155dfbbbedaf9ea +INFO [12-05|10:11:26.705] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf97659b55f18697edfaecb841efeebf191bed671e49fa3dc1bcf1a34a8ae8dd8 +WARN [12-05|10:11:26.707] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=420.250834ms block_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:11:26.707] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767, L2Head=262), Host(L1Head=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767, L2Head=261)" +INFO [12-05|10:11:26.708] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=261 batch=0x10f9aa87c9dfa87ef6358086003781f57b685d14246d0cb0b033874e6f1083d8 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +ERROR[12-05|10:11:26.708] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:11:26.711] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:11:26.711] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=262 batch=0xaac49261278788b7f4e0128d170065b5cfe6f1dbe2a05320fff0180f36badbab l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +ERROR[12-05|10:11:26.711] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:11:26.711] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:11:26.712] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=263 batch=0xd5f4fb9fb606cbd4e0b05a942e94929801877ff7e4252dd9ac2db78ec2d7dfe1 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +ERROR[12-05|10:11:26.712] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:11:26.713] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:11:38.279] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=39 block_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:38.279] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:38.619] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x9a0552faa9e818a5a6ae86c2dcbb435e8fb3c13f77b5cbd56180c90c59fafbbe block_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=253 batch_height=252 rollup_idx=0 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=254 batch_height=253 rollup_idx=1 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=255 batch_height=254 rollup_idx=2 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=256 batch_height=255 rollup_idx=3 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=257 batch_height=256 rollup_idx=4 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=258 batch_height=257 rollup_idx=5 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=259 batch_height=258 rollup_idx=6 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=260 batch_height=259 rollup_idx=7 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=261 batch_height=260 rollup_idx=8 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=262 batch_height=261 rollup_idx=9 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=263 batch_height=262 rollup_idx=10 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=264 batch_height=263 rollup_idx=11 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=265 batch_height=264 rollup_idx=12 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=266 batch_height=265 rollup_idx=13 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=267 batch_height=266 rollup_idx=14 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=268 batch_height=267 rollup_idx=15 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=269 batch_height=268 rollup_idx=16 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=270 batch_height=269 rollup_idx=17 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=271 batch_height=270 rollup_idx=18 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=272 batch_height=271 rollup_idx=19 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=273 batch_height=272 rollup_idx=20 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=274 batch_height=273 rollup_idx=21 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=275 batch_height=274 rollup_idx=22 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=276 batch_height=275 rollup_idx=23 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:38.620] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x46561f897d46929e1f4c07ed5783839d807d627aff47c6e18c2407a5cfd20244 +INFO [12-05|10:11:38.621] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2edda273e7e4fcfa3c1af2d0a6ebabf073815a97752e9abae25dfdc2c9b6ce03 +INFO [12-05|10:11:38.623] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x512d67b99941bf53498a4eb2cfadc346b3eb21e6e9209d046a39c9aaa3cd46c7 +INFO [12-05|10:11:38.624] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc59910cd3f720b21e27388308a27e8c39ae9c9ad0ab657ec90ad425239eb8756 +INFO [12-05|10:11:38.626] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbbbb11559a76e5ea313fb74d1a7ab7eae0125d8300480f6501be14f69d13e9e1 +INFO [12-05|10:11:38.626] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767, L2Head=265), Host(L1Head=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492, L2Head=264)" +INFO [12-05|10:11:38.627] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x823b1a75441c3404e634ad9814a05389069fe0f3afcd88ada73962313ca70225 +INFO [12-05|10:11:38.628] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x6cc89322753b1de5bd82c98625c1c5cce3b73813a679d7c235748f903ae12e19 batch_seq_num=270 +INFO [12-05|10:11:38.628] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x74c952a5bad230b9a12ab2ff9f92bfca5e2891e3b0bbc4e9b9b69252c4007bc2 +INFO [12-05|10:11:38.630] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc1155b133830656f9a1471deb9f01887f6d78cf8c42221c9027e6cb297dc4465 +INFO [12-05|10:11:38.631] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb02cc2c99d57987959a00436fbabe51a3c445a64598a04f09f14f898b539c9e4 +INFO [12-05|10:11:38.635] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x22bd4d2647ba84770d649bbdc8ba5dd9a59b90c0be1a2277a8fd7dec6e1c0f0f +INFO [12-05|10:11:38.638] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xaa9b9cbfa196e81fe17c5b015861eac6bc46ee24f6a72d646d08035db2623588 +INFO [12-05|10:11:38.640] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa313f8572f4fda5cfee626261d7ab014d90ff55f03bf9edbd532ba18e839ff9e +WARN [12-05|10:11:38.643] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=362.87475ms block_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:11:38.644] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492, L2Head=276), Host(L1Head=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492, L2Head=275)" +INFO [12-05|10:11:38.645] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=275 batch=0xa6fdd7103a0c521b7187cd9cefbb53692dede9db359687866829ca1fdb504ca0 l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +ERROR[12-05|10:11:38.645] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:11:38.647] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:11:50.276] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=40 block_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:50.276] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:50.682] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x42f90b441bebebc751b255b22c2f6ecbc497f868c1613da05e8391e63be9f339 block_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=265 batch_height=264 rollup_idx=0 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=266 batch_height=265 rollup_idx=1 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=267 batch_height=266 rollup_idx=2 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=268 batch_height=267 rollup_idx=3 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=269 batch_height=268 rollup_idx=4 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=270 batch_height=269 rollup_idx=5 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=271 batch_height=270 rollup_idx=6 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=272 batch_height=271 rollup_idx=7 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=273 batch_height=272 rollup_idx=8 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=274 batch_height=273 rollup_idx=9 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=275 batch_height=274 rollup_idx=10 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=276 batch_height=275 rollup_idx=11 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=277 batch_height=276 rollup_idx=12 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=278 batch_height=277 rollup_idx=13 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=279 batch_height=278 rollup_idx=14 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=280 batch_height=279 rollup_idx=15 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=281 batch_height=280 rollup_idx=16 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=282 batch_height=281 rollup_idx=17 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=283 batch_height=282 rollup_idx=18 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=284 batch_height=283 rollup_idx=19 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.683] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=285 batch_height=284 rollup_idx=20 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.683] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=286 batch_height=285 rollup_idx=21 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.683] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=287 batch_height=286 rollup_idx=22 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.683] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=288 batch_height=287 rollup_idx=23 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:11:50.683] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x737023b4e977560912d7bce2e63748d5aaa4a08e83324dca7b8749c25fdb7ecc +INFO [12-05|10:11:50.684] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1509965b77288883a4a123e8159d2325b35fef4c36a75ee91aa182b9a40ed14a +INFO [12-05|10:11:50.686] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4fa83e3be357ae22ba9b39a217c2e155417b0829e876191875cbad6b029effc0 +INFO [12-05|10:11:50.687] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492, L2Head=277), Host(L1Head=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc, L2Head=276)" +INFO [12-05|10:11:50.690] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x98c67f5a11f34c21c2e3ed737377f44b5cd339c8aa034d350e55776d2b313835 +INFO [12-05|10:11:50.691] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x77229894b7d244d1f16a7211c2024e9b8d90210fba21f214612ae2268dabdf63 batch_seq_num=280 +INFO [12-05|10:11:50.694] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc90e3fe9525a593e97f404925cc84541433db26bb30dcae809572837e158fb8b +INFO [12-05|10:11:50.701] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2866fdd15313119ddd9c34649cb41edfa96a92194c959243a5941715153aa859 +INFO [12-05|10:11:50.704] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc966067a4cde7afdd7c2508a5669b8a021d7242bd0c66dac931ea0b8a3a3ac6b +INFO [12-05|10:11:50.705] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5a21a0efa2f09a39380f21ccd2599dd04885a49b2c89e2cffc1fe4aa745b8724 +INFO [12-05|10:11:50.706] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x89728be1fd40ef8faee95d31cf5d61e27918a4988754ee2c1f47fc15315326dc +INFO [12-05|10:11:50.709] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x25853f055042f7ad374a0b466d51921ffb8a26761c2c2f7229a4c1cabfe3f800 +INFO [12-05|10:11:50.710] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x212952403ee035ff0a76581ff6480f3744fa18e1d50e240b03a05eec9b74d2fa +INFO [12-05|10:11:50.712] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5508c14a9cfac9232269fc363c57431b5fd0e69781e4f5067e50aff4f8edfb0b +WARN [12-05|10:11:50.713] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=409.295584ms block_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:11:50.713] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc, L2Head=288), Host(L1Head=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc, L2Head=288)" +INFO [12-05|10:12:02.296] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=41 block_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:02.298] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:02.641] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x47cb9867c412f2ad6adab786c59ca3c1f4ddd05d8923fb7077154db11d119c60 block_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=277 batch_height=276 rollup_idx=0 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=278 batch_height=277 rollup_idx=1 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=279 batch_height=278 rollup_idx=2 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=280 batch_height=279 rollup_idx=3 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=281 batch_height=280 rollup_idx=4 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=282 batch_height=281 rollup_idx=5 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=283 batch_height=282 rollup_idx=6 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=284 batch_height=283 rollup_idx=7 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=285 batch_height=284 rollup_idx=8 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=286 batch_height=285 rollup_idx=9 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=287 batch_height=286 rollup_idx=10 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=288 batch_height=287 rollup_idx=11 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=289 batch_height=288 rollup_idx=12 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=290 batch_height=289 rollup_idx=13 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=291 batch_height=290 rollup_idx=14 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=292 batch_height=291 rollup_idx=15 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=293 batch_height=292 rollup_idx=16 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=294 batch_height=293 rollup_idx=17 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=295 batch_height=294 rollup_idx=18 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=296 batch_height=295 rollup_idx=19 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=297 batch_height=296 rollup_idx=20 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=298 batch_height=297 rollup_idx=21 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=299 batch_height=298 rollup_idx=22 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=300 batch_height=299 rollup_idx=23 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:02.642] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x22fb91a11c97b8f8c76102178c5c79b6a48ce8a7a8c5ea823a43d0a9f87000ac +INFO [12-05|10:12:02.643] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7745e029fdec5b2e5993f9880a8487bc055c215f9274b3f3295caab7c2abd8f4 +INFO [12-05|10:12:02.644] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc, L2Head=289), Host(L1Head=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8, L2Head=288)" +INFO [12-05|10:12:02.646] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x17fc3e73e22a58d3873b5a9d47d3f292220a199dc13ab8caa2e27c73f9033553 batch_seq_num=290 +INFO [12-05|10:12:02.646] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x437248e2a8466f0129f254e2e61b47258ddb88c2aa19d018b6027c9c14d8ea80 +INFO [12-05|10:12:02.647] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9b41cffe25cd3d5eaa815595f3208ae85ebfa537fdbf1c692e6f5d29a54f7fc8 +INFO [12-05|10:12:02.648] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xee9a0dfe75eacb57badc584cc5f348d828111cb956b72f88dbbdeb0bb583f911 +INFO [12-05|10:12:02.650] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb35bae8162866d5e8a5e6de0306ca5d45eff61cbd09949d69cbc8d8c5e7f38ec +INFO [12-05|10:12:02.651] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa8306178c5df1d3ef7fc78cbbfbad8b1321a67dd30744ef21be2cebc94642918 +INFO [12-05|10:12:02.652] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x798c0c0156652666edcefd1bd59faf599779e9669f09d2017b04cf0365e8844d +INFO [12-05|10:12:02.654] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb4f705b596274db444d85ed17e5e2c739cadc045004e0d2644874513a6ddc2b2 +INFO [12-05|10:12:02.656] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x72a3e210bd65f9e9883b08bf8f55e9d4e990643b65ca8853d2b1709729ee327f +INFO [12-05|10:12:02.658] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4f2ec0c2a3a7648498dbfd28958e29380266f2c6ca8794bd44b9a4e741b7f650 +INFO [12-05|10:12:02.659] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9b9d28ad80df460fcaea3eca7bb02d1f6ba3136d6819c0d51e6e578eaf5e75e8 +INFO [12-05|10:12:02.660] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x86c25c99c5e9ae6bca23b87bf2c4b1413dcddf33f808c176211edc7dba537d1a batch_seq_num=300 +WARN [12-05|10:12:02.660] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=360.822375ms block_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:02.660] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8, L2Head=300), Host(L1Head=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8, L2Head=300)" +INFO [12-05|10:12:14.271] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=42 block_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:14.271] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:14.600] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x66d4ab200915935fe1ff083c73f010f56a9632eeb908ebe811cf7e9492303051 block_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=289 batch_height=288 rollup_idx=0 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=290 batch_height=289 rollup_idx=1 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=291 batch_height=290 rollup_idx=2 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=292 batch_height=291 rollup_idx=3 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=293 batch_height=292 rollup_idx=4 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=294 batch_height=293 rollup_idx=5 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=295 batch_height=294 rollup_idx=6 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=296 batch_height=295 rollup_idx=7 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=297 batch_height=296 rollup_idx=8 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=298 batch_height=297 rollup_idx=9 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=299 batch_height=298 rollup_idx=10 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=300 batch_height=299 rollup_idx=11 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=301 batch_height=300 rollup_idx=12 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=302 batch_height=301 rollup_idx=13 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=303 batch_height=302 rollup_idx=14 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=304 batch_height=303 rollup_idx=15 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=305 batch_height=304 rollup_idx=16 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=306 batch_height=305 rollup_idx=17 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=307 batch_height=306 rollup_idx=18 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=308 batch_height=307 rollup_idx=19 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=309 batch_height=308 rollup_idx=20 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=310 batch_height=309 rollup_idx=21 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=311 batch_height=310 rollup_idx=22 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=312 batch_height=311 rollup_idx=23 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:14.601] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc71b5c6fb09bf98ab0b3f0cc69dc19a1ae70f821c61fd31603efc531a771d17e +INFO [12-05|10:12:14.603] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x885bf0ae774f0dda527c881615d8cb32b9879c2b7767c8f0abaaf86902ea2bfd +INFO [12-05|10:12:14.603] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8, L2Head=301), Host(L1Head=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398, L2Head=300)" +INFO [12-05|10:12:14.604] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x39fc4d6c2788a99def5f868d516a084130ba9069650116acb6fbbdb4c2ab179f +INFO [12-05|10:12:14.606] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4adfe1057e28f7ef3ae160c9327b6282c20629d69074f33d85a44c39fa363a15 +INFO [12-05|10:12:14.608] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbe103ff5a146796e35be337f895c67db3ca76eb8293d3278cb1b56f2af2ce8dd +INFO [12-05|10:12:14.610] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x96a029a1ebd3f70fd4db53d6e9b15c162c6adb792642416ba07d14876ebbe734 +INFO [12-05|10:12:14.612] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x167c45ae2eeda72859048a209ce2481eac8f05f09f82d63a45b42e97e38c8093 +INFO [12-05|10:12:14.613] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x45003380f73a4efa80dd69a64c511c9859c78462dbc456d48ee119432fef8d72 +INFO [12-05|10:12:14.614] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5be7e66bf69b32b58855ddcc0fbd0a7b12ac2018f199115c0ccfaf6f2b2abc66 +INFO [12-05|10:12:14.615] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xeecf3e697b06032d625efe3a560632a594cdd642f4f70ed723938f5248ad0e89 +INFO [12-05|10:12:14.616] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xef921b4b7729d9a4266d4ea1bdf9c8630912eb5a275aa3af67836e7806d9556e batch_seq_num=310 +INFO [12-05|10:12:14.617] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1c12cb297296e067242a7062abf591d6d5920b3a0ca3281e2783e9d76fe05895 +INFO [12-05|10:12:14.618] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcedda15d2e0d01d1bfe2982139988ebfd4dd2d0b4d313a788c95d09f26f4cdf7 +WARN [12-05|10:12:14.619] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=347.322792ms block_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:12:14.619] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398, L2Head=312), Host(L1Head=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398, L2Head=311)" +INFO [12-05|10:12:14.619] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=311 batch=0xc80e6c15053e8a9c418970d3b217734f19759a334d9b82ca7f91b3400436a420 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +ERROR[12-05|10:12:14.619] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:12:14.619] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:12:16.168] No broadcast received from sequencer, re-registering. component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p +ERROR[12-05|10:12:16.168] Failed to re-register for broadcasts component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p err="incoming P2P is disabled, can't register for broadcasts" +INFO [12-05|10:12:26.274] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=43 block_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:26.274] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:26.595] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xc28f9cc9a4288c8d37d2b5b46cd82bc33e5eafc76d82c0163c8a8f50892e821b block_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:26.595] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=301 batch_height=300 rollup_idx=0 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.595] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=302 batch_height=301 rollup_idx=1 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.595] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=303 batch_height=302 rollup_idx=2 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=304 batch_height=303 rollup_idx=3 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=305 batch_height=304 rollup_idx=4 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=306 batch_height=305 rollup_idx=5 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=307 batch_height=306 rollup_idx=6 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=308 batch_height=307 rollup_idx=7 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=309 batch_height=308 rollup_idx=8 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=310 batch_height=309 rollup_idx=9 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=311 batch_height=310 rollup_idx=10 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=312 batch_height=311 rollup_idx=11 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=313 batch_height=312 rollup_idx=12 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=314 batch_height=313 rollup_idx=13 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=315 batch_height=314 rollup_idx=14 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=316 batch_height=315 rollup_idx=15 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=317 batch_height=316 rollup_idx=16 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=318 batch_height=317 rollup_idx=17 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=319 batch_height=318 rollup_idx=18 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=320 batch_height=319 rollup_idx=19 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=321 batch_height=320 rollup_idx=20 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=322 batch_height=321 rollup_idx=21 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=323 batch_height=322 rollup_idx=22 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=324 batch_height=323 rollup_idx=23 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:26.596] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb4e15803fcbb9a0a1d3aec3948f84663fcb7fae7ed8b0763e40fc96f9866ff2f +INFO [12-05|10:12:26.598] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x53048e2b81a43a72f5546569cc335e2d68ed062942e37fd0a7e57ca3cf74690e +INFO [12-05|10:12:26.599] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398, L2Head=313), Host(L1Head=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423, L2Head=312)" +INFO [12-05|10:12:26.600] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x512223a9f091ed5c06da88c99e0e06b67c93033e280ddc19331e6a95d05956d3 +INFO [12-05|10:12:26.601] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x76035a36366a07ee954246e6c38c177ed3cb85b6d1f4090f59789dc476460d7d +INFO [12-05|10:12:26.604] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x0fb2aa997c0e037505c0d5611961aec0c83fd0449e7fdb60039ac4ba1153e2d6 +INFO [12-05|10:12:26.614] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5a96c5397c485eefc80c5e72e5d092fda11fad8a563a801de30c40fadff5a3c5 +INFO [12-05|10:12:26.619] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa2e66d20af5d89bd8f5091385d318d005a39917edd574d0872be9a791b4c16d9 +INFO [12-05|10:12:26.622] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3ad851bc5396c73c7800a3a30a0dc5307540dd9fd3f619dd0edfea913a08e36c +INFO [12-05|10:12:26.623] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x78c175276004f8eeb93bb964111eb77d898e92429c9ce66bdd40f0c6662506c9 batch_seq_num=320 +INFO [12-05|10:12:26.623] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9063a8587dbdd6b4fb1255308c9e4c3e907ac44b5f3d8c615d1eadd60ae951f0 +INFO [12-05|10:12:26.625] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x331fb28679070f7347591f75f1c671dcfb8b8e1d88017dfb9f5da966985325e9 +INFO [12-05|10:12:26.626] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x988290eddee39a7ed4c6c69b81de8f346310c97d6997a8ec15e0c3de6be0a783 +INFO [12-05|10:12:26.627] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd9698e671e7ec5b5d49cc0befd5d42ebe538cacb05eac7ac8f8b9e04fbe4852f +WARN [12-05|10:12:26.628] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=353.398083ms block_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 +INFO [12-05|10:12:26.628] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423, L2Head=324), Host(L1Head=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423, L2Head=324)" +INFO [12-05|10:12:38.261] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=44 block_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:38.261] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:38.669] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xd966950629a9f4d84d2136ddc68b489642523e04bb295e0d74813c2840cdf557 block_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=313 batch_height=312 rollup_idx=0 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=314 batch_height=313 rollup_idx=1 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=315 batch_height=314 rollup_idx=2 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=316 batch_height=315 rollup_idx=3 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=317 batch_height=316 rollup_idx=4 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=318 batch_height=317 rollup_idx=5 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=319 batch_height=318 rollup_idx=6 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=320 batch_height=319 rollup_idx=7 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=321 batch_height=320 rollup_idx=8 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=322 batch_height=321 rollup_idx=9 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=323 batch_height=322 rollup_idx=10 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=324 batch_height=323 rollup_idx=11 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 +INFO [12-05|10:12:38.671] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=325 batch_height=324 rollup_idx=12 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.671] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=326 batch_height=325 rollup_idx=13 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.671] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=327 batch_height=326 rollup_idx=14 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.671] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=328 batch_height=327 rollup_idx=15 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.671] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=329 batch_height=328 rollup_idx=16 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.671] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=330 batch_height=329 rollup_idx=17 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.671] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=331 batch_height=330 rollup_idx=18 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.671] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=332 batch_height=331 rollup_idx=19 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.672] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=333 batch_height=332 rollup_idx=20 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.672] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=334 batch_height=333 rollup_idx=21 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.672] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=335 batch_height=334 rollup_idx=22 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.672] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=336 batch_height=335 rollup_idx=23 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:38.673] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x418f0f023d92d37aa46d44a46b974f9dfc0d996b964cb17cdc731b26f9922cef +INFO [12-05|10:12:38.675] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xed0e33e7fa9595326c5e0cae829b38dcf8ec0d8563a0fbc746fb919359833be0 +INFO [12-05|10:12:38.676] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423, L2Head=325), Host(L1Head=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b, L2Head=324)" +INFO [12-05|10:12:38.677] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3b6d0c7c13db405411c16a35c60f0167a99a38bb5d1f1c7130d125b67d306b43 +INFO [12-05|10:12:38.678] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xda7900856f9768f3a6c4256bf011eff82fa24e7eaf1bf6153df0176fe5cac3e5 +INFO [12-05|10:12:38.679] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xddeb708befb557e51f61a7b615070b63a8d6204548e963bd9c926812d76b1dc5 +INFO [12-05|10:12:38.681] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2245a41522c1598746a0cb541307ee16d86e5deb15861043578e7b3d1660759f +INFO [12-05|10:12:38.682] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x36d0b1c80292f99718922dd1c611693a71f89baf6b3ccc2c2abfcbec60b152b7 batch_seq_num=330 +INFO [12-05|10:12:38.682] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x85ebc689c3b9aaf8fb1c581443ebd7119920918cab40eafcea07895ca37403c6 +INFO [12-05|10:12:38.683] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5a64eead7a46bb3c96768c8ef7e7e6a3c8b445319ccd1bc15f3893a1319945ba +INFO [12-05|10:12:38.685] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3243ee08dd63dd10a03440de2a307bd5474db5617ba5cee392866e3e945d57ec +INFO [12-05|10:12:38.686] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc5469a66dd59de9d70bc30de67e8b759604045539c8570f6583eeaf31d69178a +INFO [12-05|10:12:38.687] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3c58c6997fa0453016bb3264634b8fb6d31ae7613d7d52410129def8a52729b8 +INFO [12-05|10:12:38.689] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3dd9a49c3d1b4da738539c720f711aa5779f2ff278e1d61459db8ac197358a02 +WARN [12-05|10:12:38.690] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=429.070084ms block_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b +INFO [12-05|10:12:38.690] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b, L2Head=336), Host(L1Head=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b, L2Head=336)" +INFO [12-05|10:12:50.273] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=45 block_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:50.273] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:50.603] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xb4aafd2cbe66eb3d0ef1c796e57483b69b9eb12b794da9eae1b1be400d6a66a7 block_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=325 batch_height=324 rollup_idx=0 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=326 batch_height=325 rollup_idx=1 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=327 batch_height=326 rollup_idx=2 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=328 batch_height=327 rollup_idx=3 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=329 batch_height=328 rollup_idx=4 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=330 batch_height=329 rollup_idx=5 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=331 batch_height=330 rollup_idx=6 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=332 batch_height=331 rollup_idx=7 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=333 batch_height=332 rollup_idx=8 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=334 batch_height=333 rollup_idx=9 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=335 batch_height=334 rollup_idx=10 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=336 batch_height=335 rollup_idx=11 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=337 batch_height=336 rollup_idx=12 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=338 batch_height=337 rollup_idx=13 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=339 batch_height=338 rollup_idx=14 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=340 batch_height=339 rollup_idx=15 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=341 batch_height=340 rollup_idx=16 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=342 batch_height=341 rollup_idx=17 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=343 batch_height=342 rollup_idx=18 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=344 batch_height=343 rollup_idx=19 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=345 batch_height=344 rollup_idx=20 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=346 batch_height=345 rollup_idx=21 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=347 batch_height=346 rollup_idx=22 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=348 batch_height=347 rollup_idx=23 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:12:50.604] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe85d6e30e328de1e0563bee3d13fb417410c96159bf21d2016f1dc4cb3e1ef4d +INFO [12-05|10:12:50.606] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4ab912eaa12b4498b27edf50d461a8d9e193883a7c851b58fbcf6ec3a97ead58 +INFO [12-05|10:12:50.608] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x280b9fb9890becc003c55e71dcd585c95b6b91e070ed193c15a1bb4af93ccfa2 +INFO [12-05|10:12:50.608] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b, L2Head=337), Host(L1Head=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c, L2Head=336)" +INFO [12-05|10:12:50.609] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4d8fc52759e88d7dd9c58826c39bc3673fd24bff57f3c25cd90c3d7dd233d6a2 +INFO [12-05|10:12:50.611] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x52e2951f2b54fed3876418cafc80afb062089f3c9ac5ad21ea85daa6fdd910c1 batch_seq_num=340 +INFO [12-05|10:12:50.611] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6e762cfe19f4b22bff8274473dc75493cddc7b6a3c7789039c69e2f4dca9503d +INFO [12-05|10:12:50.612] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf090805a6944f33c2ba61e4fb4d516ddcc664c8f2922f74a05ced91b97de8759 +INFO [12-05|10:12:50.614] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x04fb655154ea5681443453c42b31bec8bae3216d223120de84b79c324854981d +INFO [12-05|10:12:50.615] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa2a9930f28969328dc57acbabbe194c8ecaf9d74ccf84c9e0e73dd94be6cd77d +INFO [12-05|10:12:50.616] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9d2f722d58c33c4a5e8b702b10ee63ce637c8faa7973d4e3feef648f1881f9e2 +INFO [12-05|10:12:50.618] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4f65e4085bdc4ef96985621df1f0d2522dc7f430ef04e8d2ce96beceb4a08154 +INFO [12-05|10:12:50.619] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa413087650b425b472e69930d31e3be292299f71067e82ab47852441e11d9b7b +INFO [12-05|10:12:50.620] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x921f063bb50e7d54399dd3a561cecdf9cda870873e5e73973d71e2d36bc24e60 +WARN [12-05|10:12:50.621] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=347.6805ms block_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c +INFO [12-05|10:12:50.622] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c, L2Head=348), Host(L1Head=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c, L2Head=347)" +INFO [12-05|10:12:50.623] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=347 batch=0x35d0494af526401c708e17bce7d31bfa1bc3b3fe7f422e8df51dbd995d26bdff l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +ERROR[12-05|10:12:50.623] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:12:50.624] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:13:02.258] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=46 block_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:02.258] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:02.616] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x4725083ddab4e5344e13e8438a6be4278e2902f3e20dfc548ffa0844a8945558 block_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=337 batch_height=336 rollup_idx=0 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=338 batch_height=337 rollup_idx=1 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=339 batch_height=338 rollup_idx=2 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=340 batch_height=339 rollup_idx=3 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=341 batch_height=340 rollup_idx=4 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=342 batch_height=341 rollup_idx=5 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=343 batch_height=342 rollup_idx=6 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=344 batch_height=343 rollup_idx=7 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=345 batch_height=344 rollup_idx=8 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=346 batch_height=345 rollup_idx=9 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=347 batch_height=346 rollup_idx=10 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=348 batch_height=347 rollup_idx=11 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=349 batch_height=348 rollup_idx=12 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=350 batch_height=349 rollup_idx=13 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=351 batch_height=350 rollup_idx=14 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=352 batch_height=351 rollup_idx=15 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=353 batch_height=352 rollup_idx=16 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=354 batch_height=353 rollup_idx=17 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=355 batch_height=354 rollup_idx=18 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=356 batch_height=355 rollup_idx=19 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=357 batch_height=356 rollup_idx=20 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=358 batch_height=357 rollup_idx=21 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=359 batch_height=358 rollup_idx=22 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=360 batch_height=359 rollup_idx=23 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +INFO [12-05|10:13:02.618] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf9c3bf90b462bc0a0d5ee6a1cb087e14378dee67a2c18ee54d53aa741cb86438 +INFO [12-05|10:13:02.622] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x594b5fa6c9e5532738f7e3d0479243ef20be9ac4327346892b2d85d4076316b2 +INFO [12-05|10:13:02.623] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xbcb00e7b9375b677b1d15a1adcdeddfe7974c7e0492c3cb1804d3e80b728b341 batch_seq_num=350 +INFO [12-05|10:13:02.624] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcf87c4965fb2bf9fd4ae25bbcd43b96e55b01ef2b0972def74df0a45bf28d5f8 +INFO [12-05|10:13:02.626] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa183d02c65f37fdb292f0153a9672a71e0e696cd712e2a534e77d82a1a5e90b4 +INFO [12-05|10:13:02.627] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa00c5c7c3f218bbb5b539ac804c90b619a0679f47ab2570879407de1cfda8a70 +INFO [12-05|10:13:02.628] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7aa392a464e48ee41e262f420e2858385c8d607f2feb2387dc131cb98612ecc6 +INFO [12-05|10:13:02.630] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x22b14926d2186ee111ad98d6ccd52cb607357df93cdffee5f6c1249169bc4f5d +INFO [12-05|10:13:02.631] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x05d19fb3ec6dd405adeba342a5573a1424eb5b36c387a3cce7f283aee0659836 +INFO [12-05|10:13:02.632] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c, L2Head=349), Host(L1Head=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e, L2Head=348)" +INFO [12-05|10:13:02.633] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xabdc1903acf9d3eef64e22456a771920413a3b541d753cb55e8ff282f99e1a29 +INFO [12-05|10:13:02.677] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3fe85eb1de13598b8c0afd663bc2153ef7511a262b0252b8eae18b83cc92a1f9 +INFO [12-05|10:13:02.696] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x263e706500d016072c9b1bcfbc1f842c81cf3ec36a5f3a0f591a52f0dce56cdb +INFO [12-05|10:13:02.698] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1da492834f8f8fdacf8f6a85d771158c64936a2fa76b892fdabe73394d3ba5b8 +INFO [12-05|10:13:02.700] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x6a94859b3c71875c4801c751d8df637c48651d7248fd0ca485b8413bfbcff44e batch_seq_num=360 +WARN [12-05|10:13:02.700] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=441.235625ms block_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e +INFO [12-05|10:13:02.701] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e, L2Head=360), Host(L1Head=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e, L2Head=359)" +INFO [12-05|10:13:02.702] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=359 batch=0x6a94859b3c71875c4801c751d8df637c48651d7248fd0ca485b8413bfbcff44e l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 +ERROR[12-05|10:13:02.702] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" +ERROR[12-05|10:13:02.707] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" +INFO [12-05|10:13:14.282] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=47 block_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d +INFO [12-05|10:13:14.284] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d From 86c32fce9d1a55a2ed85b4a85f1fd90aebdc6cb8 Mon Sep 17 00:00:00 2001 From: Will Hester Date: Thu, 5 Dec 2024 12:04:49 +0000 Subject: [PATCH 14/21] remove unwanted log files --- nodelogs-working.txt | 2055 ------------------------------------------ nodelogs.txt | 2001 ---------------------------------------- 2 files changed, 4056 deletions(-) delete mode 100644 nodelogs-working.txt delete mode 100644 nodelogs.txt diff --git a/nodelogs-working.txt b/nodelogs-working.txt deleted file mode 100644 index 3461804b55..0000000000 --- a/nodelogs-working.txt +++ /dev/null @@ -1,2055 +0,0 @@ -INFO [12-05|10:06:16.729] Creating enclave service with following config component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc cfg="{\n \"HostID\": \"0x5e7a62a400f5b80f6d732ead82391c9c02282ddc\",\n \"HostAddress\": \"127.0.0.1:16604\",\n \"Address\": \"127.0.0.1:16704\",\n \"NodeType\": 1,\n \"L1ChainID\": 1337,\n \"ObscuroChainID\": 443,\n \"WillAttest\": false,\n \"ValidateL1Blocks\": false,\n \"GenesisJSON\": null,\n \"ManagementContractAddress\": \"0xf3be1f5bac1ccdb46736beacf40d851c06c8bec8\",\n \"LogLevel\": 1,\n \"LogPath\": \"../.build/simulations/sim-log-2024-12-05_10-03-33-full-network-4167492917.txt\",\n \"UseInMemoryDB\": true,\n \"EdgelessDBHost\": \"\",\n \"SqliteDBPath\": \"\",\n \"ProfilerEnabled\": false,\n \"MinGasPrice\": 1000000000,\n \"MessageBusAddress\": \"0xdf5da871d676f688bab28168cca6ff6b60daaaab\",\n \"SystemContractOwner\": \"0x0100000000000000000000000000000000000000\",\n \"SequencerP2PAddress\": \"127.0.0.1:16600\",\n \"TenGenesis\": \"{}\",\n \"DebugNamespaceEnabled\": true,\n \"MaxBatchSize\": 56320,\n \"MaxRollupSize\": 131072,\n \"GasPaymentAddress\": \"0x95c4303ea3b4da105cef97e32ce16f2ea5a2c555\",\n \"BaseFee\": 1000000000,\n \"GasBatchExecutionLimit\": 300000000000,\n \"GasLocalExecutionCapFlag\": 300000000000,\n \"RPCTimeout\": 5000000000\n}" -INFO [12-05|10:06:16.732] UseInMemoryDB flag is true, data will not be persisted. Creating temporary sqlite database... component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:06:16.733] Connect to sqlite component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc path="file:/tmp/ten-persistence/X2KpJ/enclave.db?mode=rw&_foreign_keys=on&_journal_mode=wal&_txlock=immediate&_synchronous=normal" -INFO [12-05|10:06:16.740] Opened new sqlite db file at /tmp/ten-persistence/X2KpJ/enclave.db component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:06:16.740] Connect to sqlite component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc ro_path="file:/tmp/ten-persistence/X2KpJ/enclave.db?mode=ro&_foreign_keys=on&_journal_mode=wal&_txlock=immediate&_synchronous=normal" -INFO [12-05|10:06:16.740] Generating new enclave key component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:06:16.741] L2 Cross Chain Owner Address: 0xE7927CF0fED1dDAC42Ff6A557E01740D715579Bf component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc component=cross_chain -INFO [12-05|10:06:16.741] Load: Initializing system contracts component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -ERROR[12-05|10:06:16.741] Load: Failed fetching batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batchSeqNo=2 error="not found" -WARN [12-05|10:06:16.741] WARNING - Attestation is not enabled, enclave will not create a verified attestation report. component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -WARN [12-05|10:06:16.741] could not read enclave pub key. Defaulting to validator type component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc err="could not retrieve attestation key for address 0x7143831b66bEA963342A98ce7bB957B1ec513c8B. Cause: not found" -WARN [12-05|10:06:16.741] could not read enclave pub key. Defaulting to validator type component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc err="could not retrieve attestation key for address 0x7143831b66bEA963342A98ce7bB957B1ec513c8B. Cause: not found" -WARN [12-05|10:06:16.741] could not read enclave pub key. Defaulting to validator type component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc err="could not retrieve attestation key for address 0x7143831b66bEA963342A98ce7bB957B1ec513c8B. Cause: not found" -INFO [12-05|10:06:16.741] Enclave service created successfully. component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B -INFO [12-05|10:06:16.741] obscuro enclave RPC service started. component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:06:16.741] RPCServer listening on address 127.0.0.1:16704. component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:06:16.742] Building host container with config: &{L1ChainID:1337 ObscuroChainID:443 L1StartHash:0x0000000000000000000000000000000000000000000000000000000000000000 SequencerP2PAddress:127.0.0.1:16600 ManagementContractAddress:0xF3be1f5BaC1ccDB46736beaCf40d851C06c8BeC8 MessageBusAddress:0xdF5DA871D676F688BAB28168CcA6FF6B60daAaab BatchInterval:1s MaxBatchInterval:1s RollupInterval:5s MaxRollupSize:131072 L1BlockTime:1s CrossChainInterval:6s ID:0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc PrivateKeyString:a8246f156e884f1ce5c4d51aa87166b4731ca2d6f5bddd6e1bb4ac8ca5655542 IsGenesis:false NodeType:validator LogLevel:1 LogPath: UseInMemoryDB:true PostgresDBHost: SqliteDBPath: HasClientRPCHTTP:true ClientRPCPortHTTP:16804 HasClientRPCWebsockets:true ClientRPCPortWS:16904 ClientRPCHost:0.0.0.0 EnclaveRPCAddresses:[127.0.0.1:16704] P2PBindAddress:127.0.0.1:16604 P2PPublicAddress:127.0.0.1:16604 L1WebsocketURL:ws://127.0.0.1:16100 L1BeaconUrl:127.0.0.1:16560 L1BlobArchiveUrl: EnclaveRPCTimeout:10s L1RPCTimeout:15s P2PConnectionTimeout:10s ProfilerEnabled:false MetricsEnabled:true MetricsHTTPPort:0 DebugNamespaceEnabled:true IsInboundP2PDisabled:false} component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:06:17.251] UseInMemoryDB flag is true, data will not be persisted. Creating in-memory database... component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:06:17.257] Host service created with following config: component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc cfg="{\n \"L1ChainID\": 1337,\n \"ObscuroChainID\": 443,\n \"L1StartHash\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n \"SequencerP2PAddress\": \"127.0.0.1:16600\",\n \"ManagementContractAddress\": \"0xf3be1f5bac1ccdb46736beacf40d851c06c8bec8\",\n \"MessageBusAddress\": \"0xdf5da871d676f688bab28168cca6ff6b60daaaab\",\n \"BatchInterval\": 1000000000,\n \"MaxBatchInterval\": 1000000000,\n \"RollupInterval\": 5000000000,\n \"MaxRollupSize\": 131072,\n \"L1BlockTime\": 1000000000,\n \"CrossChainInterval\": 6000000000,\n \"ID\": \"0x5e7a62a400f5b80f6d732ead82391c9c02282ddc\",\n \"PrivateKeyString\": \"a8246f156e884f1ce5c4d51aa87166b4731ca2d6f5bddd6e1bb4ac8ca5655542\",\n \"IsGenesis\": false,\n \"NodeType\": 1,\n \"LogLevel\": 1,\n \"LogPath\": \"\",\n \"UseInMemoryDB\": true,\n \"PostgresDBHost\": \"\",\n \"SqliteDBPath\": \"\",\n \"HasClientRPCHTTP\": true,\n \"ClientRPCPortHTTP\": 16804,\n \"HasClientRPCWebsockets\": true,\n \"ClientRPCPortWS\": 16904,\n \"ClientRPCHost\": \"0.0.0.0\",\n \"EnclaveRPCAddresses\": [\n \"127.0.0.1:16704\"\n ],\n \"P2PBindAddress\": \"127.0.0.1:16604\",\n \"P2PPublicAddress\": \"127.0.0.1:16604\",\n \"L1WebsocketURL\": \"ws://127.0.0.1:16100\",\n \"L1BeaconUrl\": \"127.0.0.1:16560\",\n \"L1BlobArchiveUrl\": \"\",\n \"EnclaveRPCTimeout\": 10000000000,\n \"L1RPCTimeout\": 15000000000,\n \"P2PConnectionTimeout\": 10000000000,\n \"ProfilerEnabled\": false,\n \"MetricsEnabled\": true,\n \"MetricsHTTPPort\": 0,\n \"DebugNamespaceEnabled\": true,\n \"IsInboundP2PDisabled\": false\n}" -INFO [12-05|10:06:17.259] HTTP Metric server started component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc address=0.0.0.0:0 -INFO [12-05|10:06:17.264] Starting guardian process. component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B -INFO [12-05|10:06:17.265] Starting L2 update stream from enclave component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B -INFO [12-05|10:06:17.265] P2P server started listening component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc component=p2p bindAddress=127.0.0.1:16604 publicAddress=127.0.0.1:16604 -INFO [12-05|10:06:17.265] Updating enclave status from [Disconnected] to [AwaitingSecret] component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B state="StateTracker: [Disconnected] enclave(StatusCode=1, L1Head=0x0000000000000000000000000000000000000000000000000000000000000000, L2Head=0), Host(L1Head=0x0000000000000000000000000000000000000000000000000000000000000000, L2Head=)" -INFO [12-05|10:06:17.265] Host started with following config component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc cfg="l1_chain_id = 1337\nobscuro_chain_id = 443\nl1_start_hash = \"0x0000000000000000000000000000000000000000000000000000000000000000\"\nsequencer_p2_p_address = \"127.0.0.1:16600\"\nmanagement_contract_address = \"0xf3be1f5bac1ccdb46736beacf40d851c06c8bec8\"\nmessage_bus_address = \"0xdf5da871d676f688bab28168cca6ff6b60daaaab\"\nbatch_interval = 1000000000\nmax_batch_interval = 1000000000\nrollup_interval = 5000000000\nmax_rollup_size = 131072\nl1_block_time = 1000000000\ncross_chain_interval = 6000000000\nid = \"0x5e7a62a400f5b80f6d732ead82391c9c02282ddc\"\nprivate_key_string = \"a8246f156e884f1ce5c4d51aa87166b4731ca2d6f5bddd6e1bb4ac8ca5655542\"\nis_genesis = false\nnode_type = 1\nlog_level = 1\nlog_path = \"\"\nuse_in_memory_d_b = true\npostgres_d_b_host = \"\"\nsqlite_d_b_path = \"\"\nhas_client_rpc_h_http = true\nclient_rpc_port_h_http = 16804\nhas_client_rpc_websockets = true\nclient_rpc_port_w_s = 16904\nclient_rpc_host = \"0.0.0.0\"\nenclave_rpc_addresses = [\"127.0.0.1:16704\"]\np2_p_bind_address = \"127.0.0.1:16604\"\np2_p_public_address = \"127.0.0.1:16604\"\nl1_websocket_url = \"ws://127.0.0.1:16100\"\nl1_beacon_url = \"127.0.0.1:16560\"\nl1_blob_archive_url = \"\"\nenclave_rpc_timeout = 10000000000\nl1_rpc_timeout = 15000000000\np2_p_connection_timeout = 10000000000\nprofiler_enabled = false\nmetrics_enabled = true\nmetrics_http_port = 0\ndebug_namespace_enabled = true\nis_inbound_p2_p_disabled = false\n" -INFO [12-05|10:06:17.265] Started Obscuro host... component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:06:17.266] Requesting secret. component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B -INFO [12-05|10:06:17.266] HTTP server started component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc endpoint=[::]:16804 auth=false prefix= cors=* vhosts=* -INFO [12-05|10:06:17.266] WebSocket enabled component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc url=ws://[::]:16904 -INFO [12-05|10:06:17.266] Started Obscuro host RPC Server... component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:06:17.269] Host preparing to issue L1 tx component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:06:17.272] Host issuing L1 tx component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc tx=0x09aecde6b5fc1c9090b0712cc57ca8cebbd0b6410afe8d3f0568ebcd038a1800 size=0 retries=0 -INFO [12-05|10:06:17.273] Successfully submitted tx to L1 component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc txHash=0x09aecde6b5fc1c9090b0712cc57ca8cebbd0b6410afe8d3f0568ebcd038a1800 -INFO [12-05|10:06:23.293] Receipt not found for transaction, we will re-attempt component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc err="timed out after 6s (7 attempts) - latest error: could not get receipt publishing tx for L1 tx=0x09aecde6b5fc1c9090b0712cc57ca8cebbd0b6410afe8d3f0568ebcd038a1800: not found" -INFO [12-05|10:06:23.299] Host issuing L1 tx component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc tx=0x11d39f5c1774c84b7ff0be76b31c0f875d01668e697adba6c15deec091cdd10a size=0 retries=1 -INFO [12-05|10:06:23.302] Successfully submitted tx to L1 component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc txHash=0x11d39f5c1774c84b7ff0be76b31c0f875d01668e697adba6c15deec091cdd10a -INFO [12-05|10:07:14.483] Secret received component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B -INFO [12-05|10:07:14.483] Updating enclave status from [AwaitingSecret] to [L1Catchup] component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B state="StateTracker: [AwaitingSecret] enclave(StatusCode=0, L1Head=0x0000000000000000000000000000000000000000000000000000000000000000, L2Head=0), Host(L1Head=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b, L2Head=48)" -INFO [12-05|10:07:14.485] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=0 block_hash=0xd457166476301ff5f6b6b207552736d94d7bc2c2a549788c601f29c807799976 -INFO [12-05|10:07:14.485] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xd457166476301ff5f6b6b207552736d94d7bc2c2a549788c601f29c807799976 -INFO [12-05|10:07:14.487] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=1 block_hash=0x489b2e76b1da7d6888c1ddbc8662a2111b7dcb5b26ecd5f4c7e17b5b7bb6c02f -INFO [12-05|10:07:14.487] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x489b2e76b1da7d6888c1ddbc8662a2111b7dcb5b26ecd5f4c7e17b5b7bb6c02f -INFO [12-05|10:07:14.489] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=2 block_hash=0x4a899c63a636dac6acaedc57ce341078fc28f438bc3c1514e35bca5b8120f842 -INFO [12-05|10:07:14.489] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x4a899c63a636dac6acaedc57ce341078fc28f438bc3c1514e35bca5b8120f842 -INFO [12-05|10:07:14.491] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=3 block_hash=0x06490e097dad8d70ba58a2887581ac3259206f9fcd310f02c17f6608e15ff2e8 -INFO [12-05|10:07:14.491] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x06490e097dad8d70ba58a2887581ac3259206f9fcd310f02c17f6608e15ff2e8 -INFO [12-05|10:07:14.494] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=4 block_hash=0x59f5c5566120125748bb0107c240fc086239fbb85d755ff818985d220764712a -INFO [12-05|10:07:14.494] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x59f5c5566120125748bb0107c240fc086239fbb85d755ff818985d220764712a -INFO [12-05|10:07:14.495] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=5 block_hash=0x1147f5be7edb4d37ae3e5cc35a782e4f0aaebf043f58e63a22b2818ccbc65cde -INFO [12-05|10:07:14.495] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x1147f5be7edb4d37ae3e5cc35a782e4f0aaebf043f58e63a22b2818ccbc65cde -INFO [12-05|10:07:14.497] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=6 block_hash=0x06a72497af0e73e0d220912b2a3695f3bf735ebb03321814b461ac9775bb3679 -INFO [12-05|10:07:14.497] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x06a72497af0e73e0d220912b2a3695f3bf735ebb03321814b461ac9775bb3679 -INFO [12-05|10:07:14.499] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=7 block_hash=0xe43b4e15d0f42c238a9ebd09d7d8462d3d6ad03f5455a2494739aaf25325f273 -INFO [12-05|10:07:14.499] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xe43b4e15d0f42c238a9ebd09d7d8462d3d6ad03f5455a2494739aaf25325f273 -INFO [12-05|10:07:14.501] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=8 block_hash=0x98bce010c031cb3e8713f12f9c2feefffe0ebc36fa75333dadd9f981ef24c492 -INFO [12-05|10:07:14.501] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x98bce010c031cb3e8713f12f9c2feefffe0ebc36fa75333dadd9f981ef24c492 -INFO [12-05|10:07:14.509] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=9 block_hash=0xcb573cf3bba076b710275165c195a160e48211b25ee3ba9f4cb03d959a93739c -INFO [12-05|10:07:14.509] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xcb573cf3bba076b710275165c195a160e48211b25ee3ba9f4cb03d959a93739c -INFO [12-05|10:07:14.521] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=10 block_hash=0x1883ff15ad78e7c9bb1eb60daa6ed112a271aef71f820678e6a016f48d5eff83 -INFO [12-05|10:07:14.521] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x1883ff15ad78e7c9bb1eb60daa6ed112a271aef71f820678e6a016f48d5eff83 -INFO [12-05|10:07:14.524] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=11 block_hash=0xb2751f9eab0f1c8ffc40b1012703c38755d6eb0d078dbb779cad7a4e9cb7e367 -INFO [12-05|10:07:14.524] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xb2751f9eab0f1c8ffc40b1012703c38755d6eb0d078dbb779cad7a4e9cb7e367 -INFO [12-05|10:07:14.530] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=12 block_hash=0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a -INFO [12-05|10:07:14.530] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a -INFO [12-05|10:07:14.536] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=13 block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:14.536] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:14.537] Store attestation. Owner: 0xdb5DD1710c847220bB1168dEee32c37EC92F6632 component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:07:14.537] Process shared secret request. component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height="&{ParentHash:0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a UncleHash:0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347 Coinbase:0x123463a4B065722E99115D6c222f267d9cABb524 Root:0x5aa1ee8a4ef49aa5aef349c52feca5146efd3dd1fa3e447f33b14ad33c949958 TxHash:0x689ea5eb44092b7ffc59a9a4767dac9183b1eec67c387521a7cc6f25ef4c4528 ReceiptHash:0x98bbbc489bfa82690931e7ed9983c21aaa18874695322d679cf968ad22010502 Bloom:[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 1 0 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 128 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 0 0 0 0 64 0 4 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] Difficulty:+0 Number:+13 GasLimit:30000000 GasUsed:201980 Time:1733393186 Extra:[217 131 1 14 6 132 103 101 116 104 136 103 111 49 46 50 49 46 48 134 100 97 114 119 105 110] MixDigest:0xcb35c572fe032cfcaa455eddb18550df4ddc3899a93fc2783c3e3a2acaaa5632 Nonce:[0 0 0 0 0 0 0 0] BaseFee:+192882353 WithdrawalsHash:0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421 BlobGasUsed:0x140045bda28 ExcessBlobGas:0x140045bda30 ParentBeaconRoot:0x7352e839bd1d7cec131691a67da385df0c5c044f6eae33bb6b37a0d1218399e4}" block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 tx=0x94a553e76b1842a93891f61053b2670ea0667faa0b3bdb6690a58a41970e47f5 -INFO [12-05|10:07:14.537] received attestation component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc attestation="&{Report:[77 79 67 75 32 82 69 80 79 82 84] PubKey:[2 127 2 28 125 115 198 171 146 229 221 170 57 26 199 218 110 248 226 23 124 240 152 140 227 231 142 55 61 184 204 136 174] EnclaveID:0x6C5Da44dd1B1aA7ad611e811ac694C9963B1ae56 HostAddress:127.0.0.1:16601}" -INFO [12-05|10:07:14.537] Successfully verified attestation and identity. Owner: 0x6C5Da44dd1B1aA7ad611e811ac694C9963B1ae56 component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:07:14.537] Encrypting secret with public key 027f021c7d73c6ab92e5ddaa391ac7da6ef8e2177cf0988ce3e78e373db8cc88ae component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:07:14.537] Store attestation. Owner: 0x6C5Da44dd1B1aA7ad611e811ac694C9963B1ae56 component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:07:14.537] Process shared secret request. component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height="&{ParentHash:0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a UncleHash:0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347 Coinbase:0x123463a4B065722E99115D6c222f267d9cABb524 Root:0x5aa1ee8a4ef49aa5aef349c52feca5146efd3dd1fa3e447f33b14ad33c949958 TxHash:0x689ea5eb44092b7ffc59a9a4767dac9183b1eec67c387521a7cc6f25ef4c4528 ReceiptHash:0x98bbbc489bfa82690931e7ed9983c21aaa18874695322d679cf968ad22010502 Bloom:[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 1 0 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 128 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 0 0 0 0 64 0 4 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] Difficulty:+0 Number:+13 GasLimit:30000000 GasUsed:201980 Time:1733393186 Extra:[217 131 1 14 6 132 103 101 116 104 136 103 111 49 46 50 49 46 48 134 100 97 114 119 105 110] MixDigest:0xcb35c572fe032cfcaa455eddb18550df4ddc3899a93fc2783c3e3a2acaaa5632 Nonce:[0 0 0 0 0 0 0 0] BaseFee:+192882353 WithdrawalsHash:0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421 BlobGasUsed:0x140045bda28 ExcessBlobGas:0x140045bda30 ParentBeaconRoot:0x7352e839bd1d7cec131691a67da385df0c5c044f6eae33bb6b37a0d1218399e4}" block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 tx=0x128c66a948522c5e854b52270c65e44c29e4c8cd09406752471a0e46760eb2a8 -INFO [12-05|10:07:14.537] received attestation component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc attestation="&{Report:[77 79 67 75 32 82 69 80 79 82 84] PubKey:[2 96 133 8 7 18 51 20 104 30 42 202 189 216 155 111 18 212 53 76 103 239 1 238 130 133 69 26 229 184 216 228 74] EnclaveID:0x9Bf0f1aAA985F45cA454df13d2F792154711805e HostAddress:127.0.0.1:16602}" -INFO [12-05|10:07:14.537] Successfully verified attestation and identity. Owner: 0x9Bf0f1aAA985F45cA454df13d2F792154711805e component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:07:14.537] Encrypting secret with public key 0260850807123314681e2acabdd89b6f12d4354c67ef01ee8285451ae5b8d8e44a component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:07:14.538] Store attestation. Owner: 0x9Bf0f1aAA985F45cA454df13d2F792154711805e component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:07:14.538] Process shared secret request. component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height="&{ParentHash:0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a UncleHash:0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347 Coinbase:0x123463a4B065722E99115D6c222f267d9cABb524 Root:0x5aa1ee8a4ef49aa5aef349c52feca5146efd3dd1fa3e447f33b14ad33c949958 TxHash:0x689ea5eb44092b7ffc59a9a4767dac9183b1eec67c387521a7cc6f25ef4c4528 ReceiptHash:0x98bbbc489bfa82690931e7ed9983c21aaa18874695322d679cf968ad22010502 Bloom:[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 1 0 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 128 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 0 0 0 0 64 0 4 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] Difficulty:+0 Number:+13 GasLimit:30000000 GasUsed:201980 Time:1733393186 Extra:[217 131 1 14 6 132 103 101 116 104 136 103 111 49 46 50 49 46 48 134 100 97 114 119 105 110] MixDigest:0xcb35c572fe032cfcaa455eddb18550df4ddc3899a93fc2783c3e3a2acaaa5632 Nonce:[0 0 0 0 0 0 0 0] BaseFee:+192882353 WithdrawalsHash:0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421 BlobGasUsed:0x140045bda28 ExcessBlobGas:0x140045bda30 ParentBeaconRoot:0x7352e839bd1d7cec131691a67da385df0c5c044f6eae33bb6b37a0d1218399e4}" block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 tx=0xd2eb88a2c5a73f5c3ae2b950c094cc868f30dd0811c6853c2d9fcb830e61ddcc -INFO [12-05|10:07:14.538] received attestation component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc attestation="&{Report:[77 79 67 75 32 82 69 80 79 82 84] PubKey:[2 235 253 161 153 222 96 80 249 111 132 202 176 65 176 75 51 11 91 193 45 103 162 213 68 251 221 78 247 161 173 162 189] EnclaveID:0xF34A4a7381a524f4437dbb5f66d402c986C2bB24 HostAddress:127.0.0.1:16603}" -INFO [12-05|10:07:14.538] Successfully verified attestation and identity. Owner: 0xF34A4a7381a524f4437dbb5f66d402c986C2bB24 component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:07:14.538] Encrypting secret with public key 02ebfda199de6050f96f84cab041b04b330b5bc12d67a2d544fbdd4ef7a1ada2bd component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:07:14.538] Store attestation. Owner: 0xF34A4a7381a524f4437dbb5f66d402c986C2bB24 component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:07:14.538] Process shared secret request. component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height="&{ParentHash:0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a UncleHash:0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347 Coinbase:0x123463a4B065722E99115D6c222f267d9cABb524 Root:0x5aa1ee8a4ef49aa5aef349c52feca5146efd3dd1fa3e447f33b14ad33c949958 TxHash:0x689ea5eb44092b7ffc59a9a4767dac9183b1eec67c387521a7cc6f25ef4c4528 ReceiptHash:0x98bbbc489bfa82690931e7ed9983c21aaa18874695322d679cf968ad22010502 Bloom:[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 1 0 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 128 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 0 0 0 0 64 0 4 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] Difficulty:+0 Number:+13 GasLimit:30000000 GasUsed:201980 Time:1733393186 Extra:[217 131 1 14 6 132 103 101 116 104 136 103 111 49 46 50 49 46 48 134 100 97 114 119 105 110] MixDigest:0xcb35c572fe032cfcaa455eddb18550df4ddc3899a93fc2783c3e3a2acaaa5632 Nonce:[0 0 0 0 0 0 0 0] BaseFee:+192882353 WithdrawalsHash:0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421 BlobGasUsed:0x140045bda28 ExcessBlobGas:0x140045bda30 ParentBeaconRoot:0x7352e839bd1d7cec131691a67da385df0c5c044f6eae33bb6b37a0d1218399e4}" block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 tx=0x11d39f5c1774c84b7ff0be76b31c0f875d01668e697adba6c15deec091cdd10a -INFO [12-05|10:07:14.538] received attestation component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc attestation="&{Report:[77 79 67 75 32 82 69 80 79 82 84] PubKey:[3 195 130 176 113 214 204 59 146 78 5 125 67 55 75 146 246 210 18 189 220 85 171 223 229 127 28 229 235 9 58 243 175] EnclaveID:0x7143831b66bEA963342A98ce7bB957B1ec513c8B HostAddress:127.0.0.1:16604}" -INFO [12-05|10:07:14.538] Successfully verified attestation and identity. Owner: 0x7143831b66bEA963342A98ce7bB957B1ec513c8B component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:07:14.538] Encrypting secret with public key 03c382b071d6cc3b924e057d43374b92f6d212bddc55abdfe57f1ce5eb093af3af component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:07:14.538] Store attestation. Owner: 0x7143831b66bEA963342A98ce7bB957B1ec513c8B component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:07:14.541] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=14 block_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:14.541] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:14.543] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=15 block_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:14.543] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:14.545] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=16 block_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:14.545] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:14.547] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=17 block_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:14.547] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:14.548] Updating enclave status from [L1Catchup] to [L2Catchup] component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b, L2Head=0), Host(L1Head=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b, L2Head=48)" -INFO [12-05|10:07:14.548] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=0 batch=0x3de648964517100bbea3a8a765beece8134f1895d36a89e51edce8fc2a5be1a0 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:14.549] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=1 batch=0xf39889c3306495ea2a29b18f006bdefa015373b6cd0e6f8b7fe5593a6b85f4ea l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:14.549] Generated synthetic deployment transaction for the SystemDeployer contract component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:07:14.552] Initialize: Starting initialization of system contracts component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batchSeqNo=2 -INFO [12-05|10:07:14.552] Initialize: Initializing required addresses component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc addresses="map[Fees:0xcA0455DDEE5AAF5749b394a541BAA8DedFeB93CA MessageBus:0x45d8d4e632D82699433F6657AA7301e3744b666B PublicCallbacks:0xF77229630f48F0cB49e6739e7890ddDF96E11AB9 TransactionsPostProcessor:0xc94693CD0a8217F6f45f398d8a8C0b6586966Fc6]" -INFO [12-05|10:07:14.557] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=2 batch=0x7217b4882f294799c12a84fdc3fdc26a88b3ed8884cb7f099490e09fe7eaef50 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:14.557] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe637645fb2da977e58c1427e0ce5b5da6194f1d2c7589a33b05591582a122861 -INFO [12-05|10:07:14.558] Starting tx pool component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:07:14.558] Tx pool started component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc -INFO [12-05|10:07:14.558] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=3 batch=0x0624d5bfc1d2a91804635f9b92f5cecbe302b6702b2595febd1743c29bbf9e2a l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:14.558] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x081a460bf183daaf19032fd97cfe8884852279b921c8726983bfe58b2de0b282 -INFO [12-05|10:07:14.559] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=4 batch=0x3137f2f921ac789a4966dac2bacd7a9a7ebc3469ab932a6dae718a16bff33bda l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:14.560] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x24c9b786c00bb4fc9eb6afac7d78525ce5a0a2fb4bacf3833d4dc04e3d9b9172 -INFO [12-05|10:07:14.561] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=5 batch=0xc13a820fa81dd04f43a518f3037bcadfcd4e606fe82d198eb2dfa636e0c3c633 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:14.561] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1fd54aadae3a61fd76acae78597a38911f345b22bef392ec53e9c82b57a84806 -INFO [12-05|10:07:14.562] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=6 batch=0x74cb47a18d7b4f391a8dbd1df50bcc26275d37d86d25264d6e4a74d78e6ca637 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:14.562] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x34fccf45cecf0e3b228f4e087f8ab36b83608016423e306190d040f4774fdce8 -INFO [12-05|10:07:14.563] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=7 batch=0x8de95dcd4e9d8a3633a011395e0cdef9991c94fcd910dea25ab360134151969b l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:14.563] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x80d8c7bfca2fe44715294d937b3cd1b81778c17e1fdd211e1a6fcd26eef46ab8 -INFO [12-05|10:07:14.564] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=8 batch=0x4729f0043551af8e014c445341195ea2610091f539faf1d601d2e1134facd3cc l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:14.565] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcda2160e52d3e6ea097abe1a1bd3065d690a3ef6af953d0bc85cb6af2ef8f707 -INFO [12-05|10:07:14.566] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=9 batch=0xca0a0904422862de00bc2b09beb60ed69fbaeb5c3d59ab0bd88272000e101593 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:14.566] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x11bc14c3cd1e1b9b5eff4a3c805a7383b826157fa8df27c0a6ef7c0870c6f6c4 -INFO [12-05|10:07:14.567] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xca0a0904422862de00bc2b09beb60ed69fbaeb5c3d59ab0bd88272000e101593 batch_seq_num=10 -INFO [12-05|10:07:14.567] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=10 batch=0x09e99931a3c7df09360aa758e7036a09abee0fae29fc02a8441845523a36e2d5 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:14.568] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf310da7d9638e178c1329271044a1b4e7974f1b143a93d34aadaa788493dd527 -INFO [12-05|10:07:14.568] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=11 batch=0x78826143a1f6963083e3d51beb97c48dd19f631b542499396c0c571f4806d6fc l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:14.569] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x05f93fd7b9a268d547e7ca8c161f939f85af4a47aa04d6bea3449dbd6d232518 -INFO [12-05|10:07:14.570] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=12 batch=0x35d785673b2efc8eb959be4e8b3e0cd0f2a0df8c35498eef86baf2aefdd962df l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:14.571] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd7a91405aa1c91ac9f7464d9c4ac82df488a33d360cb40c0fa2aca34e3c7e9c8 -INFO [12-05|10:07:14.572] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=13 batch=0xa460a3e8eab64eab4e23efce0978e47d4bdc5e3c08638d8e9c3d3781dbf9a332 l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:14.572] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6b5253b4a40cdcd398a9ac2c874d06a922a7476d41e48b274ca3579ea485fa2d -INFO [12-05|10:07:14.573] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=14 batch=0x1c423e0d744247d10338257bc82499cde69f0b8161dd89d6cfcad90de16077a4 l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:14.573] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6b4ebe2e46d6722f6356a2200fdcc213f6c2a636b1f4244134bd79022c6a7947 -INFO [12-05|10:07:14.574] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=15 batch=0x6e87a0aa27393d18bdb5ba1d09606dc8e80a56bb2fdb86ab93649648eab0a76f l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:14.575] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x08eea0782beebe1f42c1702be93f6bb5c4d1392deb2869ca78d71a6acfb2e7f6 -INFO [12-05|10:07:14.576] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=16 batch=0x5c2a1cb7b9d4ea484de96fcdd00d0639e8e42fa3e8a6aa9ecfcf979c20b8519c l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:14.576] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb75c9ed7e7ca57e0b9b9689f72035d795fd28e700e3ae062e939ada681ffc48d -INFO [12-05|10:07:14.577] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=17 batch=0x53d7e6a35fb6cb053a42b033854f54e429173cfbd39b55095636096c90223431 l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:14.577] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd495e6d31afed537c0e202c200bfe79658d46d1452cb500462be5f85b06f2f37 -INFO [12-05|10:07:14.578] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=18 batch=0x309dee7f32d3c407ee39f07866045ed717e6968c4ad21d1d5b3c4291bb49b58b l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:14.579] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf56091bceded330e236c5dcca125bf19cef9eda51b85179208cd885984992517 -INFO [12-05|10:07:14.580] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=19 batch=0x5831879c688e5a2a4b487e03bf75f61857db1eede569e7c8e818c18f3ea0a326 l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:14.580] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9da96de6dac5c073414be4f1201f8055a26bda623cbb151195e24b8caffd9f72 -INFO [12-05|10:07:14.581] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x5831879c688e5a2a4b487e03bf75f61857db1eede569e7c8e818c18f3ea0a326 batch_seq_num=20 -INFO [12-05|10:07:14.583] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=20 batch=0xb2cf60c5e5e430370e6b8bc4270a4a678b2041c124638ae6927e47c104af124a l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:14.584] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1ec4e1c7ce22d576a120dad9cd17c36d4b884c449f4cc013629fda35dd96babd -INFO [12-05|10:07:14.585] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=21 batch=0xa5e74e82af9b1318727c26e8f22a278c659d47891c3348462f84d69f7c208044 l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:14.586] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x00e082de518ccc3ce29a676a6db884983727abe42d996d79b2970d6ab17e8e8a -INFO [12-05|10:07:14.587] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=22 batch=0x81a9e7fec76cb9ca58682548294202400172c967b6fb7a836844573ccb5bddc0 l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:14.588] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcb9b03ccdfe02dc8587aac43e065f30984322a7a7126a7bb553263cd7c489314 -INFO [12-05|10:07:14.588] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=23 batch=0xd1163a5905825e0cc81e10325a91f4706f72431f20b06c45d890be4f80a8b6ac l1=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:14.589] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9244b304fb0cbd1d12b5a56ac34ced25f8b7c2492859f4932f357b02aa0163c8 -INFO [12-05|10:07:14.590] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=24 batch=0x6a0de480f6f404d059fc2ee75d2eb0002843f1ad3945d5065dc8551a951ba04a l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:14.590] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd68dc9b8aff15b3e84490ca424d59e4267fd1cec47d3ca8b844dd1d53d55068d -INFO [12-05|10:07:14.591] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=25 batch=0xdf14ed3df2df629b72d32d5995c479276f40fab511b5ff85e2671f2ddbc2dfda l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:14.592] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfb89f0c694c5ffa87d3f16f2098c7c7ef924cdea2f191e3e3e1a04c9d081617e -INFO [12-05|10:07:14.593] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=26 batch=0xb8f38326d1b81d27d65eb7344855f03d87d002cc69086f307f22e87ea63d99a8 l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:14.594] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd258fe8c7a9ee2275b707f8415c1fd87cbabefe81af5b5a406525d521d703821 -INFO [12-05|10:07:14.594] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=27 batch=0xa097b0c5c8a7ac2872004fe61ef979f9936fdda50199869189661995eb9f4bc1 l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:14.595] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbfafb2fbedda7f34c7a7bba3339a8bd21e8d3b02fb3d3247a393bf54a7439ae5 -INFO [12-05|10:07:14.596] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=28 batch=0x7ae6fa11c27b2affb6151027e473e0b4a572d8dbf4b2fae41a49ec6aeb3559c7 l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:14.596] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcebc0b1370480a066b43d65016052c8efe8afb7a3e18aca53a12b2a7cc7a041c -INFO [12-05|10:07:14.597] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=29 batch=0xfc755fb0418b3057fdb27f79bad46dc599baff436fc8de3ad6aefa06225808ce l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:14.598] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbc2729e79df378b7278b78adac7cc5fd35712eb222566f6dbec8dae0e9e42ddd -INFO [12-05|10:07:14.598] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xfc755fb0418b3057fdb27f79bad46dc599baff436fc8de3ad6aefa06225808ce batch_seq_num=30 -INFO [12-05|10:07:14.598] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=30 batch=0x35a9d5d463414fdc58f207806803e246228fa7e1e9e36f2c671a9523ea3f263b l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:14.599] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5de887dc68878b0b283f2f6fb4acb40ff4ca725087cec4989d178e6906f25bb0 -INFO [12-05|10:07:14.600] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=31 batch=0xb22a47aaaa249079bc30f36c509a5b882f8c3ce0a6d2a19927e1e8e05b048952 l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:14.600] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbbcba24828e69733fc6ceab3d3db2cf30d5c08cbf75c023e38325117ba9feb33 -INFO [12-05|10:07:14.601] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=32 batch=0x9d3686e45318fa9405076838ee16488a678dd7ca4196b39602550a5312321702 l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:14.602] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x337fce49422fce214b4440c29afd663643d2185448aa38464e47bcfd853b3fb7 -INFO [12-05|10:07:14.603] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=33 batch=0x667218cc6ec7b182886d8582b9ff21d949e30bf61a31ba312d8ae279f1730997 l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:14.603] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf477d5e94bd587126753ffd779325634a170b1ac9ed480b42c4364029e49cd59 -INFO [12-05|10:07:14.604] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=34 batch=0xd03392b8e50da130985fc14d3cad7fcb700a4531eafdf1b895062dd1d8e0bb80 l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:14.604] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd77b1c2eb936b14e9ce4c8d51e1700cfced6afb36b876c0daa3a9abfd7c62cce -INFO [12-05|10:07:14.605] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=35 batch=0xf50a4035cf579dece71dbe79ddd287686367f915d8be1aad83c957472e103bda l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:14.606] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6b30e2641e4ddf08c155b86795b04f22c9a54d022de87da52e4ed98a1597434c -INFO [12-05|10:07:14.606] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=36 batch=0x0213ed6648ee670c469c6776dc612a214a3b27be032607a4531655e4567c9120 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:14.607] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xad29b1d8e35beabfaaf7e5bfdc2d80709cb1b25d1ce643f0a3349041e7caa8ad -INFO [12-05|10:07:14.609] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=37 batch=0x4192a3038be2a26aff4bccdc4eeb9bf937931136e4f626f37a14089b632fd592 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:14.610] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0bbd298cff56ec79480199ea956e40206b17638511c58e7593592e519bbf41d9 -INFO [12-05|10:07:14.611] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=38 batch=0x260de4b4250cd38b05934e82fc6843449d2afd69181bc1b96f889e4b53752979 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:14.611] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3d8e5c12a7b9978db40e1178afa34375e980baff8538f3a08f44860758b7831d -INFO [12-05|10:07:14.612] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=39 batch=0xa68e861e23588601b29809cc839e4db03581ba6c1785475da5ede084ac46f5b5 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:14.612] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2de1ead0f4a375e89db6fc64d4a22a71ab14b0e77259cf51a06eea346d4d6625 -INFO [12-05|10:07:14.613] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xa68e861e23588601b29809cc839e4db03581ba6c1785475da5ede084ac46f5b5 batch_seq_num=40 -INFO [12-05|10:07:14.613] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=40 batch=0x3e9f68e88cdf047c611cc98755550472452ca32e7d76b109c9f0e3203cd401d3 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:14.614] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3bd3a8dca75ffe3bf03e7b61d66b2ec0558aea3d4e02331bcc0dc35ed47dde8f -INFO [12-05|10:07:14.614] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=41 batch=0x1986897cca74263eef9c6483ee5d1def2b0cc92cf3ce4bfd723eb88cbeec23a5 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:14.615] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4c5f5cb113183f1d987f76a93a50aeae1aa9d27b842781d83ec8250937abf485 -INFO [12-05|10:07:14.616] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=42 batch=0x1921eebb29e5932b761aacc9a67fffc3563721fc8d445bfd9340b91ceff6a226 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:14.616] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x221f6a750c2e7fbeda6617b82bad5ac36e621e29af6da24da6694745d03e6b76 -INFO [12-05|10:07:14.617] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=43 batch=0xe6dd5828dc506e8545acd73be247d79e41e18b3f874aa885f843bf379f248ff9 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:14.617] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf69149991b738dc416c49e52c2e04585af900988b359609f56a8144a66fb9336 -INFO [12-05|10:07:14.618] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=44 batch=0xdfb118832935502cb5bf0c4ed57f4f1af53ff5c4cd5d101af0188dab68893367 l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:14.619] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdddb112c79358cc0cdca9a87ae8d714cab47fc2c3b1fe30457111ebd3bf6f9e6 -INFO [12-05|10:07:14.620] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=45 batch=0xa3f657be7fb7f3bb1da6ab6d145f0b81a1e68a8bc10b1a5755a9a8daefa5d7bd l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:14.620] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2561c85228eb47b3f1310ae4b36a80946321633a54754b089e1a381535792e42 -INFO [12-05|10:07:14.621] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=46 batch=0xf050e4e617f558d743d311df964bc1f1e3de4e692b3d7a7687cf68521d4724be l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:14.622] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2419dc713d2fc24fdcbd38f3d7416c8306b6a0deb8c2605ba2fb91381623f9f1 -INFO [12-05|10:07:14.625] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=47 batch=0x568c584371e6bc1dcf46a23a9c1b5073f69a659035c817628ec002462a59917c l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:14.626] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x011d093956250a0a3b7a408e3b9f70b8973d37b111cd6374cffb7515bab0597b -INFO [12-05|10:07:14.627] Updating enclave status from [L2Catchup] to [Live] component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B state="StateTracker: [L2Catchup] enclave(StatusCode=0, L1Head=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b, L2Head=48), Host(L1Head=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b, L2Head=48)" -INFO [12-05|10:07:15.095] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=48 batch=0x926f9e0f6936da8a7954402d552a19d4be964a6ad802721f52ba7fb838825b98 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:15.097] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7ecc0096de2381a298b55cfd59740a8dfb5e23a316d1faae54b33818e35445a4 -INFO [12-05|10:07:16.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=49 batch=0xeeb37eeb92854343c6c937c06a94c946c468493c4387d2ae6e8c9efc3854b3cb l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:16.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb3cacb1c10c76f15526c419b3da8c76bacfed9c2a6b405c4cece49e68a1cb7c4 -INFO [12-05|10:07:16.083] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xeeb37eeb92854343c6c937c06a94c946c468493c4387d2ae6e8c9efc3854b3cb batch_seq_num=50 -INFO [12-05|10:07:17.094] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=50 batch=0x3c2e65273f2a761fc4ef4ed59bda5f2e77e6dc9ffb3203960a070e6f02480bc6 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:17.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x16c1dd6425b09adf9d48bc61d6acae6a19fc9314651b00f73ed14e0d37e4d606 -INFO [12-05|10:07:18.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=51 batch=0xe30b0fbda65a5779b07c412a778c8eb3737e493a968ae562da8851ac0847619a l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:18.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9e9dadf18d733bfbcc63e860c4c4c3e84b9abacd9b2ae7eec3c79038daea6827 -INFO [12-05|10:07:19.094] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=52 batch=0x1690bb392413cb3b0f0e5b2db2363f3ca628bf089120bfb79c9f73a6d2800819 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:19.098] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe03483335a3c7480b529730c1fec92deddf54b64fb5f870d82be7a0df63a55c5 -INFO [12-05|10:07:20.096] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=53 batch=0x168c05c52d1ee3abcf723729a3ecf1c805393a11f04c878688f00a1005817c0b l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:20.099] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcd333c99909bcd099db25b7d14c1913f57491a4aac77e95303c13aa4b33eb6ec -INFO [12-05|10:07:21.092] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=54 batch=0xa57feef2b1757c4d4194dc27afbd0b6054dde3aa13ad6778002e1d43e6c187c4 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:21.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6a54bd039e22307fd176779fecb4ad2de846ac2565faeab0be1900599c200c6d -INFO [12-05|10:07:22.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=55 batch=0x39bd8bace4d2b2b67eb3a9bdc68adddc5252d76c7b70471b30d3273075864f8a l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:22.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x95e217f2103a361576bcb68bdb67e05cef45d9771cb0d31986b81013600fabcd -INFO [12-05|10:07:23.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=56 batch=0xbd63e399e13ebfefe7381c15b08221058376b13737dea1d9332c36aefbc8e249 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:23.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x00578b5da965cb06b099f873d57ccdeabfe4a17b027509533ab401c6aa5b7c86 -INFO [12-05|10:07:24.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=57 batch=0x269fb72d07828969727e6c1114aacec9ebb71f03d8d23f94fbea1b6335289b8f l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:24.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x828b66aaf85978127e672bdbc9ddd2d19c73a4f0c707655e00754667c8babf34 -INFO [12-05|10:07:25.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=58 batch=0xfda7960bf2fb804b5126ff4c6ad09e51b5369006f6616763687d675095e04692 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:25.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6bbe31dea81cfeb94ce57999bb29c222dc5573dcb0078a894cab3d044ee30068 -INFO [12-05|10:07:26.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=59 batch=0xda84e8c2861184036152639e679adf751aa6a855c9265d89b4efc9b7ae75d56a l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:26.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6850d26beee4b51ee951efdea160120eb6732d853a8583c866ff3a319df49b68 -INFO [12-05|10:07:26.080] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xda84e8c2861184036152639e679adf751aa6a855c9265d89b4efc9b7ae75d56a batch_seq_num=60 -INFO [12-05|10:07:26.270] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=18 block_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:26.270] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:26.614] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x4d754b00695bcc6f459385469258eb46fc728d627288b565abde84c452d36e5d block_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=1 batch_height=0 rollup_idx=0 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=2 batch_height=1 rollup_idx=1 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=3 batch_height=2 rollup_idx=2 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=4 batch_height=3 rollup_idx=3 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=5 batch_height=4 rollup_idx=4 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=6 batch_height=5 rollup_idx=5 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=7 batch_height=6 rollup_idx=6 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=8 batch_height=7 rollup_idx=7 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=9 batch_height=8 rollup_idx=8 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=10 batch_height=9 rollup_idx=9 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=11 batch_height=10 rollup_idx=10 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.614] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=12 batch_height=11 rollup_idx=11 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -WARN [12-05|10:07:26.615] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=344.121917ms block_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:27.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=60 batch=0x980b32bff7b6075f4d4ae5d4e36956fd1ec364a9d2a3ad75a8c1a62c05c62048 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:27.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8a962a7fd526cad730fc484f4ec9657130714f712a24f6015d5412db85e8c4e9 -INFO [12-05|10:07:28.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=61 batch=0x4a9e4f2ac20fb30c87e0ef9c4da029368c76401f1fb7b146382524d938b20389 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:28.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc5da16b7d460c6fcbd3318277c817287d9477160f1f1d7a648fa602ef102b8e6 -INFO [12-05|10:07:29.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=62 batch=0x4ae8fd4fabd13e81671fcbfa009b5c7d0d4c6591c402b5431c7e7bdb6b70a026 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:29.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3a815fa6b967a191f2e9745ef8e3498869be2111f988dafdbf6f3b5d4a40bcc5 -INFO [12-05|10:07:30.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=63 batch=0x1490ac580b416e2aa56f594210fab1e8fd86d53f34dcdd91dc316f39e8cee218 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:30.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd8f401f3ecb38d71c777c181d228e37109bf0225e50972f1bcb81b8baf0a483b -INFO [12-05|10:07:31.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=64 batch=0x6f3af92afa6e3c45f1fda3fd5c969e9d648fdbbb6ceae029c5ebe6a7f353af9a l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:31.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1f163ad0f178b1252c5458ed3b2a5464e4e21df358c64a99ca2d80742dfa2307 -INFO [12-05|10:07:32.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=65 batch=0x7dc4feb0ec794f76d8c15d9b7e1aeceed65aeac6a50f1207e081abe678315680 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:32.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc770bd6be85f24e414f10eb80b8a40876b7b37633db34985bc6287983c45e271 -INFO [12-05|10:07:33.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=66 batch=0x4309c168fd419d85b0b43ba9903e232e73684fc8af9e067639dbde59f1563b4c l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:33.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8efcfdfb0599b7abc22f94ce081efe586eb148a0d5972981c55b9181380fcb92 -INFO [12-05|10:07:34.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=67 batch=0x3e67eef13fa02c4ee43dfcf48908855eda08310888baf04c5f17e312ec5e6a40 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:34.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc0394b032031384e7dd453a3e0bd726c58b068170f28887682122a2aa0a4b6af -INFO [12-05|10:07:35.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=68 batch=0xca8eed1eb53a9d34323c72ae5a9eb7dc6a76a19d8194e4b4a559a26519c6cdda l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:35.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb0021e0cd18492364b2154de205f47faa34cf8f9ccee343fcb5a0d7dfda4fde5 -INFO [12-05|10:07:36.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=69 batch=0x7a05621563c168bd80c4bff3ee1f35b474a1f83d6974a5a004fd2f75b1a5ffc7 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:36.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7f4f76a835af1de1025aebb0c783f26176d59d2025ddc6810f0dbb0d54ce6693 -INFO [12-05|10:07:36.078] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x7a05621563c168bd80c4bff3ee1f35b474a1f83d6974a5a004fd2f75b1a5ffc7 batch_seq_num=70 -INFO [12-05|10:07:37.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=70 batch=0x3b2bb849f2d64402f3939954d475dd2898dc2e1e8045f3dfa2bb13de125abf5a l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:37.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdb5414cbffdeb53e2d17bbe1a216d266decb4e7b19d987cf5e70754f54df6764 -INFO [12-05|10:07:38.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=71 batch=0x610c0d88336f3df810df2ff1d43d5fb4f16451bf3e319d530d97d8d5e2bcd351 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:38.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x57156cb2aa9828f538abddeacfadd0168a6e59fb27f5de0d04a17cb980ebf8bf -INFO [12-05|10:07:38.279] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=19 block_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:38.279] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:38.633] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x56cbcab2653e88ca899d2411687b72cef4351f6a5a6745dee302d174d135e5f0 block_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=1 batch_height=0 rollup_idx=0 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=2 batch_height=1 rollup_idx=1 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=3 batch_height=2 rollup_idx=2 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=4 batch_height=3 rollup_idx=3 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=5 batch_height=4 rollup_idx=4 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=6 batch_height=5 rollup_idx=5 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=7 batch_height=6 rollup_idx=6 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=8 batch_height=7 rollup_idx=7 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=9 batch_height=8 rollup_idx=8 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=10 batch_height=9 rollup_idx=9 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=11 batch_height=10 rollup_idx=10 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=12 batch_height=11 rollup_idx=11 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=13 batch_height=12 rollup_idx=12 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=14 batch_height=13 rollup_idx=13 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=15 batch_height=14 rollup_idx=14 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=16 batch_height=15 rollup_idx=15 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=17 batch_height=16 rollup_idx=16 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=18 batch_height=17 rollup_idx=17 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=19 batch_height=18 rollup_idx=18 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=20 batch_height=19 rollup_idx=19 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=21 batch_height=20 rollup_idx=20 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=22 batch_height=21 rollup_idx=21 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=23 batch_height=22 rollup_idx=22 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=24 batch_height=23 rollup_idx=23 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=25 batch_height=24 rollup_idx=24 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=26 batch_height=25 rollup_idx=25 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=27 batch_height=26 rollup_idx=26 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=28 batch_height=27 rollup_idx=27 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=29 batch_height=28 rollup_idx=28 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=30 batch_height=29 rollup_idx=29 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=31 batch_height=30 rollup_idx=30 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=32 batch_height=31 rollup_idx=31 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=33 batch_height=32 rollup_idx=32 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=34 batch_height=33 rollup_idx=33 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=35 batch_height=34 rollup_idx=34 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.634] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=36 batch_height=35 rollup_idx=35 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -WARN [12-05|10:07:38.635] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=354.838ms block_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:39.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=72 batch=0x786303a676fe3284e188a008f616c9cce4649856aa9524e0d53fe5d7659513b6 l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:39.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8e4e832f1286a0588fd31b1779fd2870a7a183a89261b146d703d37ec3edebe8 -INFO [12-05|10:07:40.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=73 batch=0x1ba225df163c5266b3f5038162180c7e81f8a66eb927dfb30afc3dccdf156e3b l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:40.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4bcb335e8f017bbbbf36591915504b864fab34e63c76985105e4e298f156dd5e -INFO [12-05|10:07:41.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=74 batch=0xbb932e1769808c2bf97513c85829e9fbdf68e924cd3112f1f27a8434f25ae677 l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:41.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcc606b1307711bb781b7083c254fafd461787253bcfefe68f97bd1e3bdad8641 -INFO [12-05|10:07:42.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=75 batch=0xdb67f6e41e4e77eabb1f5243aee89743fb00e5ecf8bd5a83c682ec96e6b73613 l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:42.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x68f2febf1c0595158211eb2db6026e611ff578073d7bf95b0ebea9140e037a5e -INFO [12-05|10:07:43.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=76 batch=0x75cdaee14177bb89510e9549c61aa901da040e6084193fc6bac0725582e5e59e l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:43.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xec1d5bc5b90efeb8def902a126855a9d4dbab7d2d2bb6bab55e38affc2f53b07 -INFO [12-05|10:07:44.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=77 batch=0x67009fbe31aba69cef2097d87f7df41108368fea7821165c89ba457e735070d5 l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:44.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfc7f5babde42eb27fa0d62c90bcf8351c770773761a398cca0ec1d423605ff5b -INFO [12-05|10:07:45.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=78 batch=0x9402be8e61acee549837faa22bd3fa95ec9eb77bc4715d6d43c74bb2d3c4ceaa l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:45.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xba5a5ae9601fc4de6e9e6242f5f4c93db5706437b915a3fd55c512b0fab4aebd -INFO [12-05|10:07:46.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=79 batch=0xd82b8e93bbcd6da0939497f1f236734eef95fe700ffa4bd42525166983fe0dcf l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:46.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe6f87b91bbaf2050f7498c735e584564520cbb13dd647053df826062f3db3045 -INFO [12-05|10:07:46.075] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xd82b8e93bbcd6da0939497f1f236734eef95fe700ffa4bd42525166983fe0dcf batch_seq_num=80 -INFO [12-05|10:07:47.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=80 batch=0xcdf362b2b46c813a63029b60bfa330010da5cbc3f5f64a69301cb3258dcad01e l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:47.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x945512b12c2bc555cd26509c05bdd73b8b0354ed86b58638f50dcb21281715ba -INFO [12-05|10:07:48.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=81 batch=0xb26713027ab71eb0ada4d9030a66133301c741101f21802414d2bfabfd2f3ee2 l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:48.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x275f9eb995c495cf374ce6a9db0835e4be78b126caae8ab37f87e3243b0241de -INFO [12-05|10:07:49.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=82 batch=0xf2cade7d775d6636ff29e510b32a2efe00fc1fecdbc91b4d6e8a4d5c06c8097a l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:49.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc17a83b46f765119503b5995e700b4ca5418c8ee38eb37dde957d48c2a5153e6 -INFO [12-05|10:07:50.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=83 batch=0x3775faec8fe7707d794a14fea8f4e3ddea738c1b5d97e48fe8f6a0d78953e3a8 l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:50.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x20dd8cedd83fd2953a439f0650db497c800038f3a9128ebcdaf6bfbe4629f3ac -INFO [12-05|10:07:50.279] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=20 block_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:50.279] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:50.469] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xe81d8ccd785f6a1e0d8aec40ba26e531f407a2ae85bcc952fffafdc4ca6ef85f block_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:50.469] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=13 batch_height=12 rollup_idx=0 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.469] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=14 batch_height=13 rollup_idx=1 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.469] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=15 batch_height=14 rollup_idx=2 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.469] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=16 batch_height=15 rollup_idx=3 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.469] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=17 batch_height=16 rollup_idx=4 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=18 batch_height=17 rollup_idx=5 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=19 batch_height=18 rollup_idx=6 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=20 batch_height=19 rollup_idx=7 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=21 batch_height=20 rollup_idx=8 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=22 batch_height=21 rollup_idx=9 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=23 batch_height=22 rollup_idx=10 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=24 batch_height=23 rollup_idx=11 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=25 batch_height=24 rollup_idx=12 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=26 batch_height=25 rollup_idx=13 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=27 batch_height=26 rollup_idx=14 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=28 batch_height=27 rollup_idx=15 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=29 batch_height=28 rollup_idx=16 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=30 batch_height=29 rollup_idx=17 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=31 batch_height=30 rollup_idx=18 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=32 batch_height=31 rollup_idx=19 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=33 batch_height=32 rollup_idx=20 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=34 batch_height=33 rollup_idx=21 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=35 batch_height=34 rollup_idx=22 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=36 batch_height=35 rollup_idx=23 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=37 batch_height=36 rollup_idx=24 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=38 batch_height=37 rollup_idx=25 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=39 batch_height=38 rollup_idx=26 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=40 batch_height=39 rollup_idx=27 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=41 batch_height=40 rollup_idx=28 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=42 batch_height=41 rollup_idx=29 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=43 batch_height=42 rollup_idx=30 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=44 batch_height=43 rollup_idx=31 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=45 batch_height=44 rollup_idx=32 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=46 batch_height=45 rollup_idx=33 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=47 batch_height=46 rollup_idx=34 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.470] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=48 batch_height=47 rollup_idx=35 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.471] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=191.292916ms block_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:51.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=84 batch=0x68e05e9e49d63dc9935aee97ac295e59fd8202069c83892358c872ebaf4c64fa l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:51.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3cc670f3a6f70fa2a2958d10c72089e5c63cefa78be221f4389e2d877427eda6 -INFO [12-05|10:07:52.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=85 batch=0xdac920ec166e863900c5a36833695f1c93b7c4115c770e1d901166d4b069d5da l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:52.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6ba5d7c709e709c31dcee5197012ae2511e1e09578695c021d43a6870d622474 -INFO [12-05|10:07:53.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=86 batch=0x12edf78122d85aa9c3b5f161364be6e486d9c5fb555970204f791d87875e991d l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:53.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfa1bd89fea5b74197ad3d0ae32257fd894042d64f4adf2519c1f18b9bf01649e -INFO [12-05|10:07:54.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=87 batch=0xa24928f018edf8f4943b2cfa63ffc261489ee348f12944d23f63b7f2b0eac5ad l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:54.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x516a23583539426682105571e10f5c34aa8b1af996410d73a7f00fea2c795032 -INFO [12-05|10:07:55.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=88 batch=0xe5412f079811cf6eb3a9ceda854498dd68976d3cf574b54329a4a48c51c3568f l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:55.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa6229f177e08596375f63c1c8b9e72fdc55d9c814017d7e0f4ce35324c26db44 -INFO [12-05|10:07:56.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=89 batch=0x4ec63248b7f7eba1f664ccc84bce00586d42f12e3256710d23e20bc6e494fb1a l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:56.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x76c4fdf248929e12ebcf93980b9c64a2a386abf919a64e00c9bc4b945d3752be -INFO [12-05|10:07:56.085] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x4ec63248b7f7eba1f664ccc84bce00586d42f12e3256710d23e20bc6e494fb1a batch_seq_num=90 -INFO [12-05|10:07:57.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=90 batch=0x9a91bef78b167c38b416746766936d42d7cd6d4049cb46c764c5a4c383eadd44 l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:57.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x41c8a4cc0282d43d97bc13a71afc073f271fc88033fa240ee6efccb15d4b430c -INFO [12-05|10:07:58.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=91 batch=0xb0aba58cffe2b28bca3578629b83648769590c4d39589d87c7d59aa2914c2aa4 l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:58.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2baf2cc5f36589bdb81322409ecd6cfadc80044d5c8989807da3455061e55ea0 -INFO [12-05|10:07:59.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=92 batch=0x86b2f2e882d390127ba36529023804133eb15ae209d1a5b08f9e98430477e8b1 l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:59.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc665e7488d8544ba1b937528d2ba73cba7678764290f31cac7ec8324c673200b -INFO [12-05|10:08:00.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=93 batch=0x7ae3af8b12edfeb40066cbe28689a007a41998fc5db4ebf3d911878f34e3e8c2 l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:00.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xaa68139ce4b686602490e88341a99ff9fbb73ea599b5db87c09a9703598f063d -INFO [12-05|10:08:01.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=94 batch=0x2741378f6481e9a707e62bbfa41395d180c1bbbe1060e9af9620e86a9bae9444 l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:01.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x18b192b241acec6bff11b1ccf7e90f11c358d6a4cf2d5fe1d771bd3a4cfec5d1 -INFO [12-05|10:08:02.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=95 batch=0xf323b8f8cb166c16c60ac84db898998b6d6575bdea2cd82a15566cdbc54593ed l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:02.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcff1ec381fe45e2488bf450059f9355f9bf985d92f5fc7f9c66856bc94ff6e64 -ERROR[12-05|10:08:02.268] Error encountered converting the extracted relevant logs to messages component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc err="abi: cannot marshal in to go type: length insufficient 64 require 96" -ERROR[12-05|10:08:02.274] Error encountered converting logs to transfers component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc "!BADKEY"="abi: cannot marshal in to go type: length insufficient 64 require 96" "!BADKEY"= LOG_ERROR="Normalized odd number of arguments by adding nil" -ERROR[12-05|10:08:02.284] Error encountered converting the extracted relevant logs to messages component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc err="abi: cannot marshal in to go type: length insufficient 64 require 96" -ERROR[12-05|10:08:02.284] Error encountered converting logs to transfers component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc "!BADKEY"="abi: cannot marshal in to go type: length insufficient 64 require 96" "!BADKEY"= LOG_ERROR="Normalized odd number of arguments by adding nil" -ERROR[12-05|10:08:02.292] Error encountered converting the extracted relevant logs to messages component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc err="abi: cannot marshal in to go type: length insufficient 64 require 96" -ERROR[12-05|10:08:02.292] Error encountered converting logs to transfers component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc "!BADKEY"="abi: cannot marshal in to go type: length insufficient 64 require 96" "!BADKEY"= LOG_ERROR="Normalized odd number of arguments by adding nil" -INFO [12-05|10:08:02.322] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=21 block_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:02.322] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:02.778] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x9055fe4d96a9f1fcd7863d0aa102cfa6bc7c774b9b684c63a5a5b52156e4427a block_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=37 batch_height=36 rollup_idx=0 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=38 batch_height=37 rollup_idx=1 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=39 batch_height=38 rollup_idx=2 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=40 batch_height=39 rollup_idx=3 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=41 batch_height=40 rollup_idx=4 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=42 batch_height=41 rollup_idx=5 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=43 batch_height=42 rollup_idx=6 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=44 batch_height=43 rollup_idx=7 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=45 batch_height=44 rollup_idx=8 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=46 batch_height=45 rollup_idx=9 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=47 batch_height=46 rollup_idx=10 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=48 batch_height=47 rollup_idx=11 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=49 batch_height=48 rollup_idx=12 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=50 batch_height=49 rollup_idx=13 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=51 batch_height=50 rollup_idx=14 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=52 batch_height=51 rollup_idx=15 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=53 batch_height=52 rollup_idx=16 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=54 batch_height=53 rollup_idx=17 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=55 batch_height=54 rollup_idx=18 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=56 batch_height=55 rollup_idx=19 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=57 batch_height=56 rollup_idx=20 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=58 batch_height=57 rollup_idx=21 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=59 batch_height=58 rollup_idx=22 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.779] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=60 batch_height=59 rollup_idx=23 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -WARN [12-05|10:08:02.780] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=456.747125ms block_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:03.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=96 batch=0x4a9ddb3ce489cf42d26d21787e0195ca22c8fc0a53388f65c798de5b2e9c1fb0 l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:03.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x74e42d7149dd99eb62467537a6eb816c6317a9af0b582e63d2d59321ec59925d -INFO [12-05|10:08:04.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=97 batch=0x76baa8ae441be15a0f36fe4723e00a7b761cf7d7c15679f7951deb1b6edb4afd l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:04.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf7eae1b52aedbfdac922633dabd4ba1a901fa586abbf497bf21ef395ff67c26f -INFO [12-05|10:08:05.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=98 batch=0x63e2a8ddf29199e160425ff9f4b2f3674c60081c034f8e99954f03f56caa5219 l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:05.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8762433daf5fce3871414115f45296d8b42940b39947fcef42bc56c3efac1a37 -INFO [12-05|10:08:06.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=99 batch=0xa18526cf44dd12c7b0b001aa1a335fe2f4b4ed021d782bef3c5d64054bfcc666 l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:06.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7836a31339fd66f4e50491ed2d0d5acb84c4e8225823840bcd09afabc0f413e6 -INFO [12-05|10:08:06.077] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xa18526cf44dd12c7b0b001aa1a335fe2f4b4ed021d782bef3c5d64054bfcc666 batch_seq_num=100 -INFO [12-05|10:08:07.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=100 batch=0x218bffa28ccd172769b116280dce1f83ccd7d2a3793a8e2605ae9a8b3e46897e l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:07.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9a4a3aaff3c8e63aed16c774058211523a41edf52eb0374d55f2d90b1e56fdb4 -INFO [12-05|10:08:08.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=101 batch=0x182ec1dcbbd2d76a9b9501b9cc2efe0a1165c68a8f05a9a0778057f0e65e1cac l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:08.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf4fca0f35db7d01f64a0be3efcee2caed2e3bd4210050f194ec052cec9a99da7 -INFO [12-05|10:08:09.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=102 batch=0x6b25f3303784b0fd61ebf3f5654766f4677b20f2f10642c8b8c3326b61b1fc9d l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:09.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x24da0d510f6c245b3a880f4a322ac6ac4aef709d6092aa7f858da62bf00ecdb3 -INFO [12-05|10:08:10.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=103 batch=0x9d21ea5c3dbaba54979300a583d67ac6a9db11ac141d8a082f23afbe85fb882e l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:10.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x91caf522213155349fdc74f333f6a3d5da33c5dc4b3bf47e3c1bcb5edf362b72 -INFO [12-05|10:08:11.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=104 batch=0x5b7502daad33c5e208d51066ef9b3a09991c1db4f2a9165f68d4fc743972656d l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:11.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4cb22c5d50cad003693e31cf8f192def1aca9920e0d79be31c2f9978947b990a -INFO [12-05|10:08:12.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=105 batch=0x28c03f8f108badf3fd720ae8c1e208fbe9168aea3b4df619f1e989da16ae5ac8 l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:12.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf7e7a1939b2d4b222998aeccc7a94209c1aa7e8bd865ec6c36f4d5a90061bbda -INFO [12-05|10:08:13.095] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=106 batch=0xde794901ad46b05c4e7ef93839e9f666b4ff9eceb15ecacdb723c61c5e027d41 l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:13.096] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2172549ca2d5e4ac6305984099be24424b30f70e62316031129aef32f6bedac0 -INFO [12-05|10:08:14.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=107 batch=0x3a46ad359ea8ac142aed3973883ce71e91fbed87ad4516901d60df2cb0fe8c9c l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:14.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7b6cdaf7b792e8dffb4216c6840ddee17a2e4c4db46d7bf64fd4bc608be449e8 -INFO [12-05|10:08:14.273] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=22 block_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:14.274] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:14.600] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x741d5263c3958da9f12a48b2e2fefd0f86b47e28339beb118ff2792ee2b7ed42 block_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=49 batch_height=48 rollup_idx=0 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=50 batch_height=49 rollup_idx=1 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=51 batch_height=50 rollup_idx=2 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=52 batch_height=51 rollup_idx=3 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=53 batch_height=52 rollup_idx=4 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=54 batch_height=53 rollup_idx=5 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=55 batch_height=54 rollup_idx=6 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=56 batch_height=55 rollup_idx=7 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=57 batch_height=56 rollup_idx=8 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=58 batch_height=57 rollup_idx=9 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=59 batch_height=58 rollup_idx=10 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=60 batch_height=59 rollup_idx=11 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=61 batch_height=60 rollup_idx=12 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=62 batch_height=61 rollup_idx=13 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=63 batch_height=62 rollup_idx=14 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=64 batch_height=63 rollup_idx=15 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=65 batch_height=64 rollup_idx=16 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=66 batch_height=65 rollup_idx=17 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=67 batch_height=66 rollup_idx=18 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=68 batch_height=67 rollup_idx=19 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=69 batch_height=68 rollup_idx=20 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=70 batch_height=69 rollup_idx=21 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=71 batch_height=70 rollup_idx=22 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.601] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=72 batch_height=71 rollup_idx=23 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -WARN [12-05|10:08:14.602] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=327.7515ms block_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:15.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=108 batch=0x8a5cff5b50bbb466ad3d524d7d91f69fd5184ab94430969f85f0b3770f0e00c8 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:15.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x311daf0f599c23e81934db533d0d75d41d5c62fcb280911d5de361fbca5fa0b2 -INFO [12-05|10:08:16.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=109 batch=0x37bfc53e03a8b2ba4b75d8e2d00c30428a4454f68933097f2b8d7007e39a36d4 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:16.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6625e5df29643b2516f41896e51ac94627b3e63bef597a1475d4767f4d88d6e5 -INFO [12-05|10:08:16.089] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x37bfc53e03a8b2ba4b75d8e2d00c30428a4454f68933097f2b8d7007e39a36d4 batch_seq_num=110 -INFO [12-05|10:08:17.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=110 batch=0x942aeb8ef17978168a404d0b866811080ecfa635a1857c401161abe99c8ce089 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:17.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5fa4fd7ac4e98c0e43b36be8e60a391d56de0f07c207cb76d893cdd4a7ba6657 -INFO [12-05|10:08:18.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=111 batch=0x9770fd12b116bf03de3d2927e49f277105a407c755d486c8d07c5cf438282254 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:18.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc162230b7db96585761fbe392d10e9b846067819c7bb805d28e1f215c32e6785 -INFO [12-05|10:08:19.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=112 batch=0xac915e53e405e08b4aeb10d6f5e79cb9d823ad4a0f30fdc296f7c979b4469322 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:19.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xab37cd06aa42175adeadcbbb0f81056662c68b340991438efbe7832b8a46a82b -INFO [12-05|10:08:20.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=113 batch=0x3779b5a93d312f6e6778704b7e796a6c5550d4d6852981cf2a055a9adbe3dd75 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:20.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe1748dc8b991bbb11925eba64dbc54ea78b54fa54f8ba381fb6db5ef806f1654 -INFO [12-05|10:08:21.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=114 batch=0x5911e5b6f72f4a482f2ff6add9f63d0984e443578d91197e26d533006f47f013 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:21.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0db46de50c1c18aac965ca503c89154b1895afa59a435faf584c8cb63afa4afc -INFO [12-05|10:08:22.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=115 batch=0x3f16d3f9306f7a8dbef7b63568b5cbb6950b2b484bc45b35713fc35d29be8282 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:22.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x78d7b05126112591e2561275d2799e24d59792c84793bc757d39ecc2d4f24026 -INFO [12-05|10:08:23.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=116 batch=0xae3c0bad6e6bcc34c73c8ef26de15fc5bede8d021c9e44fc6f1da40ecac19cfb l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:23.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x74ea441c27057ef4481ff2514f7237cb17e5b087b7aa85713e1fa81a64651c32 -INFO [12-05|10:08:24.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=117 batch=0x3d5cb01d46b823f0b32e39a53717f9f4645c7af941c624be85cc3b7b6aed83b9 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:24.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7748ab7786bce4cbbcabf107416f29f8708150e024622dd7c863beca1e2ce6f3 -INFO [12-05|10:08:25.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=118 batch=0x31c255f659c71e3debe4ff493c9d3847203e74292502fffbbe8eb99d38fd71b6 l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:25.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8be1d3d5a2317818e472dddcef475b5870255ee61c7c9b04f0b6114dd772ad10 -INFO [12-05|10:08:26.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=119 batch=0xa6683b1d45731a16acde0b0bd745dcbfb262040bf61f572b213d4fa48c72ee7c l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:26.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x097ad87fe3d68e347efefa52c97e2b1fca9767d1b5542c113f29922e10577edd -INFO [12-05|10:08:26.077] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xa6683b1d45731a16acde0b0bd745dcbfb262040bf61f572b213d4fa48c72ee7c batch_seq_num=120 -INFO [12-05|10:08:26.322] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=23 block_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:26.322] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:26.675] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x44dad3ddd9436dc2e2f6b7465991220233359c6c10a220ae69c66b88c84d5693 block_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=61 batch_height=60 rollup_idx=0 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=62 batch_height=61 rollup_idx=1 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=63 batch_height=62 rollup_idx=2 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=64 batch_height=63 rollup_idx=3 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=65 batch_height=64 rollup_idx=4 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=66 batch_height=65 rollup_idx=5 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=67 batch_height=66 rollup_idx=6 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=68 batch_height=67 rollup_idx=7 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=69 batch_height=68 rollup_idx=8 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=70 batch_height=69 rollup_idx=9 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.675] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=71 batch_height=70 rollup_idx=10 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=72 batch_height=71 rollup_idx=11 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=73 batch_height=72 rollup_idx=12 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=74 batch_height=73 rollup_idx=13 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=75 batch_height=74 rollup_idx=14 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=76 batch_height=75 rollup_idx=15 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=77 batch_height=76 rollup_idx=16 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=78 batch_height=77 rollup_idx=17 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=79 batch_height=78 rollup_idx=18 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=80 batch_height=79 rollup_idx=19 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=81 batch_height=80 rollup_idx=20 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=82 batch_height=81 rollup_idx=21 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=83 batch_height=82 rollup_idx=22 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.676] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=84 batch_height=83 rollup_idx=23 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -WARN [12-05|10:08:26.676] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=353.982084ms block_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:27.091] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=120 batch=0x758b7195c744df380871cd97459d31986c100370138fd3afee3e161105895f9e l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:27.094] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7caa955f0827a20387e913ebd48dcd31a21e48217cf5e0ed2f2d699d338fb461 -INFO [12-05|10:08:28.088] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=121 batch=0x65a463b188f7acf7bdb150502ea7cd0af5ee41c4f1477cdd0bd427ee20f397ce l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:28.094] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x02a299ab49b2d45465943a0852b89f3e05d269b6ef3ef62d890795e40cb0afb3 -INFO [12-05|10:08:29.096] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=122 batch=0xdcfc50a21a3de180cd1f31f1ae177c6b7223b74d3a7055096e3d1b95de630d9d l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:29.099] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc31ddcbf8d1a148b237e1b94ad75fd280fda2091f044b040328b0d45dc8e1c78 -INFO [12-05|10:08:30.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=123 batch=0x8a9173faa55b6b6df85ad33d8261514d5d225441c844b7cc8d1475e117bedec3 l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:30.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb0d9d18b3aa758658ae4d3c4600e4aecf33d2b17d534f3552a44940f3e2f2517 -INFO [12-05|10:08:31.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=124 batch=0x4b116dbf6ae26984d83426917197be0123456c1151ccbaa7b0695f36044db6be l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:31.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1a7994fd1d74e86d61a55c3ebe1919a99c7e4cd827bc50b22aa65ed8f4153694 -INFO [12-05|10:08:32.097] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=125 batch=0x105cd4bf76dbe5b4a4506b1b92474449959c9202c6c4e53a17ec6ab79823f47f l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:32.100] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1119737378487e361e095045cd029dfa9341c918224495b282f94399e3899788 -INFO [12-05|10:08:33.094] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=126 batch=0x307b666d90ce4dabc38f76ae8b3e16bb19c787f67bf049ed7edb0f291f19a354 l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:33.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2dd63ae517032757e40c1c43aa05a6e75fbc64a121f8d20aeff491bd0fbfba23 -INFO [12-05|10:08:34.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=127 batch=0xad119e0aeb19160c6650751ff527b1a99b6d90be50e48edf7fbea4fc07a448cb l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:34.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd9cf6ca0aded6caca2a926fb4dc19d42f77720e254e90383a35c95bc3bb7c9ad -INFO [12-05|10:08:35.090] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=128 batch=0xfd8e0a08b60b19bf208f1de81f05cf3fc3f4eff578f8fde0862ec7752d005ca5 l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:35.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa094f3238bd6401ffedef5588540b221dfba7ac6923201b606e3808cb93ba8a0 -INFO [12-05|10:08:36.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=129 batch=0x7a1a0634d0caecbee41363fcd7c42d42d928ff3c9aa77676c9cd2bd1c08d8757 l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:36.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4edaefa978245a8e57573749d36f622094b5bd4fbff1c97b20b1cebc2016821a -INFO [12-05|10:08:36.088] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x7a1a0634d0caecbee41363fcd7c42d42d928ff3c9aa77676c9cd2bd1c08d8757 batch_seq_num=130 -INFO [12-05|10:08:37.096] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=130 batch=0x4f3450c979da480f6b1f55b0e75a85ac2d36e51c6733fd5241024f2dcbd1d2bf l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:37.098] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfaf9bb358c74f87e09ffd52f44d2c5523904838c8620e7f6c246d142587b33d8 -INFO [12-05|10:08:38.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=131 batch=0x95ebf88846233ee7d5fdfb870b30d024e704bec0c3764d0450996b58cdc0de1d l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:38.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfe4c181c1b9791538ed5c0d73c14dc98ede9b016993d443f8b918346be9b1a4f -INFO [12-05|10:08:38.303] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=24 block_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:38.303] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:38.632] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x0438f4e7a1d665279152b903a512db360e688aa829f2e124ef0455ea09f80a8e block_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=73 batch_height=72 rollup_idx=0 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=74 batch_height=73 rollup_idx=1 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=75 batch_height=74 rollup_idx=2 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=76 batch_height=75 rollup_idx=3 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=77 batch_height=76 rollup_idx=4 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=78 batch_height=77 rollup_idx=5 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=79 batch_height=78 rollup_idx=6 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=80 batch_height=79 rollup_idx=7 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=81 batch_height=80 rollup_idx=8 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=82 batch_height=81 rollup_idx=9 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=83 batch_height=82 rollup_idx=10 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=84 batch_height=83 rollup_idx=11 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=85 batch_height=84 rollup_idx=12 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=86 batch_height=85 rollup_idx=13 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=87 batch_height=86 rollup_idx=14 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=88 batch_height=87 rollup_idx=15 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=89 batch_height=88 rollup_idx=16 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=90 batch_height=89 rollup_idx=17 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.632] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=91 batch_height=90 rollup_idx=18 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=92 batch_height=91 rollup_idx=19 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=93 batch_height=92 rollup_idx=20 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=94 batch_height=93 rollup_idx=21 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=95 batch_height=94 rollup_idx=22 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.633] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=96 batch_height=95 rollup_idx=23 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -WARN [12-05|10:08:38.633] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=328.985041ms block_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:39.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=132 batch=0x62933286bd1519b79733bc9acf535be13f60ed23d9ecf756305f73a41739f2b6 l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:39.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7f651e9ef74e05e335b67a1b020367818d8887dcee4469632dc23d80f537a0a8 -INFO [12-05|10:08:40.092] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=133 batch=0x83b74501df69e498fb7f17b6052acdc41c67ac15d57f6d41ad3c8bda5e9a89da l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:40.096] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2c6588270212f5d819ab1bc6988e769ef6ce260f291be5f1fb3f6742686a938a -INFO [12-05|10:08:41.093] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=134 batch=0x125402eab9a801732a77c54a5c437085250852187ff7c87242fc17dcb4f66bda l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:41.097] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x33c6d42324526b26c445907af98397818212cc131b2e9fede128bff29c58d96e -INFO [12-05|10:08:42.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=135 batch=0x6f78917885f0412fd96901fad40d88a872e1200a69f43cf7f5858a42814cb3a0 l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:42.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x95acc78d1362a0898a4d85ea37616d029f2de7fdc6a5dd4f5d15116cf2d4fdf6 -INFO [12-05|10:08:43.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=136 batch=0x4e5bd1c6cd77f0e2f462a55ce57c3d883fdf650c2d828cff252f46ec69541295 l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:43.090] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6abe363ed9195009dd0d8e686c69e92805ced689f279ef741c68bc91a077ddfb -INFO [12-05|10:08:44.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=137 batch=0x0a5f520a92818e7118b8cb7ad800f96aef2eacd9fbfdc89db1cf6c795ebe9d98 l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:44.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0305602660e094f01435960e1ef093fe3f0ba3f4ebb0dc79a1d7e77c9089c6e3 -INFO [12-05|10:08:45.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=138 batch=0x49dbb308325f61086b3369db80491c7dca910f1f54c3690d9c7f24b31ba96fd6 l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:45.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xaa4096c661566e4a7f4ffccb0f13168ca27c2b6918ea8dc99d5bc533641364eb -INFO [12-05|10:08:46.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=139 batch=0xf39041d9a5b0a356fdfe1de16b75b30ec4d38ecff34e03d6b90dd9c28f2037ae l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:46.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb60bfbe6ca1d60ae29208442c25563a55529a9f053bd5e0bde23ebf2f98aa8ac -INFO [12-05|10:08:46.083] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xf39041d9a5b0a356fdfe1de16b75b30ec4d38ecff34e03d6b90dd9c28f2037ae batch_seq_num=140 -INFO [12-05|10:08:47.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=140 batch=0x533dd40c52cc2427639519adde69ef4cfe8e22d8b96408bd95a5db325b0daba6 l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:47.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc0061f8294b9d4d653d1027515ee8b92079d1268f51fd509df576e49f0341165 -INFO [12-05|10:08:48.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=141 batch=0xf198c66bfa792a0623de040e190691e4ab10ad51460876f06125292c0c3158ed l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:48.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2b4fd707ec56e2fd6de50dcc46aa873331e10535c53201769567dbcf5ac898b5 -INFO [12-05|10:08:49.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=142 batch=0xde66fbf0db05db34cbabf488b692fadda76ccc9df6c115cfaa15b2cdf5a94796 l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:49.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9a6b91ed5e8f02462fe09bdf86834b988ab77c47527f80c9562c4b03e5186dfc -INFO [12-05|10:08:50.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=143 batch=0x1f3c3e7dbc228dc7ba24d6877cf8edf28c09042c7365e301df1ee80ac4c0348c l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:50.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe12e9b082ced482bd2e3788440624c2a3ceabbee5b6e826aa5db07e82832fafa -INFO [12-05|10:08:50.279] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=25 block_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:50.279] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:50.535] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x9929e7f484aa19420645789f75bb66be22ef26d0c99e418b1eb6b4c55812221a block_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:50.535] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=85 batch_height=84 rollup_idx=0 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.535] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=86 batch_height=85 rollup_idx=1 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.535] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=87 batch_height=86 rollup_idx=2 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.535] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=88 batch_height=87 rollup_idx=3 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=89 batch_height=88 rollup_idx=4 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=90 batch_height=89 rollup_idx=5 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=91 batch_height=90 rollup_idx=6 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=92 batch_height=91 rollup_idx=7 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=93 batch_height=92 rollup_idx=8 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=94 batch_height=93 rollup_idx=9 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=95 batch_height=94 rollup_idx=10 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=96 batch_height=95 rollup_idx=11 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=97 batch_height=96 rollup_idx=12 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=98 batch_height=97 rollup_idx=13 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=99 batch_height=98 rollup_idx=14 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=100 batch_height=99 rollup_idx=15 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=101 batch_height=100 rollup_idx=16 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=102 batch_height=101 rollup_idx=17 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=103 batch_height=102 rollup_idx=18 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=104 batch_height=103 rollup_idx=19 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=105 batch_height=104 rollup_idx=20 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=106 batch_height=105 rollup_idx=21 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=107 batch_height=106 rollup_idx=22 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.536] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=108 batch_height=107 rollup_idx=23 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -WARN [12-05|10:08:50.536] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=256.501167ms block_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:51.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=144 batch=0xf30f0c433dc923823d9493af26bc6340b18d51d594b4df7643f411cdfc3fc21c l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:51.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x33cd0738029af9653cb5da41ba41140bc9cf525229600641c20e78aa947c1fd1 -INFO [12-05|10:08:52.091] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=145 batch=0x457fa5ed3a1ba2e3acf1fe67d4a3e27c2b1dad116c0927c8cf787061c2678ba1 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:52.094] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x34f2907485fee418249b407e4af2d99885c08fef220bbc553ab9cd38df37c6ce -INFO [12-05|10:08:53.095] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=146 batch=0x2e8aceb3e13465f9e16206d7cd142e118e5e7d5cff2df117c7bddbffacead7aa l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:53.097] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1f91972afba68549339e3519d5d5eece56d7dd1ad4b9ee67af89a712ae2feeea -INFO [12-05|10:08:54.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=147 batch=0x406c46e00828dab1ef5a6536487cb64fc44b85dadd7eb47f5cad3a9bc71778e5 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:54.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9d65d3da3bf0f3d2161b81b3d1614f6f11e9475a1f5b685da532ac31790dc0b9 -INFO [12-05|10:08:55.091] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=148 batch=0xaf06694472d6cb02930ce1a688a4548e7306b9d71efde686877798c8f121cff7 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:55.097] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfa2649cb56614c9ad35866359a8c37995fad1cd0f29838cf4b7505f3c928fae3 -INFO [12-05|10:08:56.096] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=149 batch=0xc4bb2b77ed8f0c86a5a8b503f5359dff6fae8e2d1ec3574d0a9c5b0745b2e8d4 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:56.105] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xaf242afacbd9cf5aea2f370c3861a50862e6539104a11899174f552f6557c13d -INFO [12-05|10:08:56.108] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xc4bb2b77ed8f0c86a5a8b503f5359dff6fae8e2d1ec3574d0a9c5b0745b2e8d4 batch_seq_num=150 -INFO [12-05|10:08:57.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=150 batch=0x5e1b5bf0717dc15ccaf7d6c8dc0d708d68aac488a8ccec5022e9f2243f21a2b1 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:57.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8d02c2b9d1f4bbda3e33905b26a4896e805032aa1f7873a6204ffcc3ce6e1027 -INFO [12-05|10:08:58.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=151 batch=0x2cf577ee7c73b6bda309589b3ce001b9692b50407212a82616c28ac839b4a389 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:58.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x994b8184d0b47d4aee12ea23f3b28c46cd87bfe429fc7a736c786dd7af9c7a0c -INFO [12-05|10:08:59.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=152 batch=0x168dab1c6acd2d2a2b4c63bbe46448772676cc2f7430ed3bb27c6deaa8e23c5a l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:59.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3c0d33c2ca61922075afeae03c1f1f5fcb46ddbfb33180e13be79f34fc36581b -INFO [12-05|10:09:00.089] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=153 batch=0x9f99ea68758c08605b8401eed2740693510a4a1d28de71675abf8abcfdbe0e5e l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:00.090] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf857a6f456bfd61873f4ccb5da71a43087d5efb383934711f5b98cd29819e13f -INFO [12-05|10:09:01.092] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=154 batch=0x0427884645e3662ccde439b3b2e2163e975c10430aa034ddcda7ec661e043ef9 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:01.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf8642156b3b36c980d800ca09f1f5cdc147e3e4a0e2e09a1da5e5108e58ea1b5 -INFO [12-05|10:09:02.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=155 batch=0xa6f6292aa5de45efdb427bbfbf6e779b053aaaa630ba07ef41290b72051d85d5 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:02.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xccbc128e8bb9892f9cfaf2c6c3cebf0200edf1715555205e61123cb8c954b466 -INFO [12-05|10:09:02.326] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=26 block_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:02.326] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:02.664] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x825a375d9fbc85d67f5d669198fd4e74aadadb4013afd54535eda0e86bd9470c block_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=97 batch_height=96 rollup_idx=0 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=98 batch_height=97 rollup_idx=1 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=99 batch_height=98 rollup_idx=2 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=100 batch_height=99 rollup_idx=3 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=101 batch_height=100 rollup_idx=4 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=102 batch_height=101 rollup_idx=5 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=103 batch_height=102 rollup_idx=6 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=104 batch_height=103 rollup_idx=7 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=105 batch_height=104 rollup_idx=8 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=106 batch_height=105 rollup_idx=9 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=107 batch_height=106 rollup_idx=10 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=108 batch_height=107 rollup_idx=11 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=109 batch_height=108 rollup_idx=12 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=110 batch_height=109 rollup_idx=13 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=111 batch_height=110 rollup_idx=14 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=112 batch_height=111 rollup_idx=15 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=113 batch_height=112 rollup_idx=16 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=114 batch_height=113 rollup_idx=17 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=115 batch_height=114 rollup_idx=18 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=116 batch_height=115 rollup_idx=19 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=117 batch_height=116 rollup_idx=20 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=118 batch_height=117 rollup_idx=21 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=119 batch_height=118 rollup_idx=22 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.664] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=120 batch_height=119 rollup_idx=23 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -WARN [12-05|10:09:02.665] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=337.830542ms block_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:03.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=156 batch=0xef32fec7769caf48d6e7cfafd199debe6114f6401c398747a34d4a5c0e0a205c l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:03.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x05ff19b15518ca67fe16cd35a05193f0caa76e5676841a0b5ddac1f14a9ea789 -INFO [12-05|10:09:04.090] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=157 batch=0x64e322cf1ae8125177fb356a8aafcde955d8011fe8bcf1687a2629606ec93cd5 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:04.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf39ce83764ef6971c406a040faa873c661133970792d434bbd9a46c28b802716 -INFO [12-05|10:09:05.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=158 batch=0x9b0cbd27e11100927831c7fa2a73d2ef8d8cd78ba76f6158146a9c74e5580fe9 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:05.091] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x02725d2f154b068f80eafca6398e82dbcc7fa24aafa72d6526217681f5ce08dc -INFO [12-05|10:09:06.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=159 batch=0x8b4126d28c57b0db793e691801e0287cd6d9809ee37d7cd93a5b0eafc0f4cb01 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:06.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf8b8685903f35450feff790aed590f4d1c8bb02378845be745d7e35a1e7ad92c -INFO [12-05|10:09:06.088] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x8b4126d28c57b0db793e691801e0287cd6d9809ee37d7cd93a5b0eafc0f4cb01 batch_seq_num=160 -INFO [12-05|10:09:07.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=160 batch=0x44758ff8c0fc7f97e057652e38dd880c63c545500c385d44b7f97c2245fedf71 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:07.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9fa8f71ca8300c6282d1975b39edea60984ed5616ad486fda7d9b1d625886ac3 -INFO [12-05|10:09:08.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=161 batch=0xec4dfb32f99716912404457d3a727295f4eab1ed7c3cac9617fc0ab8a898cdeb l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:08.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x88f9ac4c5cedf24b9b5b7f50219a99c681b199f61f90451454b45fc7f9f4af1e -INFO [12-05|10:09:09.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=162 batch=0x49ef8481316b60b5fb3b9220c7f3de8d0a5e8bbeabe7a6283014902c410064c4 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:09.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1857567089712c1cc78f876d19f77000313d8d9a76db345039b9864f58c63295 -INFO [12-05|10:09:10.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=163 batch=0x5735b87e1676f7ede6f8965c2266316d5bbe75eea772b4438a308029266632f2 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:10.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xff029a8017a1b683617a19998b04aa03dd29668729fdf056e90b253355097d5d -INFO [12-05|10:09:11.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=164 batch=0x7d7b9d09a207e96f6e9ec79b029e9f04ab43ed3e00ea092aef785ffc702dbe47 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:11.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x80b14e55ae6575bd99b43351cc6478e820add2726a09d574fba7d7e9d1d43d28 -INFO [12-05|10:09:12.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=165 batch=0x04f8dc8eb032f02c9ca9d2cbdae5db951a4bd43826b7b07afd812eb151a8dfb9 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:12.088] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3c7fad989071c58884ad86e1949f5e567ac87b7defdcd0d7c06b5fe8dd324bbe -INFO [12-05|10:09:13.088] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=166 batch=0x8f80ca4bdbbc6d49c5dcdfcecaa55cc5ea16d05630049ae9613710be5cc00c2b l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:13.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x192b200a0cb7c2f3420b978a55865d7a3d27182cb65dc1199de07cab2cf18595 -INFO [12-05|10:09:14.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=167 batch=0x9d320ded7e802811d071e41e0d51a44dde6377c23e26b80f8836ed3a28869c96 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:14.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x49d9bd5de0ebf390e842e5d4ef69c126a3e93d758abedae4257809c5bff49669 -INFO [12-05|10:09:14.247] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=27 block_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:14.247] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:14.583] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x3afcc127ca9c07cc93f9862e9f7ac29dcd4876fb21aa55ba8e482315f02031ce block_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=109 batch_height=108 rollup_idx=0 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=110 batch_height=109 rollup_idx=1 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=111 batch_height=110 rollup_idx=2 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=112 batch_height=111 rollup_idx=3 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=113 batch_height=112 rollup_idx=4 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=114 batch_height=113 rollup_idx=5 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=115 batch_height=114 rollup_idx=6 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=116 batch_height=115 rollup_idx=7 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=117 batch_height=116 rollup_idx=8 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=118 batch_height=117 rollup_idx=9 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=119 batch_height=118 rollup_idx=10 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=120 batch_height=119 rollup_idx=11 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=121 batch_height=120 rollup_idx=12 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=122 batch_height=121 rollup_idx=13 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=123 batch_height=122 rollup_idx=14 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=124 batch_height=123 rollup_idx=15 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=125 batch_height=124 rollup_idx=16 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=126 batch_height=125 rollup_idx=17 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=127 batch_height=126 rollup_idx=18 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.583] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=128 batch_height=127 rollup_idx=19 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=129 batch_height=128 rollup_idx=20 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=130 batch_height=129 rollup_idx=21 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=131 batch_height=130 rollup_idx=22 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=132 batch_height=131 rollup_idx=23 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -WARN [12-05|10:09:14.584] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=336.512542ms block_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:15.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=168 batch=0x0e3b2473b73007553cc126daf517bcb6243a4f0ad9656f800a77a0064c671109 l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:15.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4ff4a70250b8c67d368b209ab7293be7bcba761e239e2d8307fe3280a9cf554c -INFO [12-05|10:09:16.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=169 batch=0x986d0c283dffab6e003c01e0f59ba5ffcf8c9ac992ae56e309c3a0e4cfecb500 l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:16.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8ca11b2bc5516fd0f14bc0a74023f039c324efa778df8234a10d4e1d5415ee7f -INFO [12-05|10:09:16.083] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x986d0c283dffab6e003c01e0f59ba5ffcf8c9ac992ae56e309c3a0e4cfecb500 batch_seq_num=170 -INFO [12-05|10:09:17.091] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=170 batch=0x37309de6a49671915966b9bb97c56e0d85c4eee4caae9a504d5bbcd0d5657cb2 l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:17.092] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8690b4e634629f0c9304b3d3676231f081058357d677d99dc5e0223fe526ebc1 -INFO [12-05|10:09:18.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=171 batch=0xf64e5c5c969a5c811d7320cfa68e1ec7cfdc933cf03560757aa5ad3ed8ac10b5 l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:18.088] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9f538452d61d9cfc7390d0fbd3e953ffe5c38c7982858c894cc80b6c0429624e -INFO [12-05|10:09:19.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=172 batch=0x21226dad030d45b75339d09cbeb1223aaf6832c261a20d692397cd02ba3214f6 l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:19.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9e33f35971a4308b2cddffe8baa3454eea90ca53658669b1837594b56ba81f26 -INFO [12-05|10:09:20.094] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=173 batch=0xd5fa6e624ae019845b0d0143946b2d1d42872508398a3af354fa28d550d354df l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:20.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x305b1a4c86cd4c343192f8864062787db3e09e5749b1fa82bcf9bd02825c5e5e -INFO [12-05|10:09:21.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=174 batch=0x35597e0e1c48c47d569b53a7fedd26788efffd6206eafb1d1d6d5e1bbe0baaa3 l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:21.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf591b01ba59fe98b282d344f0f933b189ba1eebbaed40728cee0863407c0cb85 -INFO [12-05|10:09:22.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=175 batch=0x78b8df000899f461849c835396760fbc9c7f6c724585ab4e9bac92eee715fd16 l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:22.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5bf2c54237d6bfef08a53fa164571e8778884db1ce4787bbaffee9c70beb148b -INFO [12-05|10:09:23.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=176 batch=0x519a8765b2dcf59d22b03a2928665a5d168b6100af437c34d20c4ec9fa0fd6e1 l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:23.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5cb5d83ec6fa371b2e07187ae719e6cf7fa061806ea1e5a45037f82c9493afea -INFO [12-05|10:09:24.093] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=177 batch=0xcdedc87b130f8da091cb1da5b9cb2511fe52a4eeccb1721352342ec6f8a7ccab l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:24.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5ddd29e7bc04ddc97aaa523ec0dba367f30386706ce56beffbeb0304f582b047 -INFO [12-05|10:09:25.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=178 batch=0x78a510dd61999111a725e0538ba0c593ce44deca06fecf9ee786f9307d2d0bfb l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:25.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbf4fb32af6def38d86e7b6dc4322e7c16cfe2a98cdf4bd4958b42977e7799a03 -INFO [12-05|10:09:26.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=179 batch=0xd20663294b71943045ad0f5ca5c238ffb10407b4ae4b8aacb3242b03f5b8139b l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:26.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xda5ba7cb1cf371e878196f81113e56fbe7f822ea026ec2e1fa175b8bb3570cf1 -INFO [12-05|10:09:26.076] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xd20663294b71943045ad0f5ca5c238ffb10407b4ae4b8aacb3242b03f5b8139b batch_seq_num=180 -INFO [12-05|10:09:26.300] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=28 block_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:26.300] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:26.585] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xfed2d9e0c51a7a8ae46229207971d75df1b7f29c991bd820e7360ae2b3b5ef53 block_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=121 batch_height=120 rollup_idx=0 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=122 batch_height=121 rollup_idx=1 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=123 batch_height=122 rollup_idx=2 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=124 batch_height=123 rollup_idx=3 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=125 batch_height=124 rollup_idx=4 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=126 batch_height=125 rollup_idx=5 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=127 batch_height=126 rollup_idx=6 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=128 batch_height=127 rollup_idx=7 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=129 batch_height=128 rollup_idx=8 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=130 batch_height=129 rollup_idx=9 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=131 batch_height=130 rollup_idx=10 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=132 batch_height=131 rollup_idx=11 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=133 batch_height=132 rollup_idx=12 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=134 batch_height=133 rollup_idx=13 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=135 batch_height=134 rollup_idx=14 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=136 batch_height=135 rollup_idx=15 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=137 batch_height=136 rollup_idx=16 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=138 batch_height=137 rollup_idx=17 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=139 batch_height=138 rollup_idx=18 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=140 batch_height=139 rollup_idx=19 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=141 batch_height=140 rollup_idx=20 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=142 batch_height=141 rollup_idx=21 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=143 batch_height=142 rollup_idx=22 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.586] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=144 batch_height=143 rollup_idx=23 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -WARN [12-05|10:09:26.587] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=286.289042ms block_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:27.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=180 batch=0xaab5a9cd80cc61c478061d21c21a7272b92adee578fdcf144c8e35d00e1717b1 l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:27.090] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x48ce15fec5fcee6b17e0e9c30b7b8e33a5821e14d51c6735d57eba96a6ac95fd -INFO [12-05|10:09:28.089] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=181 batch=0x678c75bca8a7b5c2971831e2a0c1d35666800a65eba4772641b712e05737a63a l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:28.092] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xebb18d4c46dcf15fe06ff4c9cfa81eb743b96eeca84fa1cb326d0c1a4548a0ec -INFO [12-05|10:09:29.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=182 batch=0xb15b4271b9f6052ec20cc0eccff9c0146aee29fc2aac9c36bfd63edb8ed452e8 l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:29.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x09f2e70fcce9bb064fa07b495a5737c9a55a8a2e8011debfb03512818f1d0c46 -INFO [12-05|10:09:30.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=183 batch=0xf4764d9d0dd3992fa7d43ae026ebc6ad076a9cee1337d54a1d0aa4aa7f9b046b l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:30.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa226984ebb3929aff5acd6378a0d6b4a92e6f5a8a4562033e12aa2cd872d8818 -INFO [12-05|10:09:31.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=184 batch=0xdaac4729049b3d12ca746504010ff43d716dfd7962cd89d139fe33c291f1c0ad l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:31.091] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x412770cd8d6706d31afed240848aaee295c585e2ce863920a5505d15e25fb82c -INFO [12-05|10:09:32.090] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=185 batch=0xed40d6a347218313f7dcd38a1ff49e7e1323b13725741401153c15f51b0f0788 l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:32.092] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x638cc7be11c5b11eda2913219e947e5a29dbb3558303f33c679e5f009cb47402 -INFO [12-05|10:09:33.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=186 batch=0xdddec9962b31333d8b4bcb1a8f7e1a6ce4670dc827c4642957c9738a022fd39d l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:33.088] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8ce14712326b67ac089ce4794ae015fe883f81763b4f81242ded1d9495b43b37 -INFO [12-05|10:09:34.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=187 batch=0x1561e2b653007ae277123395aedf4e9202e08f789f99b6b74eb57af48f1c4ddf l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:34.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb6c67e8ef6ff829dfeba103dd20754277654e2dacf5ae78c7f529b6ad7ffc0e9 -INFO [12-05|10:09:35.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=188 batch=0xc46b0d132d9a0b14ce56131de8b8aba96ce3dae047f4c74bda4272bcacb8ad78 l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:35.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x066e3ad8adc71dcce3e6680f3e33c8dfd1d16f0e3d932af98cbaffe572a66abf -INFO [12-05|10:09:36.094] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=189 batch=0x704e376128c11876959fe23fd700e81aae1deec11a25d971e43af8d4822d5122 l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:36.096] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8d797206bbe700c9efcc8fb08ee99091ea79cf4010f4d72f39a93eb0c6b7cb3b -INFO [12-05|10:09:36.099] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x704e376128c11876959fe23fd700e81aae1deec11a25d971e43af8d4822d5122 batch_seq_num=190 -INFO [12-05|10:09:37.096] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=190 batch=0x37f99b8898143c5ceef88ef8890d641698f33300303fdbb5341ba6f453fc1c4d l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:37.098] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x39cdd4d832e90cbd4d96c406a0f034a17d8241613a487ad2b17295eb7dcef95a -INFO [12-05|10:09:38.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=191 batch=0xf21ea9e367fbce77ee7f3d85d27c4f56de5530a558bcbeb00575ce5eb677afdd l1=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:38.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x40327bbc55a2b2248fe3ef69f02b3787f82b8bdfc1c712b0ba93257b79baaff3 -INFO [12-05|10:09:38.298] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=29 block_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:38.298] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:38.676] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xf3911edc9373f0ef1d7199286f28e418d5578bef95e766ed8344d76d6017860b block_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:38.677] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=133 batch_height=132 rollup_idx=0 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.677] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=134 batch_height=133 rollup_idx=1 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.677] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=135 batch_height=134 rollup_idx=2 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.677] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=136 batch_height=135 rollup_idx=3 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=137 batch_height=136 rollup_idx=4 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=138 batch_height=137 rollup_idx=5 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=139 batch_height=138 rollup_idx=6 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=140 batch_height=139 rollup_idx=7 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=141 batch_height=140 rollup_idx=8 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=142 batch_height=141 rollup_idx=9 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=143 batch_height=142 rollup_idx=10 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=144 batch_height=143 rollup_idx=11 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=145 batch_height=144 rollup_idx=12 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=146 batch_height=145 rollup_idx=13 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=147 batch_height=146 rollup_idx=14 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=148 batch_height=147 rollup_idx=15 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=149 batch_height=148 rollup_idx=16 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.678] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=150 batch_height=149 rollup_idx=17 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=151 batch_height=150 rollup_idx=18 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=152 batch_height=151 rollup_idx=19 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=153 batch_height=152 rollup_idx=20 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=154 batch_height=153 rollup_idx=21 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=155 batch_height=154 rollup_idx=22 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.680] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=156 batch_height=155 rollup_idx=23 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -WARN [12-05|10:09:38.680] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=381.290959ms block_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:39.093] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=192 batch=0x69d97fc050a8278be3a934295a27655ae0f4097ab72d8f89e5ea9476ab3a14b6 l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:39.094] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd271cdd114bae73b4aa56b9fe920409d808dd00bc6b331e62bb2d4c0c1ab9260 -INFO [12-05|10:09:40.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=193 batch=0xb79b35d79c4da208b6dd001d1aed0df628f3f85d0b245bb3ff1220ba691a0ca1 l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:40.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1e3d6cd90acbf7fd196147b9767a6e598ce4b8b2e1604223c77a8ea6d1ef75fa -INFO [12-05|10:09:41.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=194 batch=0x7eb948913ca4235a1dd88d0be324ff3de5ce3d1ba6fe33df27aa2e4b7e218eed l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:41.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xaec1e540a4b9906dcb17e7b3fae6773ce07eceb9403258484584660f328ee653 -INFO [12-05|10:09:42.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=195 batch=0xe58be5fd81fc80a1520693a703253b1adc12449d8aceea9c05bb2b646728a6ce l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:42.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbeb559d0029b783b17909e11f8611c7bfb80e84a69c06bb996493d6356ec5ee0 -INFO [12-05|10:09:43.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=196 batch=0x71b7bf8160a50d75dde2363aa8bda88d6aaa5bfd6b06f7c24dfdbe1bbf1236d4 l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:43.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x67ff18e24ec8bb97b1aa38a1b43e61fd67f18ea45d4b7fe53411cb57721bea5d -INFO [12-05|10:09:44.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=197 batch=0x9b3c4562dd89367e380f1f4d79ece5171e76a235eeb90a2e5c0ab6c075354682 l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:44.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8951abf58638c26d96ebad03fc8dd52400680756176c396e038b00bf05fcda56 -INFO [12-05|10:09:45.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=198 batch=0x45abfe0c3ee22685a9a3b487fdd3a5772a727a3c506b4463f7bee02e0d01cef6 l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:45.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc6ae2586e8aec8e034e42228f45ed71e789cd1eb5fc56b0d103078c674b6c78a -INFO [12-05|10:09:46.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=199 batch=0x8cb4a5e9886e6a44a3cfad1d079b9f02744e7da72adc4792a4897f2139d5bb85 l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:46.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb2dc56462bcb603cb3703d11bc818d595f492ca1820941135f29505df7e75752 -INFO [12-05|10:09:46.078] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x8cb4a5e9886e6a44a3cfad1d079b9f02744e7da72adc4792a4897f2139d5bb85 batch_seq_num=200 -INFO [12-05|10:09:47.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=200 batch=0x1b518ffaa61619d8037972ba3b2e65c51883b7b5e4dd0e659d1a8d6fc41bf6e4 l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:47.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbb24f8726a99cb7008fe3dcab3cc4ad4df221839ca996cc71b688e8e0d7f4e5e -INFO [12-05|10:09:48.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=201 batch=0x18f2f61f3f8cb38cc862ebb0640b20d99628b05fda3336fd93f1def64c19d45a l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:48.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x30b4fa8e955a4fa36ebd05019cf005c7d9328baa5d0ae7bc2b2922f18543648a -INFO [12-05|10:09:49.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=202 batch=0x30d15eb09fbd2465158c0cc60a19cbe133e509e49b77e303f78331df8d42d126 l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:49.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1c61f75bf5d650a59c7931994c8f235402d742d0e129453e8e88223a7667a81e -INFO [12-05|10:09:50.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=203 batch=0xc62ceb4aff18cce0cf92493a37f522cc836937f72dec7846793b49e0880993cd l1=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:50.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8e2b3b2106b20e83941b45fd807ddea8e136cb91bf93fccf745a8a18c19d23f7 -INFO [12-05|10:09:50.274] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=30 block_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:50.274] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:50.620] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xe2a273ed6166d678d43b8f2f56ee67f657c93bc7f697a7c6d2aa943bec6c4a89 block_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=145 batch_height=144 rollup_idx=0 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=146 batch_height=145 rollup_idx=1 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=147 batch_height=146 rollup_idx=2 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=148 batch_height=147 rollup_idx=3 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=149 batch_height=148 rollup_idx=4 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=150 batch_height=149 rollup_idx=5 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=151 batch_height=150 rollup_idx=6 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=152 batch_height=151 rollup_idx=7 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=153 batch_height=152 rollup_idx=8 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=154 batch_height=153 rollup_idx=9 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=155 batch_height=154 rollup_idx=10 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=156 batch_height=155 rollup_idx=11 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=157 batch_height=156 rollup_idx=12 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=158 batch_height=157 rollup_idx=13 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=159 batch_height=158 rollup_idx=14 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=160 batch_height=159 rollup_idx=15 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=161 batch_height=160 rollup_idx=16 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=162 batch_height=161 rollup_idx=17 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=163 batch_height=162 rollup_idx=18 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=164 batch_height=163 rollup_idx=19 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=165 batch_height=164 rollup_idx=20 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=166 batch_height=165 rollup_idx=21 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=167 batch_height=166 rollup_idx=22 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.620] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=168 batch_height=167 rollup_idx=23 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -WARN [12-05|10:09:50.621] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=345.89425ms block_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:51.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=204 batch=0x35757286ada27f000b9f293d26964daab4f5c180a134104993e50df31d12e5b1 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:51.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb9ed2fd7b728cc32ba4736ec35c75d4a844cd2b1b3a09d45e7aee08933ffc14b -INFO [12-05|10:09:52.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=205 batch=0x1b7c67bb72ca2ae2084e5ea8e8b960bf4fca26bd44c56c93167f5431ba796ab6 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:52.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb442f2c428decf568414c11ccce98fb1effb9d4572a435184c9222ca68fc79e5 -INFO [12-05|10:09:53.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=206 batch=0x435a87bb5f6f0ad44333cfeb3861be82f2781213b883b93855d4c9c6e113ca9b l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:53.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd5852a454e36b1b075d43621ae51d4750a30f83fa3e6b0d6ec5b5a498e0f64c9 -INFO [12-05|10:09:54.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=207 batch=0xe34bbe3bc8b6e6b801175a6b455d5a43464b3b2906150100fb3621df321735f2 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:54.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x38737cb8cef38800302842b7aa6a4e27621d6055b6bf65f2e6ea725f5d9a3d93 -INFO [12-05|10:09:55.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=208 batch=0xe363918a512f760cfc24f3872a8c03759ce48fb4824e20ea30c7affd970d1c52 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:55.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3e9560cb0f04f6ccc544da9f4e684c388717a40f1ce10947a9655de0a8d93b1f -INFO [12-05|10:09:56.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=209 batch=0xaf7fc54018e32fcc3e7ed531f7485bf3a2ba70aa5c06b151cddcdc5df0ccd2bc l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:56.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc817bcb46815106ab45929ab771dc409a715e9ed80838a7a0ed130ba455a8601 -INFO [12-05|10:09:56.079] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xaf7fc54018e32fcc3e7ed531f7485bf3a2ba70aa5c06b151cddcdc5df0ccd2bc batch_seq_num=210 -INFO [12-05|10:09:57.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=210 batch=0x96b0d70cb1f2cca59281da6ab5e3f57b65d1bbe5904304f9f7afe3fd86e790c8 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:57.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe8d88a154e58ab8b5f5a42594e4a76350b4a5791fc03794246fa2aa0a95ba002 -INFO [12-05|10:09:58.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=211 batch=0x57eca2b5fd2b25fa8c7426dad863b71727f521278f1df4127b4ba75cdd812365 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:58.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xff369fccb65cbe5e07635344e62bec016942bd8a0496f6ca24a95bf5933d5309 -INFO [12-05|10:09:59.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=212 batch=0xcfcaf506b42b86621b0ba16a513221dfdfcfed24733ef3650aad74b69f0ce3d8 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:59.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbe9597d754213ccef19d61009d693636a41cbde3be77cb2efda8f4759d174c78 -INFO [12-05|10:10:00.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=213 batch=0x45d2cf24eb6f0612cfafc424ea7fba7ca0e3c3ca8b31ef3887a18bf602b41e99 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:00.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x264c186275becc91e4b30f9ec570719c102d3d51ae7f4879ae3c9eefabc32840 -INFO [12-05|10:10:01.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=214 batch=0x32e6d7d5df33cf1771bf112f59cc66d475983e0b5824044a7541cef2746864a8 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:01.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc77e2cc99bceb3b331469e64538fcef4306c47a0662e5a61c2c0713053946461 -INFO [12-05|10:10:02.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=215 batch=0xe3154d500e02feebd069069ad9a42abb2a341ddf964cd58c320fb0d78fe97574 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:02.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe07839e06cb6a85a307dc3c0bcd542210189b7b20994cab6544efceee378637b -INFO [12-05|10:10:02.267] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=31 block_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:02.267] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:02.744] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x60f08f639fc30a135c9a5a37e73d1cf7aae0d4ecd998ee9504ca15b9066eca4f block_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=157 batch_height=156 rollup_idx=0 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=158 batch_height=157 rollup_idx=1 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=159 batch_height=158 rollup_idx=2 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=160 batch_height=159 rollup_idx=3 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=161 batch_height=160 rollup_idx=4 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=162 batch_height=161 rollup_idx=5 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=163 batch_height=162 rollup_idx=6 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=164 batch_height=163 rollup_idx=7 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.744] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=165 batch_height=164 rollup_idx=8 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=166 batch_height=165 rollup_idx=9 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=167 batch_height=166 rollup_idx=10 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=168 batch_height=167 rollup_idx=11 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=169 batch_height=168 rollup_idx=12 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=170 batch_height=169 rollup_idx=13 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=171 batch_height=170 rollup_idx=14 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=172 batch_height=171 rollup_idx=15 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=173 batch_height=172 rollup_idx=16 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=174 batch_height=173 rollup_idx=17 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=175 batch_height=174 rollup_idx=18 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=176 batch_height=175 rollup_idx=19 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=177 batch_height=176 rollup_idx=20 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=178 batch_height=177 rollup_idx=21 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=179 batch_height=178 rollup_idx=22 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.745] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=180 batch_height=179 rollup_idx=23 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -WARN [12-05|10:10:02.745] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=478.18ms block_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:03.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=216 batch=0xa90eadd73d7ffc53f59d32221d795b35dcdc69e03c896137215d165a3bef8a83 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:03.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcde7805abe3fd5673d9aaef0a01f71bf0be6837b53b99670153f8948cb74b441 -INFO [12-05|10:10:04.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=217 batch=0xd96574d3952dad35f29d45d90de71e6661c158a9dbb3e26776e339e04cc4f3b9 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:04.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1745f48aeca3ffcd8f17e17fe27a277b090468aeb5b451e28ed6d7cb91e69e7a -INFO [12-05|10:10:05.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=218 batch=0xe041bc04817734075ba7309f2912765a838ee63c1532f4b2ed4e2a3a7698dcc7 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:05.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x75716fb46a2120865bcfc726bfa3df8daee7efd86ad8ba657bf3567e51b0c323 -INFO [12-05|10:10:06.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=219 batch=0xe1751f517c70f2c85421be1bec57c0f2c40081ccc37f862e90337443920780e5 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:06.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe90771d324845b274cda659d4a25689cd327dfd7ae4893c4d13c1f8a9f1586ba -INFO [12-05|10:10:06.084] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xe1751f517c70f2c85421be1bec57c0f2c40081ccc37f862e90337443920780e5 batch_seq_num=220 -INFO [12-05|10:10:07.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=220 batch=0x9920c9ea84811bd912e466b204581d18fba66eb6fd5449ae223b8920fb778aca l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:07.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x353d7c5c48dc6520b6ebfddb999444c8895aa7789eaef8ce73fcb0fabe937bd7 -INFO [12-05|10:10:08.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=221 batch=0xad58dd5b94689d42edbb2c7b6818ee061a6140c069f90eaea51fb1401c84773b l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:08.091] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdde8dc293f048e200c09f1118ea037dde79820f83f59b6e6c0f7112a781816e0 -INFO [12-05|10:10:09.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=222 batch=0xf75795744001863104437f83cd2c9331452252cf208441aa423ec4b933b8bc79 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:09.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfe74fc13d66bdd516ac0ebc9ea3b5bab08923337dd2524fbffb0f7afd1f94100 -INFO [12-05|10:10:10.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=223 batch=0xf2bf9b0e856a0805a99ca361ebd086c97ca2bbbde3fa79ebe264d267e04f4105 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:10.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x31e873ca9d0ef433c6e8807961ef9100539d331c9e6ebbefac910aadfc935d22 -INFO [12-05|10:10:11.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=224 batch=0x47264893657378c1cf5df2ed0d0a0df1bf266a320b35d03e95cb2cc57ba69b56 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:11.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x996494480a37096bb4222847c52ec974ce652bb12b636075b250119ff0bb4d13 -INFO [12-05|10:10:12.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=225 batch=0x191b51a2c1fe05fbb2b78a6537865495fc9aad08d00a203d60749db45bbdcff2 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:12.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3e0a5efcfdaf478153a3ab00c4931bcaff9cdc75feb8c0fe089155e1bfc9c28c -INFO [12-05|10:10:13.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=226 batch=0xe9c8cef87045e88b0500945fae9acfe6d974e99b100c81c9da5505c9440a78ab l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:13.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x647610292e7f344675521bac82afee6d71e85231d8a4f838111348a8718d35e2 -INFO [12-05|10:10:14.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=227 batch=0xa7b068cbe19569e41969e4a13de75c028ec1daed646d91b3de85e0b649d6c6c9 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:14.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3e40b00289ab8b1b32f2c2c8f724c0f38a6f80c2abaf2f7ba92ade43643d6acb -INFO [12-05|10:10:14.310] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=32 block_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:14.310] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:14.563] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xd2167ce94d923b438cb4710fea5142409e5e15979d44f3f961a912c3298a93c2 block_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=169 batch_height=168 rollup_idx=0 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=170 batch_height=169 rollup_idx=1 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=171 batch_height=170 rollup_idx=2 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=172 batch_height=171 rollup_idx=3 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=173 batch_height=172 rollup_idx=4 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=174 batch_height=173 rollup_idx=5 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=175 batch_height=174 rollup_idx=6 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=176 batch_height=175 rollup_idx=7 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=177 batch_height=176 rollup_idx=8 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=178 batch_height=177 rollup_idx=9 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=179 batch_height=178 rollup_idx=10 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=180 batch_height=179 rollup_idx=11 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=181 batch_height=180 rollup_idx=12 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=182 batch_height=181 rollup_idx=13 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=183 batch_height=182 rollup_idx=14 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=184 batch_height=183 rollup_idx=15 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=185 batch_height=184 rollup_idx=16 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=186 batch_height=185 rollup_idx=17 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=187 batch_height=186 rollup_idx=18 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=188 batch_height=187 rollup_idx=19 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=189 batch_height=188 rollup_idx=20 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=190 batch_height=189 rollup_idx=21 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=191 batch_height=190 rollup_idx=22 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.564] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=192 batch_height=191 rollup_idx=23 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -WARN [12-05|10:10:14.565] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=253.787167ms block_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:15.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=228 batch=0xefa6d9bb8eabe9da530d98b4fddb00316bdba769662b8781c0936c6477c838b5 l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:15.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc4ae1ccc574111e5a5eb0e6c713349efeb7fdd91da31ec656f0c436f4f00e233 -INFO [12-05|10:10:16.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=229 batch=0x04825c0c189b4e8be8eb4cf4677f16ef7b02fc0b7df26b0d403ea7547e5c89e1 l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:16.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7a2fb40bb0bacdad2d0d5a9474b8cca28af1b546e02e7ca0feb6068633acf737 -INFO [12-05|10:10:16.093] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x04825c0c189b4e8be8eb4cf4677f16ef7b02fc0b7df26b0d403ea7547e5c89e1 batch_seq_num=230 -INFO [12-05|10:10:17.089] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=230 batch=0x8ab3bfb6a7eeb868908b3844a1626cdf3c757a508d0be689bc6789a8b788bfc9 l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:17.091] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd6badba0fa2f3cbcdb01d6b9768e766df971e5e92c59a22206955268f430fad5 -INFO [12-05|10:10:18.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=231 batch=0x76099062d502c44b051d738180df8af9b83350e74343e5ca38c9a01430f0c7fa l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:18.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xad3b50394da80c07e324f4a5c00abd1b1c17865c73789ba2b6e3d8e8b4003ba5 -INFO [12-05|10:10:19.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=232 batch=0x6679715b3155fa95dd1a309028c6d2c74b00fc1eb91a4d248c6d3e604c7ca55a l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:19.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xffc4af73416156d9239e69eb1bb4db07406bf4de904b4688c023af4353c26346 -INFO [12-05|10:10:20.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=233 batch=0x3e89f79824807e13a321ca4362b0b93599c86846e8512b3ae536f0b9692df34a l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:20.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x196bef3f1df8e5370ae790eb2175b2e62bed02f91e1a9b9fdf363f28ef198ffd -INFO [12-05|10:10:21.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=234 batch=0x21a1128fd19b78f868d4ff216361375410795229e095d05d3db11e2042820c38 l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:21.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0072808f9c885d51c731c4bde7631d62bbe4e73030821a0fcfc1604d02b0a3e6 -INFO [12-05|10:10:22.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=235 batch=0x1254de776be4125dea4249aca2259d705688e26b3a6a0165247380a8ef75928b l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:22.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa0426fa30efa72e6dac1aa0c0d85bd5fe440cd01a5d513a5b992d241641f2aa5 -INFO [12-05|10:10:23.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=236 batch=0xc5b086e1ea4241ec3e1944e52a543a2104f4e512168770154467e0ae02623934 l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:23.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x23b72cc76d5b3d036af15274f099c99e271b4cd0905096853aee20cddecb5aae -INFO [12-05|10:10:24.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=237 batch=0x214b8113714f6f01dcc544f20dbe4baa176d0fcf9e13079f6b5fd7ee819f41f1 l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:24.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfafbdaab12347c4335dacba4d3d419c63e641c5383acba02c6fa9ff5d8b87c21 -INFO [12-05|10:10:25.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=238 batch=0xb74b29b159d0945d8652bf6ee9dbd5437c0d58c321f3e01d9a71ddeb3d462193 l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:25.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5886261b64bb50572648ec23c9efa057c0f458a624114ba8780005cf4efaed4b -INFO [12-05|10:10:26.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=239 batch=0xdec845b560b6633af5f1f227817c675a85bc9c03db7d00f60b9875bd6fc5cd6e l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:26.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf970b0f931d82041c5a18b87dcf8133584598c0d04ab77d6e6a41b6636d1c100 -INFO [12-05|10:10:26.079] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xdec845b560b6633af5f1f227817c675a85bc9c03db7d00f60b9875bd6fc5cd6e batch_seq_num=240 -INFO [12-05|10:10:26.290] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=33 block_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:26.290] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:26.622] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x3c025e8b194073e7b70a2aa939a2861dba9a40020a5a4d1a0c208259ee64dcc6 block_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=181 batch_height=180 rollup_idx=0 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=182 batch_height=181 rollup_idx=1 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=183 batch_height=182 rollup_idx=2 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=184 batch_height=183 rollup_idx=3 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=185 batch_height=184 rollup_idx=4 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=186 batch_height=185 rollup_idx=5 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=187 batch_height=186 rollup_idx=6 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=188 batch_height=187 rollup_idx=7 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=189 batch_height=188 rollup_idx=8 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=190 batch_height=189 rollup_idx=9 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=191 batch_height=190 rollup_idx=10 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=192 batch_height=191 rollup_idx=11 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=193 batch_height=192 rollup_idx=12 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=194 batch_height=193 rollup_idx=13 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=195 batch_height=194 rollup_idx=14 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=196 batch_height=195 rollup_idx=15 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=197 batch_height=196 rollup_idx=16 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=198 batch_height=197 rollup_idx=17 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=199 batch_height=198 rollup_idx=18 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=200 batch_height=199 rollup_idx=19 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=201 batch_height=200 rollup_idx=20 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=202 batch_height=201 rollup_idx=21 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=203 batch_height=202 rollup_idx=22 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.623] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=204 batch_height=203 rollup_idx=23 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -WARN [12-05|10:10:26.624] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=333.098584ms block_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:27.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=240 batch=0x67f26885d68cfc20e2d7f6ba860589d2a9336c7e96938cdac5e6da607fe18c14 l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:27.092] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc468803fbcea95144af1ffd15221639c1c997f3d9b2ef0f587547a4795d20b35 -INFO [12-05|10:10:28.095] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=241 batch=0xa10d02c90c60d1a85767e6caae4c746e3f9d4a6dae310773d274456888f28238 l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:28.102] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5d3fc2437fd9099dc47a075b35fada23bf057228f0508b7dc254bc46c1c97537 -INFO [12-05|10:10:29.093] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=242 batch=0xd8c3f667cee1a03868bf7b118032688088e9ba9c0429eb3a5078a067df7a4c7c l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:29.101] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x783d86333a75d5f91054beac25eff322c1ae9b1aa8ddd28ec41adcea83a8712b -INFO [12-05|10:10:30.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=243 batch=0x591fc0726ab6aeda101bf52c03e6d27f1d68adb708446c475ab5b95bfec28c16 l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:30.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x98fb4caed5213b343d50f9cf0e6a9ed624331451d65c4ffb88ccf9b5aecf800c -INFO [12-05|10:10:31.091] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=244 batch=0x00c8798198ecec0aa753117f6e40158b9410b23ce9a95f909a5bda9ca82d4e6f l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:31.096] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc84e603d5851c0870ede1382ff13c7f5f492015662d83604d2019ad77cb5b417 -INFO [12-05|10:10:32.097] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=245 batch=0xb9b997658570b8d1efcc69cb73d848f6381e2e587963238d80c1ffdf0748b88b l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:32.100] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7c6730c7d1b9365a8e518c401526990147c55c0a7a059ce5ad34ff518afbc35a -INFO [12-05|10:10:33.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=246 batch=0xec1f977d0b6ad09c8e630794561f808ff69feee3293c4bd21fc9fbd3cf4b53d8 l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:33.088] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x304081cc4508e98fe041adc05927ef8d42e436c2066007b9d1aac7e8ac8fa06f -INFO [12-05|10:10:34.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=247 batch=0xaeb106c4da7b647c79abf4e2136094b858a6cb46056f6510730fb5876eebfc47 l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:34.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf9854d0219a47f0a7e899a1ca09d150fdd86c0ec38c72b19fc0630d250d0bef3 -INFO [12-05|10:10:35.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=248 batch=0x382f34157cc3cfcf3e2775e29374b0b1f71719ea615d16bef7c4069b68501237 l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:35.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xccde03e1b563a5432de723424b4b70cc928e261bcaaf63e4d79ee892980b3e43 -INFO [12-05|10:10:36.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=249 batch=0xa27a7f4accb66c396cf5dbdf7e5984a34143c681c7960717ffd75992143f3bcb l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:36.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3f4eb20365ed4b159ac5b7c31ff40918e355f7ce422945904d126256024a6ac7 -INFO [12-05|10:10:36.083] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xa27a7f4accb66c396cf5dbdf7e5984a34143c681c7960717ffd75992143f3bcb batch_seq_num=250 -INFO [12-05|10:10:37.089] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=250 batch=0x592e4aa668feefe75fe94ec846b70cf5f185e6277be8f79c7bfa61e0d579f04d l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:37.097] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd08b299fc0688de4ccf32df83a50725ea8a9a4f3f895bc4e5c598b436e871e92 -INFO [12-05|10:10:38.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=251 batch=0xb34c95bf04f00c2a8f7ebbaad4e4f390acfb41f31886a1e8c048692793ae881a l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:38.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa35a75c3a1a43e9475ccb9b4e3f3128207cf87741883645876dead8d6b8476c3 -INFO [12-05|10:10:38.331] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=34 block_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:38.331] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:38.680] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x3eef394156074cf235cbfb02cbe18515d67cd7f9816ce1f277d79bb6b9da3c4f block_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:38.680] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=193 batch_height=192 rollup_idx=0 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=194 batch_height=193 rollup_idx=1 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=195 batch_height=194 rollup_idx=2 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=196 batch_height=195 rollup_idx=3 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=197 batch_height=196 rollup_idx=4 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=198 batch_height=197 rollup_idx=5 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=199 batch_height=198 rollup_idx=6 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=200 batch_height=199 rollup_idx=7 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=201 batch_height=200 rollup_idx=8 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=202 batch_height=201 rollup_idx=9 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=203 batch_height=202 rollup_idx=10 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=204 batch_height=203 rollup_idx=11 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=205 batch_height=204 rollup_idx=12 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=206 batch_height=205 rollup_idx=13 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=207 batch_height=206 rollup_idx=14 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=208 batch_height=207 rollup_idx=15 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=209 batch_height=208 rollup_idx=16 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=210 batch_height=209 rollup_idx=17 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=211 batch_height=210 rollup_idx=18 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=212 batch_height=211 rollup_idx=19 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=213 batch_height=212 rollup_idx=20 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=214 batch_height=213 rollup_idx=21 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=215 batch_height=214 rollup_idx=22 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.681] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=216 batch_height=215 rollup_idx=23 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -WARN [12-05|10:10:38.682] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=349.768417ms block_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:39.091] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=252 batch=0x3f34bce6f0c61a6b0cd25a95c0d1b0f43d3ff9193f926a12ddac2d4ccd6a2f43 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:39.092] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb4931e63569ec4df969e119cb14cdb8801ee890a145b93cc32b57104b869b9bd -INFO [12-05|10:10:40.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=253 batch=0xa1f90ab3c6045733091c9b7a223217592c03b74fc6f1beab174d684fe30b4f67 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:40.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcd2c93e1066a728cd6f6ef6eb385fac36a4275b30720bf5bc0cd90853732f08e -INFO [12-05|10:10:41.091] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=254 batch=0x6bba9c08b14b5e9cd409937bd08aabcbf22d93650611ec12582c8e62f6c4b020 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:41.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x226aec5908a5246184897012e3bcb1f67d8f8b05ae502241c91cb4b67f9e1155 -INFO [12-05|10:10:42.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=255 batch=0xcd706506fdfbdd13264b715f953623171028baa06666b45d1c6f30e5c0ac2f0f l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:42.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd1083add9364be5226095621f70a097538e94974f14d4d1fde64ad865064649c -INFO [12-05|10:10:43.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=256 batch=0xaeebd285a5bd038589ac7f46c7c4eefbcd2b303dc159b0b5171ae6801f1a0db0 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:43.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa24010db6de6856456533478acc049ef93fce3af13e02c022cbaa9e195c06176 -INFO [12-05|10:10:44.088] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=257 batch=0xa2bd1c28628510ae36104905d0dd0e5bfa3e64a29b85ae8b5ecf38b7a5b62c23 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:44.090] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbacfada637a6095b9b4274ea0a6640ec4738fe564b1f1ebb3d3bd5e3d51fc210 -INFO [12-05|10:10:45.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=258 batch=0x90ab7a0df7793a6250ec9e7ce2b68d9cd290d1868fb88584f6b702dc09329152 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:45.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc85721c324c9bb474d73176ec0cf7a09d9e250e6e12df08605ce85ab668f964a -INFO [12-05|10:10:46.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=259 batch=0xbc003dfdd5960af57937e98b4e28150a189d01725df42d8d8b3bbf3d0646378c l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:46.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x48aa8294fb3bc88402c06ff8a7b3969dbd17f007960a6f07863ce96f315374e3 -INFO [12-05|10:10:46.089] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xbc003dfdd5960af57937e98b4e28150a189d01725df42d8d8b3bbf3d0646378c batch_seq_num=260 -INFO [12-05|10:10:47.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=260 batch=0xa3b5c854f74801ad907206cb79b4e406996d31f2f85e03d5d46bb80062ddf419 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:47.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa966951f7b405af4bdd807062aefc4a793e85000af1c6e45b40d7be252aa3396 -INFO [12-05|10:10:48.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=261 batch=0x10f9aa87c9dfa87ef6358086003781f57b685d14246d0cb0b033874e6f1083d8 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:48.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x56411b411a05f73fa33671cb61a8b19ad8a361f04d02c7b493686711a172e917 -INFO [12-05|10:10:49.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=262 batch=0xaac49261278788b7f4e0128d170065b5cfe6f1dbe2a05320fff0180f36badbab l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:49.088] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa6b21a8a7b12d6006109d589059f0a42d67bc3048847e6583155dfbbbedaf9ea -INFO [12-05|10:10:50.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=263 batch=0xd5f4fb9fb606cbd4e0b05a942e94929801877ff7e4252dd9ac2db78ec2d7dfe1 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:50.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf97659b55f18697edfaecb841efeebf191bed671e49fa3dc1bcf1a34a8ae8dd8 -INFO [12-05|10:10:50.302] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=35 block_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:50.304] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:50.732] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x29b7a866442011a36b2400e849dcbb9acaba94e29adcf593183e34bb132b5937 block_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=205 batch_height=204 rollup_idx=0 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=206 batch_height=205 rollup_idx=1 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=207 batch_height=206 rollup_idx=2 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=208 batch_height=207 rollup_idx=3 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=209 batch_height=208 rollup_idx=4 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=210 batch_height=209 rollup_idx=5 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=211 batch_height=210 rollup_idx=6 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=212 batch_height=211 rollup_idx=7 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.732] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=213 batch_height=212 rollup_idx=8 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.735] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=214 batch_height=213 rollup_idx=9 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.735] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=215 batch_height=214 rollup_idx=10 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.735] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=216 batch_height=215 rollup_idx=11 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.735] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=217 batch_height=216 rollup_idx=12 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.735] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=218 batch_height=217 rollup_idx=13 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=219 batch_height=218 rollup_idx=14 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=220 batch_height=219 rollup_idx=15 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=221 batch_height=220 rollup_idx=16 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=222 batch_height=221 rollup_idx=17 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=223 batch_height=222 rollup_idx=18 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=224 batch_height=223 rollup_idx=19 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=225 batch_height=224 rollup_idx=20 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=226 batch_height=225 rollup_idx=21 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=227 batch_height=226 rollup_idx=22 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.736] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=228 batch_height=227 rollup_idx=23 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -WARN [12-05|10:10:50.740] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=433.029334ms block_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:51.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=264 batch=0x3cc2229c451e332e745f7c9dc3844eac15e8d3140a532b2ff33bf15a1b7b4121 l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:51.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x46561f897d46929e1f4c07ed5783839d807d627aff47c6e18c2407a5cfd20244 -INFO [12-05|10:10:52.094] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=265 batch=0x31f86774902594dc8f0fee6de61a18b19119def00c9f5d0ee22d24007c2cd15e l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:52.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2edda273e7e4fcfa3c1af2d0a6ebabf073815a97752e9abae25dfdc2c9b6ce03 -INFO [12-05|10:10:53.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=266 batch=0xfb4671235211664f014432a489dd440c756ab95eaacbe6d34026224ffb038b4c l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:53.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x512d67b99941bf53498a4eb2cfadc346b3eb21e6e9209d046a39c9aaa3cd46c7 -INFO [12-05|10:10:54.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=267 batch=0xa1c94c0ef6073c8a7fabd3f61d6803403cb465589eb731a7017a6b1dd54357be l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:54.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc59910cd3f720b21e27388308a27e8c39ae9c9ad0ab657ec90ad425239eb8756 -INFO [12-05|10:10:55.095] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=268 batch=0xd60433900c651ba83157a34d7371bd86eada42f1c2d20a1db61edf65ff743e89 l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:55.097] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbbbb11559a76e5ea313fb74d1a7ab7eae0125d8300480f6501be14f69d13e9e1 -INFO [12-05|10:10:56.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=269 batch=0x6cc89322753b1de5bd82c98625c1c5cce3b73813a679d7c235748f903ae12e19 l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:56.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x823b1a75441c3404e634ad9814a05389069fe0f3afcd88ada73962313ca70225 -INFO [12-05|10:10:56.090] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x6cc89322753b1de5bd82c98625c1c5cce3b73813a679d7c235748f903ae12e19 batch_seq_num=270 -INFO [12-05|10:10:57.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=270 batch=0x6530060456665df2a9224304d4c2a3281b3360e2b5aaf8558ad210dc5c2f677c l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:57.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x74c952a5bad230b9a12ab2ff9f92bfca5e2891e3b0bbc4e9b9b69252c4007bc2 -INFO [12-05|10:10:58.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=271 batch=0xe45d6bcc3b3483b7e3e8fca1fcdc78881bebe3add2362a098525daf398631432 l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:58.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc1155b133830656f9a1471deb9f01887f6d78cf8c42221c9027e6cb297dc4465 -INFO [12-05|10:10:59.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=272 batch=0x304de96557089794a8dcc88c3ee0cfa2490147356387e0bfe440de65963cf374 l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:59.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb02cc2c99d57987959a00436fbabe51a3c445a64598a04f09f14f898b539c9e4 -INFO [12-05|10:11:00.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=273 batch=0xf66f902f66e16792106695e30e8dba654222182dad69a50b8aa074d1847463e6 l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:00.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x22bd4d2647ba84770d649bbdc8ba5dd9a59b90c0be1a2277a8fd7dec6e1c0f0f -INFO [12-05|10:11:01.099] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=274 batch=0xc89641e4c5065dab60c6aee450ee560eccc46c8c782cc25c74acac6747acad6b l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:01.100] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xaa9b9cbfa196e81fe17c5b015861eac6bc46ee24f6a72d646d08035db2623588 -INFO [12-05|10:11:02.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=275 batch=0xa6fdd7103a0c521b7187cd9cefbb53692dede9db359687866829ca1fdb504ca0 l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:02.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa313f8572f4fda5cfee626261d7ab014d90ff55f03bf9edbd532ba18e839ff9e -INFO [12-05|10:11:02.287] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=36 block_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:02.287] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:02.574] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x01ce8d23c079ad83a535249329f9b705ebf80317c8e0956b88c75b5d317a7a6e block_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=217 batch_height=216 rollup_idx=0 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=218 batch_height=217 rollup_idx=1 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=219 batch_height=218 rollup_idx=2 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=220 batch_height=219 rollup_idx=3 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=221 batch_height=220 rollup_idx=4 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=222 batch_height=221 rollup_idx=5 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=223 batch_height=222 rollup_idx=6 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=224 batch_height=223 rollup_idx=7 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=225 batch_height=224 rollup_idx=8 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=226 batch_height=225 rollup_idx=9 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=227 batch_height=226 rollup_idx=10 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=228 batch_height=227 rollup_idx=11 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=229 batch_height=228 rollup_idx=12 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=230 batch_height=229 rollup_idx=13 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=231 batch_height=230 rollup_idx=14 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=232 batch_height=231 rollup_idx=15 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=233 batch_height=232 rollup_idx=16 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=234 batch_height=233 rollup_idx=17 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=235 batch_height=234 rollup_idx=18 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=236 batch_height=235 rollup_idx=19 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=237 batch_height=236 rollup_idx=20 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=238 batch_height=237 rollup_idx=21 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.574] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=239 batch_height=238 rollup_idx=22 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.575] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=240 batch_height=239 rollup_idx=23 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -WARN [12-05|10:11:02.579] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=289.702458ms block_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:03.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=276 batch=0xaa8022570006a3bbba292fdf9e82173451ef1536887dbf7aded33e9596020895 l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:03.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x737023b4e977560912d7bce2e63748d5aaa4a08e83324dca7b8749c25fdb7ecc -INFO [12-05|10:11:04.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=277 batch=0xf7bd28382b4bcf99e51c916d966bf7d1594e78e1861d4141ade1ae814d3fbdae l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:04.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1509965b77288883a4a123e8159d2325b35fef4c36a75ee91aa182b9a40ed14a -INFO [12-05|10:11:05.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=278 batch=0x08b1ca1fe65e3fe665f04af2aa447857700b7dc146708556284faedcf79e1e63 l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:05.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4fa83e3be357ae22ba9b39a217c2e155417b0829e876191875cbad6b029effc0 -INFO [12-05|10:11:06.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=279 batch=0x77229894b7d244d1f16a7211c2024e9b8d90210fba21f214612ae2268dabdf63 l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:06.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x98c67f5a11f34c21c2e3ed737377f44b5cd339c8aa034d350e55776d2b313835 -INFO [12-05|10:11:06.083] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x77229894b7d244d1f16a7211c2024e9b8d90210fba21f214612ae2268dabdf63 batch_seq_num=280 -INFO [12-05|10:11:07.089] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=280 batch=0x8d6cda521107bc4c88110fc1a7e5630060ce01458292a10bd2b1a561091769df l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:07.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc90e3fe9525a593e97f404925cc84541433db26bb30dcae809572837e158fb8b -INFO [12-05|10:11:08.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=281 batch=0x02f91b462c84a85cbef98076b21af039e9ae3f4d598636c2203171b5ca403300 l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:08.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2866fdd15313119ddd9c34649cb41edfa96a92194c959243a5941715153aa859 -INFO [12-05|10:11:09.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=282 batch=0x3ba35c8e4a80a14915c67ba3b13937a248ecb8034105fedf1f0a55bbfdb2cc96 l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:09.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc966067a4cde7afdd7c2508a5669b8a021d7242bd0c66dac931ea0b8a3a3ac6b -INFO [12-05|10:11:10.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=283 batch=0xc3e1c096ebe8c5015b0f2378139074ff638989bf85f441ec42565bdefaa340f0 l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:10.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5a21a0efa2f09a39380f21ccd2599dd04885a49b2c89e2cffc1fe4aa745b8724 -INFO [12-05|10:11:11.094] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=284 batch=0x57c191c868a49ad4332e7859c8ef64419d04e70f0120267fd54befea9d9961ee l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:11.100] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x89728be1fd40ef8faee95d31cf5d61e27918a4988754ee2c1f47fc15315326dc -INFO [12-05|10:11:12.088] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=285 batch=0x32188721fee410fc1d036a51cf40da286e43741b7bd3f3d2ae16148928a84b88 l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:12.094] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x25853f055042f7ad374a0b466d51921ffb8a26761c2c2f7229a4c1cabfe3f800 -INFO [12-05|10:11:13.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=286 batch=0x9d96ef61c9716e9d50565f017f60239ba835d2429fe8b843f3a99b45d7ee27fa l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:13.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x212952403ee035ff0a76581ff6480f3744fa18e1d50e240b03a05eec9b74d2fa -INFO [12-05|10:11:14.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=287 batch=0x07e42f5fb701720f724e0b9f6a23c4c05ed2434385e42cb016db346a04482273 l1=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:14.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5508c14a9cfac9232269fc363c57431b5fd0e69781e4f5067e50aff4f8edfb0b -INFO [12-05|10:11:14.292] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67, L2Head=288), Host(L1Head=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b, L2Head=288)" -INFO [12-05|10:11:14.302] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=37 block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:14.302] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:14.699] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x49fcef6adafda45929d99de55937e7892ee71e76b3d1384eca4168149e2b3a9e block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:14.699] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=229 batch_height=228 rollup_idx=0 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.699] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=230 batch_height=229 rollup_idx=1 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.699] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=231 batch_height=230 rollup_idx=2 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.699] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=232 batch_height=231 rollup_idx=3 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.699] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=233 batch_height=232 rollup_idx=4 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.699] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=234 batch_height=233 rollup_idx=5 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.699] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=235 batch_height=234 rollup_idx=6 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.699] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=236 batch_height=235 rollup_idx=7 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=237 batch_height=236 rollup_idx=8 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=238 batch_height=237 rollup_idx=9 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=239 batch_height=238 rollup_idx=10 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=240 batch_height=239 rollup_idx=11 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=241 batch_height=240 rollup_idx=12 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=242 batch_height=241 rollup_idx=13 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=243 batch_height=242 rollup_idx=14 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=244 batch_height=243 rollup_idx=15 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=245 batch_height=244 rollup_idx=16 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=246 batch_height=245 rollup_idx=17 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=247 batch_height=246 rollup_idx=18 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=248 batch_height=247 rollup_idx=19 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=249 batch_height=248 rollup_idx=20 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=250 batch_height=249 rollup_idx=21 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=251 batch_height=250 rollup_idx=22 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.700] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=252 batch_height=251 rollup_idx=23 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -WARN [12-05|10:11:14.700] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=397.286584ms block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:14.701] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b, L2Head=288), Host(L1Head=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b, L2Head=288)" -INFO [12-05|10:11:14.725] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=37 block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:14.726] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:14.727] Rollup already stored component=test_log component=host node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc enclave_id=0x7143831b66bEA963342A98ce7bB957B1ec513c8B rollup=0x49fcef6adafda45929d99de55937e7892ee71e76b3d1384eca4168149e2b3a9e -INFO [12-05|10:11:15.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=288 batch=0xc9e2952c8243e9d3939f4af340539f30a03be0bb40e11110fd1cf429369021ab l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:15.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x22fb91a11c97b8f8c76102178c5c79b6a48ce8a7a8c5ea823a43d0a9f87000ac -INFO [12-05|10:11:16.093] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=289 batch=0x17fc3e73e22a58d3873b5a9d47d3f292220a199dc13ab8caa2e27c73f9033553 l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:16.097] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7745e029fdec5b2e5993f9880a8487bc055c215f9274b3f3295caab7c2abd8f4 -INFO [12-05|10:11:16.101] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x17fc3e73e22a58d3873b5a9d47d3f292220a199dc13ab8caa2e27c73f9033553 batch_seq_num=290 -INFO [12-05|10:11:17.088] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=290 batch=0xdd41c3107919086b410447fda4f937d92b77aa922c58c8459583d4e296a3302c l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:17.092] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x437248e2a8466f0129f254e2e61b47258ddb88c2aa19d018b6027c9c14d8ea80 -INFO [12-05|10:11:18.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=291 batch=0x3d1c7799f7faab211cc3c9c809eeb044b9ee49b8da3c4b12a3b21e0902d748c8 l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:18.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9b41cffe25cd3d5eaa815595f3208ae85ebfa537fdbf1c692e6f5d29a54f7fc8 -INFO [12-05|10:11:19.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=292 batch=0xfdd5163831c70f8235d074da46a2908920a57fcd74da686eac9b28166a928ec3 l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:19.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xee9a0dfe75eacb57badc584cc5f348d828111cb956b72f88dbbdeb0bb583f911 -INFO [12-05|10:11:20.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=293 batch=0x5699935553c4bc4c82ed0fdd57c580e59d9e01187cea92589fbfe74f0a2937a7 l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:20.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb35bae8162866d5e8a5e6de0306ca5d45eff61cbd09949d69cbc8d8c5e7f38ec -INFO [12-05|10:11:21.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=294 batch=0x3f91c031da2a09b40b8944a059ae752bbac745157a0deb65fde753d224a389e7 l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:21.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa8306178c5df1d3ef7fc78cbbfbad8b1321a67dd30744ef21be2cebc94642918 -INFO [12-05|10:11:22.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=295 batch=0x57ed9f20d22186de6cbbc96eb50b751655fb0796e0a2a03c6e37e1dc4e9de8ba l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:22.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x798c0c0156652666edcefd1bd59faf599779e9669f09d2017b04cf0365e8844d -INFO [12-05|10:11:23.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=296 batch=0xf5f50760652479ecc2b133a1d5787b35cbb05a7fde9509669016495a0813fd0a l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:23.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb4f705b596274db444d85ed17e5e2c739cadc045004e0d2644874513a6ddc2b2 -INFO [12-05|10:11:24.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=297 batch=0xe94b2d29bbc98819d10100800656a138063ebbec251cb60f20e08c46893def2d l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:24.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x72a3e210bd65f9e9883b08bf8f55e9d4e990643b65ca8853d2b1709729ee327f -INFO [12-05|10:11:25.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=298 batch=0xe463628bfa9ef4f858463b2f5e18e99d7f02059be5fb6d144a73da1a329130fb l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:25.088] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4f2ec0c2a3a7648498dbfd28958e29380266f2c6ca8794bd44b9a4e741b7f650 -INFO [12-05|10:11:26.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=299 batch=0x86c25c99c5e9ae6bca23b87bf2c4b1413dcddf33f808c176211edc7dba537d1a l1=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:26.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9b9d28ad80df460fcaea3eca7bb02d1f6ba3136d6819c0d51e6e578eaf5e75e8 -INFO [12-05|10:11:26.076] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x86c25c99c5e9ae6bca23b87bf2c4b1413dcddf33f808c176211edc7dba537d1a batch_seq_num=300 -INFO [12-05|10:11:26.286] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=38 block_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:26.286] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:26.721] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xed5eedbfa33185828ab454ce1a25e5524f8108477fea9697d008e80e4c529815 block_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=241 batch_height=240 rollup_idx=0 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=242 batch_height=241 rollup_idx=1 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=243 batch_height=242 rollup_idx=2 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=244 batch_height=243 rollup_idx=3 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=245 batch_height=244 rollup_idx=4 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=246 batch_height=245 rollup_idx=5 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=247 batch_height=246 rollup_idx=6 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=248 batch_height=247 rollup_idx=7 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=249 batch_height=248 rollup_idx=8 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=250 batch_height=249 rollup_idx=9 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=251 batch_height=250 rollup_idx=10 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=252 batch_height=251 rollup_idx=11 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=253 batch_height=252 rollup_idx=12 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=254 batch_height=253 rollup_idx=13 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=255 batch_height=254 rollup_idx=14 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=256 batch_height=255 rollup_idx=15 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=257 batch_height=256 rollup_idx=16 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=258 batch_height=257 rollup_idx=17 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=259 batch_height=258 rollup_idx=18 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=260 batch_height=259 rollup_idx=19 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=261 batch_height=260 rollup_idx=20 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=262 batch_height=261 rollup_idx=21 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=263 batch_height=262 rollup_idx=22 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.721] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=264 batch_height=263 rollup_idx=23 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -WARN [12-05|10:11:26.722] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=435.41425ms block_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:27.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=300 batch=0x1ea59359aec77fff0dae6501b8efee3c9097d9d364ecdf72fa205e41ce605e33 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:27.094] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc71b5c6fb09bf98ab0b3f0cc69dc19a1ae70f821c61fd31603efc531a771d17e -INFO [12-05|10:11:28.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=301 batch=0x7e11c74b40851f45ac9eb6ab7f02c7e25341a25eaf1ec30ace61095b721876d2 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:28.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x885bf0ae774f0dda527c881615d8cb32b9879c2b7767c8f0abaaf86902ea2bfd -INFO [12-05|10:11:29.089] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=302 batch=0x1405da4b406691e18a962a23469850a3b0955687c2ee0c3208cc8b4a757c97a8 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:29.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x39fc4d6c2788a99def5f868d516a084130ba9069650116acb6fbbdb4c2ab179f -INFO [12-05|10:11:30.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=303 batch=0x7aca7a52723683c1166c5b04712391bd73a8cbbf00007ecb2486464ad3687da9 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:30.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4adfe1057e28f7ef3ae160c9327b6282c20629d69074f33d85a44c39fa363a15 -INFO [12-05|10:11:31.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=304 batch=0xa925a4a544e291dc7d13211a8c225d7d7af0b403a8736cb7ad7a0039c3a718c9 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:31.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbe103ff5a146796e35be337f895c67db3ca76eb8293d3278cb1b56f2af2ce8dd -INFO [12-05|10:11:32.093] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=305 batch=0x8892a71d7f77e08322fd8edb2423d6f9b8593ad28f130d2ea52d43342fc59504 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:32.100] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x96a029a1ebd3f70fd4db53d6e9b15c162c6adb792642416ba07d14876ebbe734 -INFO [12-05|10:11:33.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=306 batch=0xa8526a2f96fa89be3f8563b3b7629f5e9781b55eb607507b3cf3397897ed3395 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:33.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x167c45ae2eeda72859048a209ce2481eac8f05f09f82d63a45b42e97e38c8093 -INFO [12-05|10:11:34.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=307 batch=0x6866fe5781f8d9adb14d1f1da218fff3f08a0b1e8d47ba38a124a0171fae7227 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:34.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x45003380f73a4efa80dd69a64c511c9859c78462dbc456d48ee119432fef8d72 -INFO [12-05|10:11:35.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=308 batch=0x8abf94ddbc4d7bd6fcc860f64205a677d79c426c6f9dd63a5938107d86a1452a l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:35.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5be7e66bf69b32b58855ddcc0fbd0a7b12ac2018f199115c0ccfaf6f2b2abc66 -INFO [12-05|10:11:36.094] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=309 batch=0xef921b4b7729d9a4266d4ea1bdf9c8630912eb5a275aa3af67836e7806d9556e l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:36.095] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xeecf3e697b06032d625efe3a560632a594cdd642f4f70ed723938f5248ad0e89 -INFO [12-05|10:11:36.096] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xef921b4b7729d9a4266d4ea1bdf9c8630912eb5a275aa3af67836e7806d9556e batch_seq_num=310 -INFO [12-05|10:11:37.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=310 batch=0xb39cb6362f0014084ee55d152d4ca53e1b67d5dc00a602f4aa77aa1614c3c793 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:37.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1c12cb297296e067242a7062abf591d6d5920b3a0ca3281e2783e9d76fe05895 -INFO [12-05|10:11:38.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=311 batch=0xc80e6c15053e8a9c418970d3b217734f19759a334d9b82ca7f91b3400436a420 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:38.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcedda15d2e0d01d1bfe2982139988ebfd4dd2d0b4d313a788c95d09f26f4cdf7 -INFO [12-05|10:11:38.279] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=39 block_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:38.279] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:38.652] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x9a0552faa9e818a5a6ae86c2dcbb435e8fb3c13f77b5cbd56180c90c59fafbbe block_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:38.652] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=253 batch_height=252 rollup_idx=0 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=254 batch_height=253 rollup_idx=1 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=255 batch_height=254 rollup_idx=2 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=256 batch_height=255 rollup_idx=3 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=257 batch_height=256 rollup_idx=4 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=258 batch_height=257 rollup_idx=5 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=259 batch_height=258 rollup_idx=6 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=260 batch_height=259 rollup_idx=7 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=261 batch_height=260 rollup_idx=8 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=262 batch_height=261 rollup_idx=9 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=263 batch_height=262 rollup_idx=10 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=264 batch_height=263 rollup_idx=11 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=265 batch_height=264 rollup_idx=12 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=266 batch_height=265 rollup_idx=13 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=267 batch_height=266 rollup_idx=14 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=268 batch_height=267 rollup_idx=15 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=269 batch_height=268 rollup_idx=16 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=270 batch_height=269 rollup_idx=17 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=271 batch_height=270 rollup_idx=18 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=272 batch_height=271 rollup_idx=19 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=273 batch_height=272 rollup_idx=20 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=274 batch_height=273 rollup_idx=21 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=275 batch_height=274 rollup_idx=22 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.653] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=276 batch_height=275 rollup_idx=23 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -WARN [12-05|10:11:38.654] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=373.558583ms block_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:39.095] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=312 batch=0xea5a69cba2437911c039d073d5df918fa6d4993ea98ec22bdb673b64d3a36b29 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:39.096] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb4e15803fcbb9a0a1d3aec3948f84663fcb7fae7ed8b0763e40fc96f9866ff2f -INFO [12-05|10:11:40.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=313 batch=0x515f0ab3d27100950f4561c78d207776898a8b31d0620f2ed2dbbce90e574af9 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:40.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x53048e2b81a43a72f5546569cc335e2d68ed062942e37fd0a7e57ca3cf74690e -INFO [12-05|10:11:41.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=314 batch=0x7e0763c966ca5b35e0878db17455c1393c83d37c651f15a91b6c9bb35e17c6f2 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:41.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x512223a9f091ed5c06da88c99e0e06b67c93033e280ddc19331e6a95d05956d3 -INFO [12-05|10:11:42.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=315 batch=0x717aeb44fd3b7cfaa8978c84b495786f41a4ed53b9a8e48ba1be313e8c807b0e l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:42.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x76035a36366a07ee954246e6c38c177ed3cb85b6d1f4090f59789dc476460d7d -INFO [12-05|10:11:43.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=316 batch=0x101008e8f250a42d3d385e79635b394f4b77e74064e29fd3ffca258e45b7b00d l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:43.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0fb2aa997c0e037505c0d5611961aec0c83fd0449e7fdb60039ac4ba1153e2d6 -INFO [12-05|10:11:44.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=317 batch=0x860d05ddf3adaa103b1591709b2c9c98ed1c7bf27335fd05b22c739a34a84d46 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:44.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5a96c5397c485eefc80c5e72e5d092fda11fad8a563a801de30c40fadff5a3c5 -INFO [12-05|10:11:45.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=318 batch=0xbb91e7c814b6076f9f2b72503602dd17e99926129c4900a3f9dc29f8a877e326 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:45.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa2e66d20af5d89bd8f5091385d318d005a39917edd574d0872be9a791b4c16d9 -INFO [12-05|10:11:46.088] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=319 batch=0x78c175276004f8eeb93bb964111eb77d898e92429c9ce66bdd40f0c6662506c9 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:46.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3ad851bc5396c73c7800a3a30a0dc5307540dd9fd3f619dd0edfea913a08e36c -INFO [12-05|10:11:46.090] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x78c175276004f8eeb93bb964111eb77d898e92429c9ce66bdd40f0c6662506c9 batch_seq_num=320 -INFO [12-05|10:11:47.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=320 batch=0xdfc8de988abb9e964f2a7f4304ddba73e89626e2bf4cff6192c82572345a72f5 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:47.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9063a8587dbdd6b4fb1255308c9e4c3e907ac44b5f3d8c615d1eadd60ae951f0 -INFO [12-05|10:11:48.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=321 batch=0xd5a92bed13cae2e407a4cf85007f894c2a48f35ad1d0d23f4b1999c35aecb067 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:48.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x331fb28679070f7347591f75f1c671dcfb8b8e1d88017dfb9f5da966985325e9 -INFO [12-05|10:11:49.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=322 batch=0x06c26f0b0eb044a4255a03887f005f627809d18893d19c6730611b1c146fba7a l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:49.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x988290eddee39a7ed4c6c69b81de8f346310c97d6997a8ec15e0c3de6be0a783 -INFO [12-05|10:11:50.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=323 batch=0x559531a0d60c0aa3735434ab95acbd9ee02641fe65de8dad784d35c3b6dc5326 l1=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:50.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd9698e671e7ec5b5d49cc0befd5d42ebe538cacb05eac7ac8f8b9e04fbe4852f -INFO [12-05|10:11:50.274] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=40 block_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:50.274] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:50.710] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x42f90b441bebebc751b255b22c2f6ecbc497f868c1613da05e8391e63be9f339 block_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=265 batch_height=264 rollup_idx=0 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=266 batch_height=265 rollup_idx=1 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=267 batch_height=266 rollup_idx=2 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=268 batch_height=267 rollup_idx=3 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=269 batch_height=268 rollup_idx=4 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=270 batch_height=269 rollup_idx=5 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=271 batch_height=270 rollup_idx=6 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=272 batch_height=271 rollup_idx=7 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=273 batch_height=272 rollup_idx=8 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=274 batch_height=273 rollup_idx=9 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=275 batch_height=274 rollup_idx=10 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=276 batch_height=275 rollup_idx=11 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=277 batch_height=276 rollup_idx=12 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=278 batch_height=277 rollup_idx=13 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=279 batch_height=278 rollup_idx=14 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=280 batch_height=279 rollup_idx=15 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=281 batch_height=280 rollup_idx=16 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=282 batch_height=281 rollup_idx=17 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=283 batch_height=282 rollup_idx=18 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.710] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=284 batch_height=283 rollup_idx=19 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.711] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=285 batch_height=284 rollup_idx=20 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.711] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=286 batch_height=285 rollup_idx=21 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.711] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=287 batch_height=286 rollup_idx=22 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.711] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=288 batch_height=287 rollup_idx=23 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -WARN [12-05|10:11:50.711] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=436.398916ms block_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:51.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=324 batch=0x798df134add11771f6e1430954595e4365c141b44a02b0261038009f9309a2a8 l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:51.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x418f0f023d92d37aa46d44a46b974f9dfc0d996b964cb17cdc731b26f9922cef -INFO [12-05|10:11:52.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=325 batch=0xe8e3336a5dbd0801999e34a21260700fe9a2edad43fb572f7289820af1ffa5be l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:52.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xed0e33e7fa9595326c5e0cae829b38dcf8ec0d8563a0fbc746fb919359833be0 -INFO [12-05|10:11:53.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=326 batch=0x531158b8d8165768d54e6872a994fcf84204b72d866d78cc8ce81561899fa5f3 l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:53.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3b6d0c7c13db405411c16a35c60f0167a99a38bb5d1f1c7130d125b67d306b43 -INFO [12-05|10:11:54.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=327 batch=0x661a4acaf4d9f6e5c8c894d24aeb29299fc24f09b6e5e41404a6fd265018f253 l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:54.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xda7900856f9768f3a6c4256bf011eff82fa24e7eaf1bf6153df0176fe5cac3e5 -INFO [12-05|10:11:55.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=328 batch=0x110fbef55e012dad1f3c0c5cb00e0b7ca8f0c9a03ac0867e0217fa0638abe0fc l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:55.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xddeb708befb557e51f61a7b615070b63a8d6204548e963bd9c926812d76b1dc5 -INFO [12-05|10:11:56.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=329 batch=0x36d0b1c80292f99718922dd1c611693a71f89baf6b3ccc2c2abfcbec60b152b7 l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:56.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2245a41522c1598746a0cb541307ee16d86e5deb15861043578e7b3d1660759f -INFO [12-05|10:11:56.092] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x36d0b1c80292f99718922dd1c611693a71f89baf6b3ccc2c2abfcbec60b152b7 batch_seq_num=330 -INFO [12-05|10:11:57.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=330 batch=0x2009e1930c287f4f53b260448470b98e0bc4c74185c544b5f66e094ebd5fa14a l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:57.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x85ebc689c3b9aaf8fb1c581443ebd7119920918cab40eafcea07895ca37403c6 -INFO [12-05|10:11:58.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=331 batch=0x280fbfbfdc1d7e71efa4830fa5422b6356ddcc85e6c26f09087a1e7f29a959d5 l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:58.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5a64eead7a46bb3c96768c8ef7e7e6a3c8b445319ccd1bc15f3893a1319945ba -INFO [12-05|10:11:59.092] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=332 batch=0xa2f00f910bc12da26865a3f00028d0de9fc908d57b6cf9338b262550c5976241 l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:59.094] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3243ee08dd63dd10a03440de2a307bd5474db5617ba5cee392866e3e945d57ec -INFO [12-05|10:12:00.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=333 batch=0x1b90050c2e50c61e307b6464df7ca6cda01d130d9fa0455279fc82e6304e693c l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:00.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc5469a66dd59de9d70bc30de67e8b759604045539c8570f6583eeaf31d69178a -INFO [12-05|10:12:01.085] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=334 batch=0x86f14c8609ef689607a1946b681f2503bb94b1f9ec56879ac2cf6a16fc5c591d l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:01.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3c58c6997fa0453016bb3264634b8fb6d31ae7613d7d52410129def8a52729b8 -INFO [12-05|10:12:02.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=335 batch=0x353ff4f8074b628e8ddb2359ea83ecc1d91a4e83fd3a93cf858fc0ca5b7ebae3 l1=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:02.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3dd9a49c3d1b4da738539c720f711aa5779f2ff278e1d61459db8ac197358a02 -INFO [12-05|10:12:02.295] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=41 block_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:02.298] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:02.464] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x47cb9867c412f2ad6adab786c59ca3c1f4ddd05d8923fb7077154db11d119c60 block_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:02.464] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=277 batch_height=276 rollup_idx=0 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.464] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=278 batch_height=277 rollup_idx=1 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.464] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=279 batch_height=278 rollup_idx=2 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.464] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=280 batch_height=279 rollup_idx=3 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=281 batch_height=280 rollup_idx=4 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=282 batch_height=281 rollup_idx=5 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=283 batch_height=282 rollup_idx=6 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=284 batch_height=283 rollup_idx=7 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=285 batch_height=284 rollup_idx=8 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=286 batch_height=285 rollup_idx=9 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=287 batch_height=286 rollup_idx=10 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=288 batch_height=287 rollup_idx=11 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=289 batch_height=288 rollup_idx=12 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=290 batch_height=289 rollup_idx=13 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=291 batch_height=290 rollup_idx=14 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=292 batch_height=291 rollup_idx=15 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=293 batch_height=292 rollup_idx=16 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=294 batch_height=293 rollup_idx=17 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=295 batch_height=294 rollup_idx=18 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=296 batch_height=295 rollup_idx=19 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=297 batch_height=296 rollup_idx=20 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=298 batch_height=297 rollup_idx=21 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=299 batch_height=298 rollup_idx=22 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.465] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=300 batch_height=299 rollup_idx=23 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.468] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=168.954416ms block_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:03.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=336 batch=0xe02b860d5cec143eabb85ebf9b2ddf1f3234bc9c83dc5cd799452923eaefe335 l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:03.090] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe85d6e30e328de1e0563bee3d13fb417410c96159bf21d2016f1dc4cb3e1ef4d -INFO [12-05|10:12:04.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=337 batch=0x96c0d9934bbaef015515764e6317717354df46dd6b6eb2d8955d05bf80524f3a l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:04.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4ab912eaa12b4498b27edf50d461a8d9e193883a7c851b58fbcf6ec3a97ead58 -INFO [12-05|10:12:05.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=338 batch=0xb47a983e07a29e60f28bfd768f1d5e57d44c164254f66f3f4c450fee614689e3 l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:05.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x280b9fb9890becc003c55e71dcd585c95b6b91e070ed193c15a1bb4af93ccfa2 -INFO [12-05|10:12:06.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=339 batch=0x52e2951f2b54fed3876418cafc80afb062089f3c9ac5ad21ea85daa6fdd910c1 l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:06.090] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4d8fc52759e88d7dd9c58826c39bc3673fd24bff57f3c25cd90c3d7dd233d6a2 -INFO [12-05|10:12:06.091] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x52e2951f2b54fed3876418cafc80afb062089f3c9ac5ad21ea85daa6fdd910c1 batch_seq_num=340 -INFO [12-05|10:12:07.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=340 batch=0x1079d1117b06c0c75b2fb44e973f84b7fc3e3b5742a6534494ad73b4b8f9cabb l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:07.090] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6e762cfe19f4b22bff8274473dc75493cddc7b6a3c7789039c69e2f4dca9503d -INFO [12-05|10:12:08.088] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=341 batch=0xbf2c929ef82ab539565dbc4d4f2998aced9bae3fc6d14df22ce15034e9f7790c l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:08.093] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf090805a6944f33c2ba61e4fb4d516ddcc664c8f2922f74a05ced91b97de8759 -INFO [12-05|10:12:09.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=342 batch=0x759c72735176f39ef06ee0c32a76bfe5e9c3fb2b07edc2f090b422ff845d82cb l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:09.089] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x04fb655154ea5681443453c42b31bec8bae3216d223120de84b79c324854981d -INFO [12-05|10:12:10.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=343 batch=0x5452b07c89988c4d4a97ad466b31dd7af192b10e38cc44bd02a39262fed2f042 l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:10.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa2a9930f28969328dc57acbabbe194c8ecaf9d74ccf84c9e0e73dd94be6cd77d -INFO [12-05|10:12:11.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=344 batch=0x4f163844fc1d956394aa38aaa46e0f760c82f685a28af57e46ed1a5c4d4da87f l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:11.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9d2f722d58c33c4a5e8b702b10ee63ce637c8faa7973d4e3feef648f1881f9e2 -INFO [12-05|10:12:12.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=345 batch=0x8f6054f02d20abeda7ec6291f430e72d42cf4ba9e7c67c6746bd19868f95e0c1 l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:12.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4f65e4085bdc4ef96985621df1f0d2522dc7f430ef04e8d2ce96beceb4a08154 -INFO [12-05|10:12:13.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=346 batch=0x533445ab01bc41eda12d3b520b75166f0679f3a0de23098ecc6c04f613cfcc9f l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:13.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa413087650b425b472e69930d31e3be292299f71067e82ab47852441e11d9b7b -INFO [12-05|10:12:14.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=347 batch=0x35d0494af526401c708e17bce7d31bfa1bc3b3fe7f422e8df51dbd995d26bdff l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:14.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x921f063bb50e7d54399dd3a561cecdf9cda870873e5e73973d71e2d36bc24e60 -INFO [12-05|10:12:14.271] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=42 block_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:14.271] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:14.580] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x66d4ab200915935fe1ff083c73f010f56a9632eeb908ebe811cf7e9492303051 block_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=289 batch_height=288 rollup_idx=0 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=290 batch_height=289 rollup_idx=1 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=291 batch_height=290 rollup_idx=2 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=292 batch_height=291 rollup_idx=3 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=293 batch_height=292 rollup_idx=4 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=294 batch_height=293 rollup_idx=5 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=295 batch_height=294 rollup_idx=6 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=296 batch_height=295 rollup_idx=7 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=297 batch_height=296 rollup_idx=8 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=298 batch_height=297 rollup_idx=9 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=299 batch_height=298 rollup_idx=10 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=300 batch_height=299 rollup_idx=11 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=301 batch_height=300 rollup_idx=12 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=302 batch_height=301 rollup_idx=13 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=303 batch_height=302 rollup_idx=14 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=304 batch_height=303 rollup_idx=15 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=305 batch_height=304 rollup_idx=16 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=306 batch_height=305 rollup_idx=17 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=307 batch_height=306 rollup_idx=18 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.580] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=308 batch_height=307 rollup_idx=19 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.581] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=309 batch_height=308 rollup_idx=20 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.581] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=310 batch_height=309 rollup_idx=21 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.581] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=311 batch_height=310 rollup_idx=22 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.582] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=312 batch_height=311 rollup_idx=23 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -WARN [12-05|10:12:14.582] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=310.634666ms block_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:15.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=348 batch=0xe7fb4c8f335ae42dc5e00e850da21ef282ffbebcff2db8a61fa908fdc7019688 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:15.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf9c3bf90b462bc0a0d5ee6a1cb087e14378dee67a2c18ee54d53aa741cb86438 -INFO [12-05|10:12:16.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=349 batch=0xbcb00e7b9375b677b1d15a1adcdeddfe7974c7e0492c3cb1804d3e80b728b341 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:16.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x594b5fa6c9e5532738f7e3d0479243ef20be9ac4327346892b2d85d4076316b2 -INFO [12-05|10:12:16.085] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xbcb00e7b9375b677b1d15a1adcdeddfe7974c7e0492c3cb1804d3e80b728b341 batch_seq_num=350 -INFO [12-05|10:12:17.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=350 batch=0x17dcb876d50dc77a14dae2a955e62a96ab5f59da16d2752a9f67943f05ce28c3 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:17.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xcf87c4965fb2bf9fd4ae25bbcd43b96e55b01ef2b0972def74df0a45bf28d5f8 -INFO [12-05|10:12:18.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=351 batch=0xc9c2511ea32d1b2c3fa4a78d38c48dc1eb025a95d59ce1aee9a13e666acec047 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:18.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa183d02c65f37fdb292f0153a9672a71e0e696cd712e2a534e77d82a1a5e90b4 -INFO [12-05|10:12:19.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=352 batch=0xf6bbb953cfd8296b86812cb0f8eb3b665559a8f1d36bba11af8e106fd404d7f8 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:19.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa00c5c7c3f218bbb5b539ac804c90b619a0679f47ab2570879407de1cfda8a70 -INFO [12-05|10:12:20.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=353 batch=0x6c9621347ad704563d15eca0542a7a5757a4d1e9a3f00dc9df05f5b0c88c88bd l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:20.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7aa392a464e48ee41e262f420e2858385c8d607f2feb2387dc131cb98612ecc6 -INFO [12-05|10:12:21.087] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=354 batch=0xe3bc9c6f36680ebcbc2e61d891c7cfda8b158dcbd7ffc378ae82e9a29c466710 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:21.087] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x22b14926d2186ee111ad98d6ccd52cb607357df93cdffee5f6c1249169bc4f5d -INFO [12-05|10:12:22.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=355 batch=0x8b31753de7e164918a39df95c6e5d83205e2155fc253a42d58edea6df6496bd0 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:22.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x05d19fb3ec6dd405adeba342a5573a1424eb5b36c387a3cce7f283aee0659836 -INFO [12-05|10:12:23.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=356 batch=0x0ca0f27f687263554a92b9537fb04cab043476c55e8b0afaa51e2ba23a9304fe l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:23.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xabdc1903acf9d3eef64e22456a771920413a3b541d753cb55e8ff282f99e1a29 -INFO [12-05|10:12:24.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=357 batch=0xe5a4933e267b724cdc9b78acee4e4625de197dd064cac6d86a0f08aa7829cfe3 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:24.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3fe85eb1de13598b8c0afd663bc2153ef7511a262b0252b8eae18b83cc92a1f9 -INFO [12-05|10:12:25.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=358 batch=0xb5602b3c793833708b8758b2de9a10d8d8af44c39520ffa5f75f331462a6c837 l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:25.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x263e706500d016072c9b1bcfbc1f842c81cf3ec36a5f3a0f591a52f0dce56cdb -INFO [12-05|10:12:26.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=359 batch=0x6a94859b3c71875c4801c751d8df637c48651d7248fd0ca485b8413bfbcff44e l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:26.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1da492834f8f8fdacf8f6a85d771158c64936a2fa76b892fdabe73394d3ba5b8 -INFO [12-05|10:12:26.079] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x6a94859b3c71875c4801c751d8df637c48651d7248fd0ca485b8413bfbcff44e batch_seq_num=360 -INFO [12-05|10:12:26.274] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=43 block_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:26.274] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:26.629] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xc28f9cc9a4288c8d37d2b5b46cd82bc33e5eafc76d82c0163c8a8f50892e821b block_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=301 batch_height=300 rollup_idx=0 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=302 batch_height=301 rollup_idx=1 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=303 batch_height=302 rollup_idx=2 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=304 batch_height=303 rollup_idx=3 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=305 batch_height=304 rollup_idx=4 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=306 batch_height=305 rollup_idx=5 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=307 batch_height=306 rollup_idx=6 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=308 batch_height=307 rollup_idx=7 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=309 batch_height=308 rollup_idx=8 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=310 batch_height=309 rollup_idx=9 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=311 batch_height=310 rollup_idx=10 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=312 batch_height=311 rollup_idx=11 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=313 batch_height=312 rollup_idx=12 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=314 batch_height=313 rollup_idx=13 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=315 batch_height=314 rollup_idx=14 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=316 batch_height=315 rollup_idx=15 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=317 batch_height=316 rollup_idx=16 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=318 batch_height=317 rollup_idx=17 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=319 batch_height=318 rollup_idx=18 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=320 batch_height=319 rollup_idx=19 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=321 batch_height=320 rollup_idx=20 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=322 batch_height=321 rollup_idx=21 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=323 batch_height=322 rollup_idx=22 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=324 batch_height=323 rollup_idx=23 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -WARN [12-05|10:12:26.631] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=356.185417ms block_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:27.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=360 batch=0x2e543e308cab59052e19cd1c220d0887b4b1681181e423e8b821a5c875709b53 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:27.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3e3284036ce3d6007302f548d0139ee2ada282ccb6fe6d4747b0b6c3f3639ff4 -INFO [12-05|10:12:28.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=361 batch=0x5b4831fd558fd446517590fbca75933838c04806bacd33da9653c46de5781dd2 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:28.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x308eab3c62e0eaae51043e9874621534676a0c6b735da6c6da6b3c7fda1b778b -INFO [12-05|10:12:29.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=362 batch=0x8a93449f91c9adca4b44719540ca2fdec036b635aecdaaa92b31cb9234615681 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:29.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xec119bc3651cab9e8367d5039616a4a37b004d3b8eb0fd46c3c5cc538f5514a7 -INFO [12-05|10:12:30.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=363 batch=0x22444e6ab5a7438bc3dcf0c7176278409c06ea3a5a9db08c346a70745aab94e1 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:30.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdf8dcff6c6d7d15838d5b5d2e62887fafe5f3a06f8ef974f233a019d773601d5 -INFO [12-05|10:12:31.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=364 batch=0x4146d7c5e4ec60a9e27e0ff4b1e479455e3df6905f10d4d8d22dfb159252c372 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:31.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbf47cf9ca45a4cfb9de2aaf31e41eb4967f3d330816d8584d169ca780398ea43 -INFO [12-05|10:12:32.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=365 batch=0xc8a5512f28fee0975f73dba8d5f7e020ff8a06e2c0ad0813f6644340f3edd1b4 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:32.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x48645be2b91f4a7058a12e003279ca68ae613fbb095485c2d9e594fae0dcfd3c -INFO [12-05|10:12:33.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=366 batch=0x2d54bb4cfa2dd6d32420460952aca8f9c979eb9eaf5276014c09dd1e389513a6 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:33.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x56f3ccb31de5f11d45df5c6b20bb6dfbe2d3561698304ca837622b0a8fdb5ff8 -INFO [12-05|10:12:34.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=367 batch=0xd3447f0196137de74219aad6348ddeee07dd52bfc9a55b57f3aff9a76d82c1d4 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:34.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd8ecf2255a77b9e98be4f6e66d4161c1db8a1430a20c0d42d020527c66b714ac -INFO [12-05|10:12:35.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=368 batch=0xc3939efbaeb932a971d8fb5e37bd4805aabbcb10155e7ebbb3b8989c1225b25f l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:35.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbbb73f9585bad39cfbfed63aa700a47a274950b3270ba5612f773d09c8f36846 -INFO [12-05|10:12:36.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=369 batch=0x1e478922edfea4831b2893de5f5ab43e0b8abbbe86d5d9630463df55e393c1d6 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:36.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0a1ef47ffcec1d2e4a92a50372de2b6fa319a8dc4caaacd80cc7c09076a31975 -INFO [12-05|10:12:36.075] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x1e478922edfea4831b2893de5f5ab43e0b8abbbe86d5d9630463df55e393c1d6 batch_seq_num=370 -INFO [12-05|10:12:37.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=370 batch=0x63f51c51c70354c109514c3339752f7ac5f4097b7a5e9a3e5891811bf977f595 l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:37.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x36ab59c847dd91be389d0fd6f42624f039e8fbb1bee348cdfca7ae81d5a68e3e -INFO [12-05|10:12:38.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=371 batch=0xed4127d0df08219ee4837f6da338745f3afd281e2c8fab5d26bf5d367f64de2e l1=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:38.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5bc1e72b55d65da0ae4dec37adac991c14a18568a4af59059a8523ee76a599b9 -INFO [12-05|10:12:38.261] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=44 block_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:38.261] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:38.682] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xd966950629a9f4d84d2136ddc68b489642523e04bb295e0d74813c2840cdf557 block_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=313 batch_height=312 rollup_idx=0 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=314 batch_height=313 rollup_idx=1 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=315 batch_height=314 rollup_idx=2 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=316 batch_height=315 rollup_idx=3 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=317 batch_height=316 rollup_idx=4 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=318 batch_height=317 rollup_idx=5 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=319 batch_height=318 rollup_idx=6 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=320 batch_height=319 rollup_idx=7 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=321 batch_height=320 rollup_idx=8 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=322 batch_height=321 rollup_idx=9 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=323 batch_height=322 rollup_idx=10 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=324 batch_height=323 rollup_idx=11 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=325 batch_height=324 rollup_idx=12 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=326 batch_height=325 rollup_idx=13 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=327 batch_height=326 rollup_idx=14 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=328 batch_height=327 rollup_idx=15 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=329 batch_height=328 rollup_idx=16 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=330 batch_height=329 rollup_idx=17 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=331 batch_height=330 rollup_idx=18 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=332 batch_height=331 rollup_idx=19 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=333 batch_height=332 rollup_idx=20 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=334 batch_height=333 rollup_idx=21 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=335 batch_height=334 rollup_idx=22 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.683] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=336 batch_height=335 rollup_idx=23 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -WARN [12-05|10:12:38.684] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=422.217167ms block_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:39.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=372 batch=0x8a0e0794c5af409e9685120c06154a7597a1ba48e9651a6d23e21af17688bf8e l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:39.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x66c79879171898484c923783b9ce607a8dc0f7ffe5bce6f978583a0ea974c746 -INFO [12-05|10:12:40.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=373 batch=0x76d082302e401cf7a559e611ea329403ad815cb8713f19efbb36f0fe8b143a36 l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:40.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3b2958a58fe32eb8d8df1958ced4843ceff6bab2ca02ff7795acfad21822ca75 -INFO [12-05|10:12:41.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=374 batch=0xfb6e1f56249a8a593b4818a4aa38502f93c36b57d0aa450fbf4c480e4d67650d l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:41.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe2800dc6b73dbe9841bf877d378064534927292b17bf29e5cc38cb38f693f6b0 -INFO [12-05|10:12:42.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=375 batch=0x13686a2db53f0d707b05b0ea6553cccf31a8e4143efda0e36dac45de829159d0 l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:42.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe9b62099252dfa11e6502b85afcc963fcedf12a8008d60a934454b25f2c4e894 -INFO [12-05|10:12:43.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=376 batch=0xea3c703de60f2e5a4391fb66645c829b8b56f058e830872bc45cb65befe74898 l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:43.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3ac8e8b487b0518e0316782c46956df603a846a7230dcfbc0fbe78159f670095 -INFO [12-05|10:12:44.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=377 batch=0x52b4ebabff0aefb5759e28ccaddd1bf749ce42d1e126dc472a233d36dbe37900 l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:44.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2a4e5dd9105e85bf012aaf2bd16b4e6c7618ebd9ffde024e02782514514113fb -INFO [12-05|10:12:45.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=378 batch=0x131b648b4af77a9f97a6434805e8fccef597e29ed11db03a49a385f50967c4db l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:45.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8df23d7ba8a47362f373535c1befb519a4292fee39b9245010c6afe25a4496f1 -INFO [12-05|10:12:46.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=379 batch=0xcf1341738abcd3e3466ab9c6b3514415eca09cfbe4e78cfd4f41719324796a0a l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:46.072] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x748babb9eddca46403fc0aa1029f8db3b296ee1775a995282dc8ad961abac912 -INFO [12-05|10:12:46.073] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xcf1341738abcd3e3466ab9c6b3514415eca09cfbe4e78cfd4f41719324796a0a batch_seq_num=380 -INFO [12-05|10:12:47.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=380 batch=0xad6c23194fb90125c4d92e5a29bc883ab71f0cd2f4564a4973d86e34d27af989 l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:47.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x335da17c69a28aef4cd750e0d4bb8bde839b513cefede65c444bc450a3cfc34b -INFO [12-05|10:12:48.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=381 batch=0x8abfe10016e8311de4c5dfb4f4dde27ddfc9cb60d9ad851e7521bc78af16837f l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:48.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3e792be20ca0b93f25a15eea847e3f22f8f6d4204e892ff7a53c68bf734061ef -INFO [12-05|10:12:49.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=382 batch=0x48066735485e4a61c7ad39367aed4fa3e99f9763cf08124426a0c54d2573b256 l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:49.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf68983bd5bac6336d1df1624fbe999291136c18e9efc506f3873031f641b0a4c -INFO [12-05|10:12:50.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=383 batch=0x9f499c57148eb27aa793d67c224991f90eaff5ac38dd2377794ea0bda84a0ce7 l1=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:50.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x590ec620ecc7cd8721c1f9261f94d81ef3be3a6b11d18cbf39986c484625a470 -INFO [12-05|10:12:50.273] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=45 block_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:50.273] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:50.602] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xb4aafd2cbe66eb3d0ef1c796e57483b69b9eb12b794da9eae1b1be400d6a66a7 block_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=325 batch_height=324 rollup_idx=0 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=326 batch_height=325 rollup_idx=1 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=327 batch_height=326 rollup_idx=2 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=328 batch_height=327 rollup_idx=3 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=329 batch_height=328 rollup_idx=4 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=330 batch_height=329 rollup_idx=5 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=331 batch_height=330 rollup_idx=6 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=332 batch_height=331 rollup_idx=7 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=333 batch_height=332 rollup_idx=8 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=334 batch_height=333 rollup_idx=9 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=335 batch_height=334 rollup_idx=10 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=336 batch_height=335 rollup_idx=11 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=337 batch_height=336 rollup_idx=12 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=338 batch_height=337 rollup_idx=13 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=339 batch_height=338 rollup_idx=14 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=340 batch_height=339 rollup_idx=15 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.605] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=341 batch_height=340 rollup_idx=16 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.605] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=342 batch_height=341 rollup_idx=17 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.605] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=343 batch_height=342 rollup_idx=18 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.605] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=344 batch_height=343 rollup_idx=19 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.605] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=345 batch_height=344 rollup_idx=20 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.605] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=346 batch_height=345 rollup_idx=21 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.605] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=347 batch_height=346 rollup_idx=22 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.605] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=348 batch_height=347 rollup_idx=23 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -WARN [12-05|10:12:50.605] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=331.221958ms block_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:51.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=384 batch=0x40723f7a27fc98318940ec0c723c024d79951999b02eed28d35021c81dd06b7b l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:51.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9d2bbd8a3e93f9ee241d42abe1fb9ce6c670aabdcc35535184bf84fd8d1786c2 -INFO [12-05|10:12:52.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=385 batch=0x9249f9e09095f8f8eee6806c3002ac863a18b449d42e16bf9a3e731ec88b8490 l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:52.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdc6376cbe1b5dd2aeabdd5ff66bc7f6b236774cb56c7d997af638c12446e7087 -INFO [12-05|10:12:53.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=386 batch=0x0f99fb2fceb0180e4455d6146fc7e46e75c2c129d9e6ae998fd98790bef5d67c l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:53.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xf75ff0bcab3b6cc61e03ce7375f812547820f9559535c08a459137f81e9a9269 -INFO [12-05|10:12:54.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=387 batch=0x9b8869d474b63acedfec2aa3589a433daa69d97c810fcd0effbe4c01c051caa8 l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:54.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x31746ceb2b322f1db776e7e2a2134e6604e85efc3f5f885fdc2c38755bd5bb1f -INFO [12-05|10:12:55.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=388 batch=0x397dcf76a27ce22459bdeb107cdeef7855f5b6f20cb29faeb3fd861e69ae1ad1 l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:55.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8f1e81a79f8e8de2e199f3905e9c35fa5a1f1d85db6810704c950ddf88d0b601 -INFO [12-05|10:12:56.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=389 batch=0x4c86a7ee21068218e8c38f55f3eae2dac1cd51176ec5556a022b317414e3e44d l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:56.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x47aeea0f8506fc7c764428e2141669681e2100a4f3595e36932a4c97379ef72f -INFO [12-05|10:12:56.074] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x4c86a7ee21068218e8c38f55f3eae2dac1cd51176ec5556a022b317414e3e44d batch_seq_num=390 -INFO [12-05|10:12:57.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=390 batch=0x6633e1014098c91567b6253a663153d0c31f1e2d762eb3892809b7b1463a5527 l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:57.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x644a1d10348f8eaca50df7229a8d45804ff1c5c53038652759a69f2eff9b2356 -INFO [12-05|10:12:58.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=391 batch=0xfb789171f83b445e45b8707d9d3f309961224cbdaa176b96b92f1b6313decefc l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:58.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2c3c5d75f2b0f8597614dcf07e3166fb2759a38121d3f44f227fa4a2afe6c07e -INFO [12-05|10:12:59.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=392 batch=0xb2ad2a8c6b0d4ac489b7ca79dfb7e859b00f77bb6c30395310ed6f664e74171b l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:59.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5fa01e8d4ab76299b9173b1cc00156d858c99ffa1a4a39ea2ba8f31c18119c7e -INFO [12-05|10:13:00.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=393 batch=0xf811411d4de3edf57d8454d4f9bfa077ee9ae41c787a060b24e6af427a7924d9 l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:00.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdb2f1d89a781e3e03829c818f96a18f6b8dfe029f95563db1c135be596d5f039 -INFO [12-05|10:13:01.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=394 batch=0xa78d7286eb6143267d71b88a8ea7966dfd88d79e6402de7c205f25387b6f8821 l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:01.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x66150d3ba77d3f1c373f0f8d8c80807f800e45108a82a99e1545c6eafa269458 -INFO [12-05|10:13:02.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=395 batch=0xe555d02bbd566aceacaa180c8bdc0d8fda10059159b1628274ec6ce6455ba329 l1=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:02.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9978161849c2ee017d7659e2d433292a84683a999946d475b4697513fad282de -INFO [12-05|10:13:02.259] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=46 block_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:02.259] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:02.717] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x4725083ddab4e5344e13e8438a6be4278e2902f3e20dfc548ffa0844a8945558 block_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:02.717] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=337 batch_height=336 rollup_idx=0 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.717] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=338 batch_height=337 rollup_idx=1 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.717] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=339 batch_height=338 rollup_idx=2 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.717] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=340 batch_height=339 rollup_idx=3 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.717] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=341 batch_height=340 rollup_idx=4 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.717] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=342 batch_height=341 rollup_idx=5 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.717] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=343 batch_height=342 rollup_idx=6 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.717] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=344 batch_height=343 rollup_idx=7 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=345 batch_height=344 rollup_idx=8 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=346 batch_height=345 rollup_idx=9 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=347 batch_height=346 rollup_idx=10 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=348 batch_height=347 rollup_idx=11 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=349 batch_height=348 rollup_idx=12 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=350 batch_height=349 rollup_idx=13 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=351 batch_height=350 rollup_idx=14 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=352 batch_height=351 rollup_idx=15 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=353 batch_height=352 rollup_idx=16 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=354 batch_height=353 rollup_idx=17 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=355 batch_height=354 rollup_idx=18 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=356 batch_height=355 rollup_idx=19 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=357 batch_height=356 rollup_idx=20 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=358 batch_height=357 rollup_idx=21 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=359 batch_height=358 rollup_idx=22 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.718] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=360 batch_height=359 rollup_idx=23 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -WARN [12-05|10:13:02.718] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=458.8935ms block_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:03.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=396 batch=0x1ab4feb69c6824c8729d464bf602c106fb1098e1c2846527b5d9a0a0a5c059fb l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:03.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7a951fb629e82ebd4bab49173f26edce58fff59cd47cb17776dda76e9e32720a -INFO [12-05|10:13:04.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=397 batch=0xcc295a102118204580a163e3b54cd94d25fac42afebbfb4a054a1f1f0624dd69 l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:04.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5ce5234af90a2870f539749acf3808c7eacc306ab6a5dd645803b7b95020f7b4 -INFO [12-05|10:13:05.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=398 batch=0x6832b0e21317fbda1d78a1d4dbda579e3e599307e581ee2fe28e3b65a313d3ae l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:05.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2c41a42fbff5dcdce44167118ace21912f507b24ee9de4e860edcd58c49f3ddf -INFO [12-05|10:13:06.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=399 batch=0xf8aea72672c3ef7dfe450b2ed90bea0654a84c4e46d7f1b38c5ce6b1b0222843 l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:06.072] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5ad9e230b3db826b7bbe0f408ddb9c25617c56fd53f7d2c5ce832de4d4e8d061 -INFO [12-05|10:13:06.073] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xf8aea72672c3ef7dfe450b2ed90bea0654a84c4e46d7f1b38c5ce6b1b0222843 batch_seq_num=400 -INFO [12-05|10:13:07.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=400 batch=0x57d2e8cec56051776ae7238a1f483841112efd75c56ef9bac52ebe71becf3c0f l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:07.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x413cd4eee14722ca151f3f5be3e1645628f4afb5009cef89881d532d66312e1e -INFO [12-05|10:13:08.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=401 batch=0x674e94972d5a3fc3569ea1984ccfe2b0c7e63daf881500c0cfeeea63d0aa6355 l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:08.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x269f16ad12c5fb28d1d6b26ea222d956fcc2770fae0725d2d261a00792674589 -INFO [12-05|10:13:09.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=402 batch=0xffdaf8956b29c9d961819f68941dae902b0041ddaa694f13026a0c3e3778c0df l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:09.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdc5a722d03063abda748b6bd37137d5994c1d498c934689f200d7be6113fe8a4 -INFO [12-05|10:13:10.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=403 batch=0xfb9d9d3d380e061fd0861873a7102729b26f553b63ace0780010d36c899d3bee l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:10.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6b2ed7693812690a60d87f4932c2d6ad6e7fa4fef5384d63faf0af648e617c2e -INFO [12-05|10:13:11.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=404 batch=0x94c6f5e65058191e4b2decc155b38d5288e1dab0dfc4ce7fc0a46f86165cd837 l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:11.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe4eeb96a54d24ce58242147409aa2c18f8ca6c37c74642f91f3714e7496eb11e -INFO [12-05|10:13:12.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=405 batch=0x1f22091f4e30716b3ce9595c73250565cdde3d7b0a4e6f8bf534c7a77c711b3d l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:12.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa26305a0376af05ff25489e57e23916216333b98b8d2f71b1f384ecc00fc6988 -INFO [12-05|10:13:13.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=406 batch=0x0f861eaaace2415bbb9e56a3ab7b0647237232ebfe36e65cd444e826f167f151 l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:13.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc45c1c00bf225fb9f85093a339da703c49d34e6c30070eda81ca73f07826945e -INFO [12-05|10:13:14.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=407 batch=0x06415f2e8da6f3990ed54dfad84c35d93f5909a87ad526b32f49c608bfb75bba l1=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:14.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xec0b65d4e8ea5403266d91231c245c5b68b705376a387a112cf633ac836d58dd -INFO [12-05|10:13:14.283] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=47 block_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:14.284] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:14.630] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0xdc744cc4cc258f39cad699fa01603fb5e3316605ccd87547e7af47c717b48232 block_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=349 batch_height=348 rollup_idx=0 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=350 batch_height=349 rollup_idx=1 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=351 batch_height=350 rollup_idx=2 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=352 batch_height=351 rollup_idx=3 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=353 batch_height=352 rollup_idx=4 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=354 batch_height=353 rollup_idx=5 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=355 batch_height=354 rollup_idx=6 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=356 batch_height=355 rollup_idx=7 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=357 batch_height=356 rollup_idx=8 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=358 batch_height=357 rollup_idx=9 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=359 batch_height=358 rollup_idx=10 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=360 batch_height=359 rollup_idx=11 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=361 batch_height=360 rollup_idx=12 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=362 batch_height=361 rollup_idx=13 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=363 batch_height=362 rollup_idx=14 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=364 batch_height=363 rollup_idx=15 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=365 batch_height=364 rollup_idx=16 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=366 batch_height=365 rollup_idx=17 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:14.630] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=367 batch_height=366 rollup_idx=18 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:14.631] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=368 batch_height=367 rollup_idx=19 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:14.631] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=369 batch_height=368 rollup_idx=20 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:14.631] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=370 batch_height=369 rollup_idx=21 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:14.631] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=371 batch_height=370 rollup_idx=22 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:14.631] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=372 batch_height=371 rollup_idx=23 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -WARN [12-05|10:13:14.631] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=346.593375ms block_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:15.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=408 batch=0x194d1f0246bbed2ec7337e1864976d715dbcad22636096466c74f8da7cbedf9f l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:15.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8d2cca21882322ba5a0f4ba97d7805b1a4a8ed5c4829fab3d2986053aa949318 -INFO [12-05|10:13:16.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=409 batch=0xebf57d7ac429b8ac7587b4fc84708c35258e40201b94c36cfef49f2237b15d43 l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:16.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x11c7319338b15f925c2dceab66882816c13a3eca1bc136c36ce305d744cf68e4 -INFO [12-05|10:13:16.074] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xebf57d7ac429b8ac7587b4fc84708c35258e40201b94c36cfef49f2237b15d43 batch_seq_num=410 -INFO [12-05|10:13:17.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=410 batch=0x0c41f022be81519ab41bde69b54d7a9a632e3977d5cf62b7653bc1b05cad125c l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:17.072] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xee2112d48f6f542e4b9db199e7be8c38d63b3cb2504e49a795e9a285706e7fa1 -INFO [12-05|10:13:18.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=411 batch=0x6ed126f7c18050eefd01535c7573330cf11d5360f6b5b00a8bf90e9152caed70 l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:18.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x74f04fa0840f5747a10da0bf75e566293ceb3dc6d418295624790e71b7dfb1c0 -INFO [12-05|10:13:19.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=412 batch=0xc629d64e70a1bf379a5c0a03806c68f618acea098fa69145b6729a493d87192f l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:19.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa22d5ad263c24e79e4a713dad8d7c13d78f14b556c95ef5cdb5626523f5202c4 -INFO [12-05|10:13:20.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=413 batch=0x66a145e8f3817258778394658081b7922df7373ad311c9423cd7bfcd32d9da84 l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:20.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x60ce05ed6ae6511a0e6fec45a7b8c5acfc4b467315007ad7405fb0c8ed8b5f2d -INFO [12-05|10:13:21.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=414 batch=0xe9d412d122dfd1fc55c527b76ec52282262f3ffe51a86b9673b9b476b9f3aeb7 l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:21.085] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x98599dbdfaa43ad9aea84a0cc5f5fc0697ce2fe383c0e70a4a9d9d9ad4c8be15 -INFO [12-05|10:13:22.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=415 batch=0xa06632678dd8a1b0e33cf50944bde9d6ff27fdd94f1236eaf9a73e3d9cece7b9 l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:22.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc2ecd989634579ba17e243c2255e20ff76ef323c461a6131621478334ab0bb19 -INFO [12-05|10:13:23.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=416 batch=0x847e37b3df88a96a04ae4d109414adb8f811e3336fed8b3e488de88dbbd53d70 l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:23.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9f8554622b4da8147fb3843b748b98f5f0c0a09e0d5c1785417b3d522d78b571 -INFO [12-05|10:13:24.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=417 batch=0x84ad84d1081be09ba8bfa1f8901a82aba23303620bbb0ccf0571395f5c69afcd l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:24.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xd9cd2e9f83f968b4e777f589766bda96cf7c1cccc21959a9e0c9b22ab29e6cd1 -INFO [12-05|10:13:25.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=418 batch=0x1b2ef6cf66efb79d4c22f2d78f8ef3e13b8e363418c0fbe96d3114596011625a l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:25.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb6bffb87de5868e2c8b2aa72f8ba9920767d7fe4a0e71537db30255410588672 -INFO [12-05|10:13:26.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=419 batch=0x972978c1726d285fb5a94dd45d1ff324011c103ba8951e80e50c725ce693d4d6 l1=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:26.072] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4762b4a27e6221acdddfd6d2fe4dd5cd9972f1dac4fd574b5bd93a707f8166b3 -INFO [12-05|10:13:26.073] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x972978c1726d285fb5a94dd45d1ff324011c103ba8951e80e50c725ce693d4d6 batch_seq_num=420 -INFO [12-05|10:13:26.262] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=48 block_hash=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d -INFO [12-05|10:13:26.262] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d -INFO [12-05|10:13:26.556] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x202eee3f3ffd84e8416f0a074545ecf5eae04ce6e83fb4792319be974c69bc3b block_hash=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=361 batch_height=360 rollup_idx=0 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=362 batch_height=361 rollup_idx=1 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=363 batch_height=362 rollup_idx=2 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=364 batch_height=363 rollup_idx=3 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=365 batch_height=364 rollup_idx=4 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=366 batch_height=365 rollup_idx=5 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=367 batch_height=366 rollup_idx=6 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=368 batch_height=367 rollup_idx=7 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=369 batch_height=368 rollup_idx=8 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=370 batch_height=369 rollup_idx=9 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=371 batch_height=370 rollup_idx=10 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=372 batch_height=371 rollup_idx=11 l1_height=43 l1_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=373 batch_height=372 rollup_idx=12 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=374 batch_height=373 rollup_idx=13 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=375 batch_height=374 rollup_idx=14 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=376 batch_height=375 rollup_idx=15 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=377 batch_height=376 rollup_idx=16 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=378 batch_height=377 rollup_idx=17 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=379 batch_height=378 rollup_idx=18 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=380 batch_height=379 rollup_idx=19 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=381 batch_height=380 rollup_idx=20 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=382 batch_height=381 rollup_idx=21 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=383 batch_height=382 rollup_idx=22 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:26.556] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=384 batch_height=383 rollup_idx=23 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -WARN [12-05|10:13:26.557] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=294.117875ms block_hash=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d -INFO [12-05|10:13:27.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=420 batch=0x77a59c797858f648b447b5a66e3871454716a463c704345f4f6da98ead76140c l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d -INFO [12-05|10:13:27.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x39edd48a88550e920199fedaa3c366d888fcb7359d538cdf0786213bc30dac42 -INFO [12-05|10:13:28.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=421 batch=0x7b443e5476f7dd46e3e4d3b510f0b8bd1e9a9faf374767232d7fe03f9ab9cafe l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d -INFO [12-05|10:13:28.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x886b7051972d092514c15d7e6654550765b385859850581ba94ced3cca119c02 -INFO [12-05|10:13:29.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=422 batch=0xc950efec606a151aac811af38704ba605532809c6606d4fba0bf5634baa72aab l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d -INFO [12-05|10:13:29.082] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x548168762b3f3c49b92251d5487470618a5ee6ed56116c70ede3a0239533def9 -INFO [12-05|10:13:30.078] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=423 batch=0x6979273c9b28bbcc57d5d6ab1d6c7bec0f48ab51a22e2cba2147bd7df156e3de l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d -INFO [12-05|10:13:30.080] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdc15750e561907d2b48c2ae9c8d231161183080adf96d5c9f64b6a6b5ea04ca9 -INFO [12-05|10:13:31.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=424 batch=0x8816cf7b35dc686d40a1e75c549e46fcf4c1b87950562b8f8ebced83d178a510 l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d -INFO [12-05|10:13:31.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x2aa8f711557a11a6ad23a0c740d2734f0e86cac0973de7a1db5bbdc308739457 -INFO [12-05|10:13:32.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=425 batch=0x7a98738610a9d7a55fad576aaac73e9015e346086a238b0208c465966f7be9f4 l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d -INFO [12-05|10:13:32.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x972ba3f0a5aafbbce045c45c2efb0e69aa72ac09762590f345bf7d67cdef12b4 -INFO [12-05|10:13:33.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=426 batch=0x7774706d1828e70771caaaf9112be9a607a0cd1e162c4dfdbdaf81570a76f2b8 l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d -INFO [12-05|10:13:33.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7c4c701cb38d09f41702f8ba8668213d5ffbf54dfc5ef4cb75afc9750db2e01f -INFO [12-05|10:13:34.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=427 batch=0x8946028bfce6db8660b906b23ae4bc1f69df8b7b8dcc4f9988a2f8ad49465dcc l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d -INFO [12-05|10:13:34.072] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x40fc0e583320a9a97da7e41b26783cca941bce4ca01a88b80bcde9f0cf621f37 -INFO [12-05|10:13:35.082] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=428 batch=0xbf4207f60a45acfdb87b27233dd456200fff3e0b3a5c6135dcb98aadcee26693 l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d -INFO [12-05|10:13:35.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc24f4d138f77608a8eaf51cb328ba2d6ccc6989fdd9e0b3f9908c643a084ba01 -INFO [12-05|10:13:36.081] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=429 batch=0x7ca007c972912c85e83ca4a5a6a01c457c6163748336d418fabdb1a418483b33 l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d -INFO [12-05|10:13:36.083] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x3107acce6e6ce165ca569f29b80973062d439e15b9a308d84f2faa0e3ccbb4f7 -INFO [12-05|10:13:36.084] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x7ca007c972912c85e83ca4a5a6a01c457c6163748336d418fabdb1a418483b33 batch_seq_num=430 -INFO [12-05|10:13:37.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=430 batch=0xb64efcbade0da6dcbdf60ffc850f6182d11a9b0ed52c7650e9911683e4baacb1 l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d -INFO [12-05|10:13:37.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xaa07172e626c4d3f9757b13fc06e6d517b2af47d495981fac87cea10d7874d44 -INFO [12-05|10:13:38.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=431 batch=0xb38f934f35b9af9de11b2451b6114a02eb6d035c37342164348eeeac68ff47c7 l1=0xc5c4b7e12d3d59d316889cc3d279b81dc6c1d956265733d2f55620a80349d76d -INFO [12-05|10:13:38.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1e37f63509903fb0e7ae107a0c948a93fc2c162c7e4dcf27a4d02564dbc605eb -INFO [12-05|10:13:38.334] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=49 block_hash=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 -INFO [12-05|10:13:38.334] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 -INFO [12-05|10:13:38.584] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x0ec9003155f6412ca527b430bf459681f9678a0caea4caaba8bd6b8a972c7425 block_hash=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=373 batch_height=372 rollup_idx=0 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=374 batch_height=373 rollup_idx=1 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=375 batch_height=374 rollup_idx=2 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=376 batch_height=375 rollup_idx=3 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=377 batch_height=376 rollup_idx=4 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=378 batch_height=377 rollup_idx=5 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=379 batch_height=378 rollup_idx=6 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=380 batch_height=379 rollup_idx=7 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=381 batch_height=380 rollup_idx=8 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=382 batch_height=381 rollup_idx=9 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=383 batch_height=382 rollup_idx=10 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=384 batch_height=383 rollup_idx=11 l1_height=44 l1_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=385 batch_height=384 rollup_idx=12 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=386 batch_height=385 rollup_idx=13 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=387 batch_height=386 rollup_idx=14 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=388 batch_height=387 rollup_idx=15 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=389 batch_height=388 rollup_idx=16 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=390 batch_height=389 rollup_idx=17 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=391 batch_height=390 rollup_idx=18 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:38.584] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=392 batch_height=391 rollup_idx=19 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:38.585] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=393 batch_height=392 rollup_idx=20 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:38.585] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=394 batch_height=393 rollup_idx=21 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:38.585] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=395 batch_height=394 rollup_idx=22 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:38.585] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=396 batch_height=395 rollup_idx=23 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -WARN [12-05|10:13:38.585] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=249.900834ms block_hash=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 -INFO [12-05|10:13:39.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=432 batch=0x8fa2a2c803fafbd6c1bd7f0c2b11918fb8b4f3cb506e765a55c578e6c265a211 l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 -INFO [12-05|10:13:39.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0d61e3ca8ca15dc200a9a39a6a44c066752b69025800e87a178700c11ee7d2f5 -INFO [12-05|10:13:40.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=433 batch=0x26a9a35928bd5b97a57843731050d28518e6b0d752f03fefe28d9b227d7ddb52 l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 -INFO [12-05|10:13:40.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x15c94dca18f0a88367b3146fc6eec4c6ae5801887e9dd3000069b644ba926efc -INFO [12-05|10:13:41.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=434 batch=0x765493798fd0921bfbac8228b01374d008cd95c99da411eebf9bf59b42c98571 l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 -INFO [12-05|10:13:41.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5029609bc5e7eda9f59ddd5cafea5851408740b9d6c1de1780f4807b879cc9d4 -INFO [12-05|10:13:42.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=435 batch=0x78768f10ddd5d6817a9d5956c69e0982b0e18a9710eceadcdf5f6fffd8ec3070 l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 -INFO [12-05|10:13:42.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x4cd440be4af7be878f19a997e2e2d4b9a0836d8e0f5e71bc6b54dc60406d0d4b -INFO [12-05|10:13:43.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=436 batch=0xee3a2dc78c92237179e5546c3d40c1c6b0439abda8e06d2e1f390f9e561d3827 l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 -INFO [12-05|10:13:43.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xc1622ac198982036282e6013678a6d9670387ba9ffd2a947a93ba69ddb72ea69 -INFO [12-05|10:13:44.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=437 batch=0xad395f67e98019b3fcef60ab2ada018b603182c268f9ee345d3a7d0f33950d2e l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 -INFO [12-05|10:13:44.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xbc5a0a6181a53e989057298b8366292b15132316e19f077c36026abe455d9ae5 -INFO [12-05|10:13:45.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=438 batch=0x272c439f4eeb1de785464c09693fed92703600ffb54c8ae546d74c4330321cb8 l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 -INFO [12-05|10:13:45.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xe4ee9abb9ccab464ebd4bf22df7d97b3722ebd5fc4d9935818876cb64db648a2 -INFO [12-05|10:13:46.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=439 batch=0xa83697527c38b301dc7e91bf9a5512b3cfb7c976508dc16fe63aea6489345b92 l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 -INFO [12-05|10:13:46.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7e2839f3b6918575746362c5a488788b686331421ce135bb735b27d12b8f373d -INFO [12-05|10:13:46.074] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0xa83697527c38b301dc7e91bf9a5512b3cfb7c976508dc16fe63aea6489345b92 batch_seq_num=440 -INFO [12-05|10:13:47.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=440 batch=0xa9c895ac4ba2cc889ce609e1975995c34abd1a21a4fc3bb3940cbcf0e94bc4cf l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 -INFO [12-05|10:13:47.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1ab0aac0ae55c35d82c5ef57043aff344be7eef4c7b6fed7c8c1641a422e5362 -INFO [12-05|10:13:48.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=441 batch=0xfda6a1ef87eeb60badec0e516d334d786ea847e557bd9548f2a472a0936ec8cf l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 -INFO [12-05|10:13:48.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x7d97b61a7e7b4eeed5f728b48f3afca03f61c78c885ac3122f33dd92b9cd9229 -INFO [12-05|10:13:49.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=442 batch=0xfa0d79f235ba83fee7060496d6236be3d7e28c1a851fbdee256513632e3fc930 l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 -INFO [12-05|10:13:49.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xfe78d65c1327155b31c05c6407469c8ed957d1b9763113ef9307daadae6784bd -INFO [12-05|10:13:50.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=443 batch=0x5eff424e5df9d9f9dcc28ba4c598ffe58b24f1a7e513a67ec233478466c391db l1=0xf4540649fb30b9e9a0c19b3d918fb4a13eb0aa351e4b225d085c56dedc198593 -INFO [12-05|10:13:50.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x717c5d45cee92de37ac1694daf5f637f26af34780c337e906484fb3bcc7a6494 -INFO [12-05|10:13:50.276] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=50 block_hash=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a -INFO [12-05|10:13:50.276] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a -INFO [12-05|10:13:50.594] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x964c2ae2f6714bbefb0b992696fdd67a573b6d1f0204bd570f26089d5cf6913e block_hash=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a -INFO [12-05|10:13:50.594] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=385 batch_height=384 rollup_idx=0 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=386 batch_height=385 rollup_idx=1 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=387 batch_height=386 rollup_idx=2 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=388 batch_height=387 rollup_idx=3 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=389 batch_height=388 rollup_idx=4 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=390 batch_height=389 rollup_idx=5 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=391 batch_height=390 rollup_idx=6 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=392 batch_height=391 rollup_idx=7 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=393 batch_height=392 rollup_idx=8 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=394 batch_height=393 rollup_idx=9 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=395 batch_height=394 rollup_idx=10 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=396 batch_height=395 rollup_idx=11 l1_height=45 l1_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=397 batch_height=396 rollup_idx=12 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=398 batch_height=397 rollup_idx=13 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=399 batch_height=398 rollup_idx=14 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=400 batch_height=399 rollup_idx=15 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=401 batch_height=400 rollup_idx=16 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=402 batch_height=401 rollup_idx=17 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=403 batch_height=402 rollup_idx=18 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=404 batch_height=403 rollup_idx=19 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=405 batch_height=404 rollup_idx=20 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=406 batch_height=405 rollup_idx=21 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=407 batch_height=406 rollup_idx=22 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:50.595] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=408 batch_height=407 rollup_idx=23 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -WARN [12-05|10:13:50.596] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=319.3435ms block_hash=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a -INFO [12-05|10:13:51.075] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=444 batch=0xde6f07c3f7badec41864118539a9dfa6e253f3c5a8f32f051f3bc9572e46e174 l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a -INFO [12-05|10:13:51.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x5ffa259230eaa78087128d864b489cd190a4e95a1b432fe41bb93d4adcec005d -INFO [12-05|10:13:52.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=445 batch=0xa6c10d94d71b47bb0c7b925c70b233f5d7461eea10725d092a5e7ac27d649953 l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a -INFO [12-05|10:13:52.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x430c8392a8c6a96c0926f65460edb895d9cc3e553d725a5be524e058a9b806da -INFO [12-05|10:13:53.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=446 batch=0xe23dadcd57c0d26700172bf97d393b67b48572053c5abab6ffbbd61233542c87 l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a -INFO [12-05|10:13:53.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdc32fb0c835c5cb1ed5c397b38731d673941226bc07023f5e9124af311aa155c -INFO [12-05|10:13:54.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=447 batch=0x7e786206a2785d3b6051cc868e076e021e34c7247e82717340b6a7e96589754c l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a -INFO [12-05|10:13:54.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa3f786d45322c167a5c9b191c1a2c4c08e47e6f01ae90f9bab3f076904e2ae73 -INFO [12-05|10:13:55.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=448 batch=0x8cb5b4232197b79bdb54640908713167485b7a1e3791e015b10c6e5ba4744787 l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a -INFO [12-05|10:13:55.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x8950755eb255de5f4a37eaa3f5abd20075c921e97b37f7286e54a1d4c248aad1 -INFO [12-05|10:13:56.074] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=449 batch=0x995bd5248aca859e3b01c8ad45d4f1955faa42d8ef1e308aed248a517576913c l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a -INFO [12-05|10:13:56.075] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xa38da92b1ab9604f3ddd5c81e4a2837943e58324428ef854ac62221e12345fdb -INFO [12-05|10:13:56.076] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x995bd5248aca859e3b01c8ad45d4f1955faa42d8ef1e308aed248a517576913c batch_seq_num=450 -INFO [12-05|10:13:57.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=450 batch=0x2683d8257fde05d04c1607e3147fe19a047244d8ca41db5219bb62da0e667365 l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a -INFO [12-05|10:13:57.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdfffa57e90d0dc0456a777fe28637a29a2ab9c0e585ec01cb9c12c6c235a2fd1 -INFO [12-05|10:13:58.080] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=451 batch=0xdb984d1f811cbe536ad578115840fede7c81dd223c2c3e2f7de3de921455556a l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a -INFO [12-05|10:13:58.081] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x1e949ff86ccf5b3b65db075183d37ab84e81536f7effb077a5ccf0e6b49ffaa5 -INFO [12-05|10:13:59.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=452 batch=0x193222f074100c9c24a0b10eee2e5b06c8a4faf1efdbeeb600e42ad0b7fc5308 l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a -INFO [12-05|10:13:59.074] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x535f40a405bedb51aef07eba4a95a2eca9e6b62d7e67625673a57cc408808873 -INFO [12-05|10:14:00.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=453 batch=0x6c3d48f63ca2c3c54772bc63d3bc56a2c3b25a5f705b7211b5cb305410402dae l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a -INFO [12-05|10:14:00.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x718fd932a33cdf026d2975ca571a4c9880eb77a86df1261b19dbcc6a0a94c1dc -INFO [12-05|10:14:01.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=454 batch=0xbf371eb37bffbde527e31ddd7cfbd11d9a3332dfc9466feb1af6746a3b402940 l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a -INFO [12-05|10:14:01.072] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb200b9b1e262107ae3b9de81cb63d8fe5b91cccbd2f9eb228f8ff5dc6faa026b -INFO [12-05|10:14:02.073] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=455 batch=0x16a6578ef78d45a201dde12204e64833ec719b52fcd34dc41606ca2b210cab38 l1=0xb1d66de9a2e6d92b0d3cd98cdedca2629abe59cd9c2ec02ab3c3ff088c159d2a -INFO [12-05|10:14:02.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x77321b1f50e164863b1d3ea43862d95e94dbc17363df2881078d075d564df556 -INFO [12-05|10:14:02.271] SubmitL1Block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_height=51 block_hash=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 -INFO [12-05|10:14:02.271] Start ingesting block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc block_hash=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 -INFO [12-05|10:14:02.715] Extracted rollup from block component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc rollup=0x65a50508d7e7d909ebc284695e0e1ebc04ab50f536527232b3bacd38a60eeb5a block_hash=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 -INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=397 batch_height=396 rollup_idx=0 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=398 batch_height=397 rollup_idx=1 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=399 batch_height=398 rollup_idx=2 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=400 batch_height=399 rollup_idx=3 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=401 batch_height=400 rollup_idx=4 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=402 batch_height=401 rollup_idx=5 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=403 batch_height=402 rollup_idx=6 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=404 batch_height=403 rollup_idx=7 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=405 batch_height=404 rollup_idx=8 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:14:02.715] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=406 batch_height=405 rollup_idx=9 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=407 batch_height=406 rollup_idx=10 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=408 batch_height=407 rollup_idx=11 l1_height=46 l1_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=409 batch_height=408 rollup_idx=12 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=410 batch_height=409 rollup_idx=13 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=411 batch_height=410 rollup_idx=14 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=412 batch_height=411 rollup_idx=15 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=413 batch_height=412 rollup_idx=16 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=414 batch_height=413 rollup_idx=17 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=415 batch_height=414 rollup_idx=18 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=416 batch_height=415 rollup_idx=19 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=417 batch_height=416 rollup_idx=20 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=418 batch_height=417 rollup_idx=21 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=419 batch_height=418 rollup_idx=22 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:14:02.716] Rollup decompressed batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_seq_num=420 batch_height=419 rollup_idx=23 l1_height=47 l1_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -WARN [12-05|10:14:02.716] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc duration=444.518292ms block_hash=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 -INFO [12-05|10:14:03.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=456 batch=0xeba08ec27c1e829434acc4b40312ce9b94aba53fab1bd1d8fd2a29878e4e788e l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 -INFO [12-05|10:14:03.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x83102faa468d0f9f009c3a92fb357d86d5d9a12b5ddfcf6ce4a4f7e2867a26f2 -INFO [12-05|10:14:04.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=457 batch=0xcf3f42194bba7478bc21d1d830e06379017418ea5da0aaaf474b9851e93e9283 l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 -INFO [12-05|10:14:04.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xdde13315329757237a116f585ff7534b0769809b1bfd4c8ac6fb11e8d7376768 -INFO [12-05|10:14:05.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=458 batch=0x93c5c6b1b2a52dfafde7c730eb53c11a0746e1edd7138d4ad68464886d7aae45 l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 -INFO [12-05|10:14:05.078] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb9f0b5721b4eb6008e870ea4e4c4bfc61e486698e621482802692c87f601c1c2 -INFO [12-05|10:14:06.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=459 batch=0x489649075b4f662135a088aa3a920429170aad474dd73181fab4063e1255afff l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 -INFO [12-05|10:14:06.077] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x689b7fd04bf92b459d116c8ec12848fc49765a2867e889c6edbb3b4bdd526f0c -INFO [12-05|10:14:06.079] Streaming batch to host component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch=0x489649075b4f662135a088aa3a920429170aad474dd73181fab4063e1255afff batch_seq_num=460 -INFO [12-05|10:14:07.083] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=460 batch=0xdf7fcdfac26b67f9c07505fd8f9af40034b87cea2616bcab0cf8786ac7a73207 l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 -INFO [12-05|10:14:07.084] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x9916c089b17ec0d5c59b0a24793fbdbc92f6040bff3e7d099f2c3aa72bfe268e -INFO [12-05|10:14:08.084] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=461 batch=0x16bd2a66fa3f353d604a520421199556b8e6a3f30bc999ac2794443f3d6f0b59 l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 -INFO [12-05|10:14:08.086] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0a974d8dab53ace3d964dfa42933a57f2db315983e5f17d7db38e3dd1ee107c9 -INFO [12-05|10:14:09.077] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=462 batch=0x7fc8c011575b49c676dfb020095e3f9c55f9d757812eafaec1c9da38b5cfdcd3 l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 -INFO [12-05|10:14:09.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x60bf1338382621f0af9fd61e2021681139c1460a080174e66a0854107fdd219b -INFO [12-05|10:14:10.072] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=463 batch=0xb6b2866af90d9e5ea452a0bfa80ed9798621bb971b6fa080c6fd8d1993959a2b l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 -INFO [12-05|10:14:10.073] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x6203abc94c84d43068b53a67f134836dcd3712ddb89c1baa427572978d74a12e -INFO [12-05|10:14:11.086] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=464 batch=0x5e93f86a91f049f080890ade2f1e9ec2d4f9d67f69416d70e39fa2520253223b l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 -INFO [12-05|10:14:11.088] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0xb759ed636eb41a99f577ecae329cabbe609f41e8ed0b4a489498454b3a510c27 -INFO [12-05|10:14:12.079] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=465 batch=0x35e2a1c6ff1678a118aad0b8fe076c4bd6a089b15667747ccd3f47505c559434 l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 -INFO [12-05|10:14:12.079] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x21b5dea5845b906b63a7bcf4c56f6845ff6f3c3b0cf670d91b5be72babb1eacc -INFO [12-05|10:14:13.076] Received new p2p batch component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc batch_height=466 batch=0x804e34cf7229a2546085d3c4614c0c0db5834cbe07ed962611e2a35f2a707eeb l1=0xffaeba3a18cff68ce21ee2475cbb81ace7bbbdc762f4f17e7cfe58abdaa85f02 -INFO [12-05|10:14:13.076] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x5e7a62A400f5B80f6D732EaD82391C9C02282Ddc transactionHash=0x0bbb16221619bba054e1b7018503dbbb51fb467d960d96225882668a731c2b71 diff --git a/nodelogs.txt b/nodelogs.txt deleted file mode 100644 index 269206c58f..0000000000 --- a/nodelogs.txt +++ /dev/null @@ -1,2001 +0,0 @@ -INFO [12-05|10:06:15.634] Creating enclave service with following config component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 cfg="{\n \"HostID\": \"0x0f5f82b989491811cf4edda9a997c7930d541755\",\n \"HostAddress\": \"127.0.0.1:16602\",\n \"Address\": \"127.0.0.1:16702\",\n \"NodeType\": 1,\n \"L1ChainID\": 1337,\n \"ObscuroChainID\": 443,\n \"WillAttest\": false,\n \"ValidateL1Blocks\": false,\n \"GenesisJSON\": null,\n \"ManagementContractAddress\": \"0xf3be1f5bac1ccdb46736beacf40d851c06c8bec8\",\n \"LogLevel\": 1,\n \"LogPath\": \"../.build/simulations/sim-log-2024-12-05_10-03-33-full-network-4167492917.txt\",\n \"UseInMemoryDB\": true,\n \"EdgelessDBHost\": \"\",\n \"SqliteDBPath\": \"\",\n \"ProfilerEnabled\": false,\n \"MinGasPrice\": 1000000000,\n \"MessageBusAddress\": \"0xdf5da871d676f688bab28168cca6ff6b60daaaab\",\n \"SystemContractOwner\": \"0x0100000000000000000000000000000000000000\",\n \"SequencerP2PAddress\": \"127.0.0.1:16600\",\n \"TenGenesis\": \"{}\",\n \"DebugNamespaceEnabled\": true,\n \"MaxBatchSize\": 56320,\n \"MaxRollupSize\": 131072,\n \"GasPaymentAddress\": \"0x95c4303ea3b4da105cef97e32ce16f2ea5a2c555\",\n \"BaseFee\": 1000000000,\n \"GasBatchExecutionLimit\": 300000000000,\n \"GasLocalExecutionCapFlag\": 300000000000,\n \"RPCTimeout\": 5000000000\n}" -INFO [12-05|10:06:15.638] UseInMemoryDB flag is true, data will not be persisted. Creating temporary sqlite database... component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:15.639] Connect to sqlite component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 path="file:/tmp/ten-persistence/3VCe2/enclave.db?mode=rw&_foreign_keys=on&_journal_mode=wal&_txlock=immediate&_synchronous=normal" -INFO [12-05|10:06:15.642] Opened new sqlite db file at /tmp/ten-persistence/3VCe2/enclave.db component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:15.642] Connect to sqlite component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 ro_path="file:/tmp/ten-persistence/3VCe2/enclave.db?mode=ro&_foreign_keys=on&_journal_mode=wal&_txlock=immediate&_synchronous=normal" -INFO [12-05|10:06:15.643] Generating new enclave key component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:15.643] L2 Cross Chain Owner Address: 0xE7927CF0fED1dDAC42Ff6A557E01740D715579Bf component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=cross_chain -INFO [12-05|10:06:15.643] Load: Initializing system contracts component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -ERROR[12-05|10:06:15.643] Load: Failed fetching batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batchSeqNo=2 error="not found" -WARN [12-05|10:06:15.643] WARNING - Attestation is not enabled, enclave will not create a verified attestation report. component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -WARN [12-05|10:06:15.644] could not read enclave pub key. Defaulting to validator type component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="could not retrieve attestation key for address 0x9Bf0f1aAA985F45cA454df13d2F792154711805e. Cause: not found" -WARN [12-05|10:06:15.644] could not read enclave pub key. Defaulting to validator type component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="could not retrieve attestation key for address 0x9Bf0f1aAA985F45cA454df13d2F792154711805e. Cause: not found" -WARN [12-05|10:06:15.644] could not read enclave pub key. Defaulting to validator type component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="could not retrieve attestation key for address 0x9Bf0f1aAA985F45cA454df13d2F792154711805e. Cause: not found" -INFO [12-05|10:06:15.644] Enclave service created successfully. component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e -INFO [12-05|10:06:15.644] obscuro enclave RPC service started. component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:15.644] RPCServer listening on address 127.0.0.1:16702. component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:15.644] Building host container with config: &{L1ChainID:1337 ObscuroChainID:443 L1StartHash:0x0000000000000000000000000000000000000000000000000000000000000000 SequencerP2PAddress:127.0.0.1:16600 ManagementContractAddress:0xF3be1f5BaC1ccDB46736beaCf40d851C06c8BeC8 MessageBusAddress:0xdF5DA871D676F688BAB28168CcA6FF6B60daAaab BatchInterval:1s MaxBatchInterval:1s RollupInterval:5s MaxRollupSize:131072 L1BlockTime:1s CrossChainInterval:6s ID:0x0f5F82b989491811cF4EDDA9a997c7930d541755 PrivateKeyString:cac7308014df83e9e81cfdd5da62faaa27e47ca066408c3195f7ac38a61a45c4 IsGenesis:false NodeType:validator LogLevel:1 LogPath: UseInMemoryDB:true PostgresDBHost: SqliteDBPath: HasClientRPCHTTP:true ClientRPCPortHTTP:16802 HasClientRPCWebsockets:true ClientRPCPortWS:16902 ClientRPCHost:0.0.0.0 EnclaveRPCAddresses:[127.0.0.1:16702] P2PBindAddress:127.0.0.1:16602 P2PPublicAddress:127.0.0.1:16602 L1WebsocketURL:ws://127.0.0.1:16100 L1BeaconUrl:127.0.0.1:16560 L1BlobArchiveUrl: EnclaveRPCTimeout:10s L1RPCTimeout:15s P2PConnectionTimeout:10s ProfilerEnabled:false MetricsEnabled:true MetricsHTTPPort:0 DebugNamespaceEnabled:true IsInboundP2PDisabled:true} component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:16.152] UseInMemoryDB flag is true, data will not be persisted. Creating in-memory database... component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:16.157] Host service created with following config: component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 cfg="{\n \"L1ChainID\": 1337,\n \"ObscuroChainID\": 443,\n \"L1StartHash\": \"0x0000000000000000000000000000000000000000000000000000000000000000\",\n \"SequencerP2PAddress\": \"127.0.0.1:16600\",\n \"ManagementContractAddress\": \"0xf3be1f5bac1ccdb46736beacf40d851c06c8bec8\",\n \"MessageBusAddress\": \"0xdf5da871d676f688bab28168cca6ff6b60daaaab\",\n \"BatchInterval\": 1000000000,\n \"MaxBatchInterval\": 1000000000,\n \"RollupInterval\": 5000000000,\n \"MaxRollupSize\": 131072,\n \"L1BlockTime\": 1000000000,\n \"CrossChainInterval\": 6000000000,\n \"ID\": \"0x0f5f82b989491811cf4edda9a997c7930d541755\",\n \"PrivateKeyString\": \"cac7308014df83e9e81cfdd5da62faaa27e47ca066408c3195f7ac38a61a45c4\",\n \"IsGenesis\": false,\n \"NodeType\": 1,\n \"LogLevel\": 1,\n \"LogPath\": \"\",\n \"UseInMemoryDB\": true,\n \"PostgresDBHost\": \"\",\n \"SqliteDBPath\": \"\",\n \"HasClientRPCHTTP\": true,\n \"ClientRPCPortHTTP\": 16802,\n \"HasClientRPCWebsockets\": true,\n \"ClientRPCPortWS\": 16902,\n \"ClientRPCHost\": \"0.0.0.0\",\n \"EnclaveRPCAddresses\": [\n \"127.0.0.1:16702\"\n ],\n \"P2PBindAddress\": \"127.0.0.1:16602\",\n \"P2PPublicAddress\": \"127.0.0.1:16602\",\n \"L1WebsocketURL\": \"ws://127.0.0.1:16100\",\n \"L1BeaconUrl\": \"127.0.0.1:16560\",\n \"L1BlobArchiveUrl\": \"\",\n \"EnclaveRPCTimeout\": 10000000000,\n \"L1RPCTimeout\": 15000000000,\n \"P2PConnectionTimeout\": 10000000000,\n \"ProfilerEnabled\": false,\n \"MetricsEnabled\": true,\n \"MetricsHTTPPort\": 0,\n \"DebugNamespaceEnabled\": true,\n \"IsInboundP2PDisabled\": true\n}" -INFO [12-05|10:06:16.158] HTTP Metric server started component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 address=0.0.0.0:0 -INFO [12-05|10:06:16.160] Starting guardian process. component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e -INFO [12-05|10:06:16.161] P2P server started listening component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p bindAddress=127.0.0.1:16602 publicAddress=127.0.0.1:16602 -ERROR[12-05|10:06:16.161] Failed to register for broadcasts component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p err="incoming P2P is disabled, can't register for broadcasts" -INFO [12-05|10:06:16.161] Host started with following config component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 cfg="l1_chain_id = 1337\nobscuro_chain_id = 443\nl1_start_hash = \"0x0000000000000000000000000000000000000000000000000000000000000000\"\nsequencer_p2_p_address = \"127.0.0.1:16600\"\nmanagement_contract_address = \"0xf3be1f5bac1ccdb46736beacf40d851c06c8bec8\"\nmessage_bus_address = \"0xdf5da871d676f688bab28168cca6ff6b60daaaab\"\nbatch_interval = 1000000000\nmax_batch_interval = 1000000000\nrollup_interval = 5000000000\nmax_rollup_size = 131072\nl1_block_time = 1000000000\ncross_chain_interval = 6000000000\nid = \"0x0f5f82b989491811cf4edda9a997c7930d541755\"\nprivate_key_string = \"cac7308014df83e9e81cfdd5da62faaa27e47ca066408c3195f7ac38a61a45c4\"\nis_genesis = false\nnode_type = 1\nlog_level = 1\nlog_path = \"\"\nuse_in_memory_d_b = true\npostgres_d_b_host = \"\"\nsqlite_d_b_path = \"\"\nhas_client_rpc_h_http = true\nclient_rpc_port_h_http = 16802\nhas_client_rpc_websockets = true\nclient_rpc_port_w_s = 16902\nclient_rpc_host = \"0.0.0.0\"\nenclave_rpc_addresses = [\"127.0.0.1:16702\"]\np2_p_bind_address = \"127.0.0.1:16602\"\np2_p_public_address = \"127.0.0.1:16602\"\nl1_websocket_url = \"ws://127.0.0.1:16100\"\nl1_beacon_url = \"127.0.0.1:16560\"\nl1_blob_archive_url = \"\"\nenclave_rpc_timeout = 10000000000\nl1_rpc_timeout = 15000000000\np2_p_connection_timeout = 10000000000\nprofiler_enabled = false\nmetrics_enabled = true\nmetrics_http_port = 0\ndebug_namespace_enabled = true\nis_inbound_p2_p_disabled = true\n" -INFO [12-05|10:06:16.162] Started Obscuro host... component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:16.163] Starting L2 update stream from enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e -INFO [12-05|10:06:16.164] Updating enclave status from [Disconnected] to [AwaitingSecret] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Disconnected] enclave(StatusCode=1, L1Head=0x0000000000000000000000000000000000000000000000000000000000000000, L2Head=0), Host(L1Head=0x0000000000000000000000000000000000000000000000000000000000000000, L2Head=)" -INFO [12-05|10:06:16.164] HTTP server started component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 endpoint=[::]:16802 auth=false prefix= cors=* vhosts=* -INFO [12-05|10:06:16.164] WebSocket enabled component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 url=ws://[::]:16902 -INFO [12-05|10:06:16.164] Started Obscuro host RPC Server... component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:16.164] Requesting secret. component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e -INFO [12-05|10:06:16.172] Host preparing to issue L1 tx component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:16.176] Host issuing L1 tx component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 tx=0x659979c5cdffc238ebe145fc7a4aa5c439b183f3819d9c9f71bf385c73013309 size=0 retries=0 -INFO [12-05|10:06:16.177] Successfully submitted tx to L1 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 txHash=0x659979c5cdffc238ebe145fc7a4aa5c439b183f3819d9c9f71bf385c73013309 -INFO [12-05|10:06:22.208] Receipt not found for transaction, we will re-attempt component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="timed out after 6s (7 attempts) - latest error: could not get receipt publishing tx for L1 tx=0x659979c5cdffc238ebe145fc7a4aa5c439b183f3819d9c9f71bf385c73013309: not found" -INFO [12-05|10:06:22.209] Host issuing L1 tx component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 tx=0x128c66a948522c5e854b52270c65e44c29e4c8cd09406752471a0e46760eb2a8 size=0 retries=1 -INFO [12-05|10:06:22.210] Successfully submitted tx to L1 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 txHash=0x128c66a948522c5e854b52270c65e44c29e4c8cd09406752471a0e46760eb2a8 -INFO [12-05|10:06:39.553] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:40.058] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:40.564] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:41.069] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:41.577] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:42.083] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:42.587] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:43.095] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:43.599] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:44.103] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:44.609] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:45.118] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:45.621] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:46.126] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:46.631] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:47.136] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:47.639] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:48.142] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:48.645] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:49.150] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:49.664] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:50.167] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:50.669] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:06:50.788] Secret received component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e -INFO [12-05|10:06:50.788] Updating enclave status from [AwaitingSecret] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [AwaitingSecret] enclave(StatusCode=0, L1Head=0x0000000000000000000000000000000000000000000000000000000000000000, L2Head=0), Host(L1Head=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7, L2Head=)" -INFO [12-05|10:06:50.789] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=0 block_hash=0xd457166476301ff5f6b6b207552736d94d7bc2c2a549788c601f29c807799976 -INFO [12-05|10:06:50.789] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xd457166476301ff5f6b6b207552736d94d7bc2c2a549788c601f29c807799976 -INFO [12-05|10:06:50.791] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=1 block_hash=0x489b2e76b1da7d6888c1ddbc8662a2111b7dcb5b26ecd5f4c7e17b5b7bb6c02f -INFO [12-05|10:06:50.792] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x489b2e76b1da7d6888c1ddbc8662a2111b7dcb5b26ecd5f4c7e17b5b7bb6c02f -INFO [12-05|10:06:50.794] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=2 block_hash=0x4a899c63a636dac6acaedc57ce341078fc28f438bc3c1514e35bca5b8120f842 -INFO [12-05|10:06:50.794] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x4a899c63a636dac6acaedc57ce341078fc28f438bc3c1514e35bca5b8120f842 -INFO [12-05|10:06:50.795] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=3 block_hash=0x06490e097dad8d70ba58a2887581ac3259206f9fcd310f02c17f6608e15ff2e8 -INFO [12-05|10:06:50.795] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x06490e097dad8d70ba58a2887581ac3259206f9fcd310f02c17f6608e15ff2e8 -INFO [12-05|10:06:50.797] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=4 block_hash=0x59f5c5566120125748bb0107c240fc086239fbb85d755ff818985d220764712a -INFO [12-05|10:06:50.797] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x59f5c5566120125748bb0107c240fc086239fbb85d755ff818985d220764712a -INFO [12-05|10:06:50.799] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=5 block_hash=0x1147f5be7edb4d37ae3e5cc35a782e4f0aaebf043f58e63a22b2818ccbc65cde -INFO [12-05|10:06:50.799] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x1147f5be7edb4d37ae3e5cc35a782e4f0aaebf043f58e63a22b2818ccbc65cde -INFO [12-05|10:06:50.801] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=6 block_hash=0x06a72497af0e73e0d220912b2a3695f3bf735ebb03321814b461ac9775bb3679 -INFO [12-05|10:06:50.801] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x06a72497af0e73e0d220912b2a3695f3bf735ebb03321814b461ac9775bb3679 -INFO [12-05|10:06:50.803] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=7 block_hash=0xe43b4e15d0f42c238a9ebd09d7d8462d3d6ad03f5455a2494739aaf25325f273 -INFO [12-05|10:06:50.803] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xe43b4e15d0f42c238a9ebd09d7d8462d3d6ad03f5455a2494739aaf25325f273 -INFO [12-05|10:06:50.804] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=8 block_hash=0x98bce010c031cb3e8713f12f9c2feefffe0ebc36fa75333dadd9f981ef24c492 -INFO [12-05|10:06:50.804] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x98bce010c031cb3e8713f12f9c2feefffe0ebc36fa75333dadd9f981ef24c492 -INFO [12-05|10:06:50.814] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=9 block_hash=0xcb573cf3bba076b710275165c195a160e48211b25ee3ba9f4cb03d959a93739c -INFO [12-05|10:06:50.814] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xcb573cf3bba076b710275165c195a160e48211b25ee3ba9f4cb03d959a93739c -INFO [12-05|10:06:50.827] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=10 block_hash=0x1883ff15ad78e7c9bb1eb60daa6ed112a271aef71f820678e6a016f48d5eff83 -INFO [12-05|10:06:50.827] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x1883ff15ad78e7c9bb1eb60daa6ed112a271aef71f820678e6a016f48d5eff83 -INFO [12-05|10:06:50.831] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=11 block_hash=0xb2751f9eab0f1c8ffc40b1012703c38755d6eb0d078dbb779cad7a4e9cb7e367 -INFO [12-05|10:06:50.831] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xb2751f9eab0f1c8ffc40b1012703c38755d6eb0d078dbb779cad7a4e9cb7e367 -INFO [12-05|10:06:50.839] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=12 block_hash=0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a -INFO [12-05|10:06:50.839] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a -INFO [12-05|10:06:50.846] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=13 block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:06:50.846] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:06:50.847] Store attestation. Owner: 0xdb5DD1710c847220bB1168dEee32c37EC92F6632 component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:50.847] Process shared secret request. component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height="&{ParentHash:0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a UncleHash:0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347 Coinbase:0x123463a4B065722E99115D6c222f267d9cABb524 Root:0x5aa1ee8a4ef49aa5aef349c52feca5146efd3dd1fa3e447f33b14ad33c949958 TxHash:0x689ea5eb44092b7ffc59a9a4767dac9183b1eec67c387521a7cc6f25ef4c4528 ReceiptHash:0x98bbbc489bfa82690931e7ed9983c21aaa18874695322d679cf968ad22010502 Bloom:[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 1 0 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 128 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 0 0 0 0 64 0 4 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] Difficulty:+0 Number:+13 GasLimit:30000000 GasUsed:201980 Time:1733393186 Extra:[217 131 1 14 6 132 103 101 116 104 136 103 111 49 46 50 49 46 48 134 100 97 114 119 105 110] MixDigest:0xcb35c572fe032cfcaa455eddb18550df4ddc3899a93fc2783c3e3a2acaaa5632 Nonce:[0 0 0 0 0 0 0 0] BaseFee:+192882353 WithdrawalsHash:0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421 BlobGasUsed:0x14004418ed0 ExcessBlobGas:0x14004418ed8 ParentBeaconRoot:0x7352e839bd1d7cec131691a67da385df0c5c044f6eae33bb6b37a0d1218399e4}" block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 tx=0x94a553e76b1842a93891f61053b2670ea0667faa0b3bdb6690a58a41970e47f5 -INFO [12-05|10:06:50.847] received attestation component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 attestation="&{Report:[77 79 67 75 32 82 69 80 79 82 84] PubKey:[2 127 2 28 125 115 198 171 146 229 221 170 57 26 199 218 110 248 226 23 124 240 152 140 227 231 142 55 61 184 204 136 174] EnclaveID:0x6C5Da44dd1B1aA7ad611e811ac694C9963B1ae56 HostAddress:127.0.0.1:16601}" -INFO [12-05|10:06:50.847] Successfully verified attestation and identity. Owner: 0x6C5Da44dd1B1aA7ad611e811ac694C9963B1ae56 component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:50.847] Encrypting secret with public key 027f021c7d73c6ab92e5ddaa391ac7da6ef8e2177cf0988ce3e78e373db8cc88ae component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:50.847] Store attestation. Owner: 0x6C5Da44dd1B1aA7ad611e811ac694C9963B1ae56 component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:50.847] Process shared secret request. component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height="&{ParentHash:0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a UncleHash:0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347 Coinbase:0x123463a4B065722E99115D6c222f267d9cABb524 Root:0x5aa1ee8a4ef49aa5aef349c52feca5146efd3dd1fa3e447f33b14ad33c949958 TxHash:0x689ea5eb44092b7ffc59a9a4767dac9183b1eec67c387521a7cc6f25ef4c4528 ReceiptHash:0x98bbbc489bfa82690931e7ed9983c21aaa18874695322d679cf968ad22010502 Bloom:[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 1 0 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 128 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 0 0 0 0 64 0 4 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] Difficulty:+0 Number:+13 GasLimit:30000000 GasUsed:201980 Time:1733393186 Extra:[217 131 1 14 6 132 103 101 116 104 136 103 111 49 46 50 49 46 48 134 100 97 114 119 105 110] MixDigest:0xcb35c572fe032cfcaa455eddb18550df4ddc3899a93fc2783c3e3a2acaaa5632 Nonce:[0 0 0 0 0 0 0 0] BaseFee:+192882353 WithdrawalsHash:0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421 BlobGasUsed:0x14004418ed0 ExcessBlobGas:0x14004418ed8 ParentBeaconRoot:0x7352e839bd1d7cec131691a67da385df0c5c044f6eae33bb6b37a0d1218399e4}" block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 tx=0x128c66a948522c5e854b52270c65e44c29e4c8cd09406752471a0e46760eb2a8 -INFO [12-05|10:06:50.847] received attestation component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 attestation="&{Report:[77 79 67 75 32 82 69 80 79 82 84] PubKey:[2 96 133 8 7 18 51 20 104 30 42 202 189 216 155 111 18 212 53 76 103 239 1 238 130 133 69 26 229 184 216 228 74] EnclaveID:0x9Bf0f1aAA985F45cA454df13d2F792154711805e HostAddress:127.0.0.1:16602}" -INFO [12-05|10:06:50.848] Successfully verified attestation and identity. Owner: 0x9Bf0f1aAA985F45cA454df13d2F792154711805e component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:50.848] Encrypting secret with public key 0260850807123314681e2acabdd89b6f12d4354c67ef01ee8285451ae5b8d8e44a component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:50.848] Store attestation. Owner: 0x9Bf0f1aAA985F45cA454df13d2F792154711805e component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:50.848] Process shared secret request. component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height="&{ParentHash:0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a UncleHash:0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347 Coinbase:0x123463a4B065722E99115D6c222f267d9cABb524 Root:0x5aa1ee8a4ef49aa5aef349c52feca5146efd3dd1fa3e447f33b14ad33c949958 TxHash:0x689ea5eb44092b7ffc59a9a4767dac9183b1eec67c387521a7cc6f25ef4c4528 ReceiptHash:0x98bbbc489bfa82690931e7ed9983c21aaa18874695322d679cf968ad22010502 Bloom:[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 1 0 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 128 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 0 0 0 0 64 0 4 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] Difficulty:+0 Number:+13 GasLimit:30000000 GasUsed:201980 Time:1733393186 Extra:[217 131 1 14 6 132 103 101 116 104 136 103 111 49 46 50 49 46 48 134 100 97 114 119 105 110] MixDigest:0xcb35c572fe032cfcaa455eddb18550df4ddc3899a93fc2783c3e3a2acaaa5632 Nonce:[0 0 0 0 0 0 0 0] BaseFee:+192882353 WithdrawalsHash:0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421 BlobGasUsed:0x14004418ed0 ExcessBlobGas:0x14004418ed8 ParentBeaconRoot:0x7352e839bd1d7cec131691a67da385df0c5c044f6eae33bb6b37a0d1218399e4}" block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 tx=0xd2eb88a2c5a73f5c3ae2b950c094cc868f30dd0811c6853c2d9fcb830e61ddcc -INFO [12-05|10:06:50.848] received attestation component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 attestation="&{Report:[77 79 67 75 32 82 69 80 79 82 84] PubKey:[2 235 253 161 153 222 96 80 249 111 132 202 176 65 176 75 51 11 91 193 45 103 162 213 68 251 221 78 247 161 173 162 189] EnclaveID:0xF34A4a7381a524f4437dbb5f66d402c986C2bB24 HostAddress:127.0.0.1:16603}" -INFO [12-05|10:06:50.848] Successfully verified attestation and identity. Owner: 0xF34A4a7381a524f4437dbb5f66d402c986C2bB24 component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:50.848] Encrypting secret with public key 02ebfda199de6050f96f84cab041b04b330b5bc12d67a2d544fbdd4ef7a1ada2bd component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:50.848] Store attestation. Owner: 0xF34A4a7381a524f4437dbb5f66d402c986C2bB24 component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:50.848] Process shared secret request. component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height="&{ParentHash:0xccbcf267c5df4b8e5601e0c467e230e0b44b8fc1749dc67c3a7079775894172a UncleHash:0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347 Coinbase:0x123463a4B065722E99115D6c222f267d9cABb524 Root:0x5aa1ee8a4ef49aa5aef349c52feca5146efd3dd1fa3e447f33b14ad33c949958 TxHash:0x689ea5eb44092b7ffc59a9a4767dac9183b1eec67c387521a7cc6f25ef4c4528 ReceiptHash:0x98bbbc489bfa82690931e7ed9983c21aaa18874695322d679cf968ad22010502 Bloom:[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 1 0 0 65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128 0 0 0 2 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 128 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 4 0 0 0 0 64 0 4 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0] Difficulty:+0 Number:+13 GasLimit:30000000 GasUsed:201980 Time:1733393186 Extra:[217 131 1 14 6 132 103 101 116 104 136 103 111 49 46 50 49 46 48 134 100 97 114 119 105 110] MixDigest:0xcb35c572fe032cfcaa455eddb18550df4ddc3899a93fc2783c3e3a2acaaa5632 Nonce:[0 0 0 0 0 0 0 0] BaseFee:+192882353 WithdrawalsHash:0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421 BlobGasUsed:0x14004418ed0 ExcessBlobGas:0x14004418ed8 ParentBeaconRoot:0x7352e839bd1d7cec131691a67da385df0c5c044f6eae33bb6b37a0d1218399e4}" block_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 tx=0x11d39f5c1774c84b7ff0be76b31c0f875d01668e697adba6c15deec091cdd10a -INFO [12-05|10:06:50.848] received attestation component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 attestation="&{Report:[77 79 67 75 32 82 69 80 79 82 84] PubKey:[3 195 130 176 113 214 204 59 146 78 5 125 67 55 75 146 246 210 18 189 220 85 171 223 229 127 28 229 235 9 58 243 175] EnclaveID:0x7143831b66bEA963342A98ce7bB957B1ec513c8B HostAddress:127.0.0.1:16604}" -INFO [12-05|10:06:50.848] Successfully verified attestation and identity. Owner: 0x7143831b66bEA963342A98ce7bB957B1ec513c8B component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:50.848] Encrypting secret with public key 03c382b071d6cc3b924e057d43374b92f6d212bddc55abdfe57f1ce5eb093af3af component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:50.849] Store attestation. Owner: 0x7143831b66bEA963342A98ce7bB957B1ec513c8B component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:06:50.851] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=14 block_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:06:50.851] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:06:50.854] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=15 block_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:06:50.854] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:06:50.855] Updating enclave status from [L1Catchup] to [L2Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7, L2Head=0), Host(L1Head=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7, L2Head=)" -WARN [12-05|10:06:50.855] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:50.956] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:51.058] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:51.204] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:51.204] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:51.312] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:51.414] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:51.516] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:51.618] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:51.706] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:51.721] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:51.824] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:51.926] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:52.033] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:52.137] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:52.209] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:52.244] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:52.345] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:52.447] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:52.549] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:52.651] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:52.714] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:52.762] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:52.867] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:52.971] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:53.072] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:53.174] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:53.216] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:53.276] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:53.386] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:53.496] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:53.599] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:53.701] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:53.723] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:53.802] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:53.908] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:54.012] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:54.116] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:54.222] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:54.227] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:54.325] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:54.427] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:54.530] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:54.634] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:54.731] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:54.740] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:54.848] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:54.952] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:55.056] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:55.159] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:55.235] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:55.262] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:55.365] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:55.468] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:55.575] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:55.679] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:55.738] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:55.792] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:55.900] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:56.002] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:56.105] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:56.209] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:56.243] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:56.313] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:56.417] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:56.519] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:56.623] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:56.726] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:56.748] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:56.831] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:56.950] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:57.055] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:57.157] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:57.257] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:57.258] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:57.370] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:57.472] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:57.576] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:57.680] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:57.764] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:57.783] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:57.889] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:57.992] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:58.095] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:58.200] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:58.269] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:58.303] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:58.406] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:58.511] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:58.617] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:58.719] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:58.773] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:58.822] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:58.926] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:59.030] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:59.132] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:59.237] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:59.279] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:59.339] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:59.448] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:59.551] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:59.657] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:59.761] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:06:59.795] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:06:59.863] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:06:59.966] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:00.069] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:00.176] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:00.278] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:00.299] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:00.382] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:00.486] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:00.589] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:00.693] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:00.806] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:00.806] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:00.918] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:01.021] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:01.130] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:01.234] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:01.312] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:01.340] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:01.446] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:01.548] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:01.652] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:01.755] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:01.818] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:01.859] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:01.964] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:02.072] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:02.173] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:02.278] Updating enclave status from [L2Catchup] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L2Catchup] enclave(StatusCode=0, L1Head=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7, L2Head=0), Host(L1Head=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e, L2Head=)" -INFO [12-05|10:07:02.279] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=16 block_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:02.279] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:02.279] Updating enclave status from [L1Catchup] to [L2Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e, L2Head=0), Host(L1Head=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e, L2Head=)" -INFO [12-05|10:07:02.281] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=16 block_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:02.281] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -WARN [12-05|10:07:02.281] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:02.320] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:02.383] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:02.483] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:02.584] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:02.685] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:02.787] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:02.823] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:02.891] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:02.995] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:03.096] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:03.199] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:03.307] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:03.325] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:03.409] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:03.513] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:03.615] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:03.721] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:03.824] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:03.828] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:03.929] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:04.032] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:04.135] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:04.237] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:04.334] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:04.340] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:04.444] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:04.548] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:04.651] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:04.755] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:04.843] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:04.858] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:04.961] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:05.066] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:05.169] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:05.272] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:05.347] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:05.373] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:05.475] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:05.580] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:05.685] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:05.789] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:05.854] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:05.893] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:05.995] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:06.096] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:06.203] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:06.310] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:06.359] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:06.413] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:06.517] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:06.621] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:06.723] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:06.826] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:06.864] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:06.930] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:07.033] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:07.138] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:07.240] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:07.344] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:07.370] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:07.451] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:07.558] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:07.663] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:07.765] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:07.870] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:07.874] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:07.974] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:08.076] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:08.181] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:08.285] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:08.381] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:08.387] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:08.491] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:08.593] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:08.697] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:08.801] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:08.889] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:08.903] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:09.005] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:09.107] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:09.213] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:09.317] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:09.395] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:09.420] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:09.523] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:09.626] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:09.728] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:09.830] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:09.899] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:09.932] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:10.034] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:10.135] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:10.236] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:10.338] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:10.401] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:10.439] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:10.541] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:10.642] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:10.743] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:10.846] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:10.905] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:10.949] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:11.052] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:11.156] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:11.265] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:11.367] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:11.418] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:11.470] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:11.573] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:11.677] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:11.781] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:11.886] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:11.922] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:11.992] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:12.094] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:12.199] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:12.302] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:12.406] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:12.427] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:12.508] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:12.609] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:12.713] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:12.815] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:12.918] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:12.929] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:13.022] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:13.123] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:13.227] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:13.329] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:13.432] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:13.433] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:13.535] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:13.637] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:13.741] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:13.851] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:13.939] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:13.954] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:14.056] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:14.158] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:14.256] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=17 block_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:14.257] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:14.258] Updating enclave status from [L2Catchup] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L2Catchup] enclave(StatusCode=0, L1Head=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e, L2Head=0), Host(L1Head=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b, L2Head=)" -INFO [12-05|10:07:14.261] Updating enclave status from [L1Catchup] to [L2Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b, L2Head=0), Host(L1Head=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b, L2Head=)" -INFO [12-05|10:07:14.263] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=17 block_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:07:14.265] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -WARN [12-05|10:07:14.266] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:14.371] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:14.444] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:14.473] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:14.573] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:14.675] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:14.775] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:14.878] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:14.948] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:14.986] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:15.088] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:15.192] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:15.295] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:15.398] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:15.452] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:15.502] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:15.605] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:15.717] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:15.824] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:15.927] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:15.955] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:16.029] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:16.130] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:16.166] No broadcast received from sequencer, re-registering. component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p -ERROR[12-05|10:07:16.167] Failed to re-register for broadcasts component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p err="incoming P2P is disabled, can't register for broadcasts" -WARN [12-05|10:07:16.232] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:16.334] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:16.436] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:16.461] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:16.538] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:16.640] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:16.744] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:16.846] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:16.950] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:16.964] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:17.055] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:17.158] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:17.264] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:17.367] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:17.467] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:17.468] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:17.573] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:17.676] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:17.781] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:17.885] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:17.971] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:17.992] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:18.092] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:18.195] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:18.298] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:18.400] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:18.475] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:18.504] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:18.609] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:18.714] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:18.816] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:18.921] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:18.983] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:19.024] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:19.126] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:19.229] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:19.333] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:19.437] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:19.492] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:19.539] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:19.642] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:19.747] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:19.852] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:19.955] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:19.999] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:20.058] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:20.165] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:20.269] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:20.371] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:20.475] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:20.501] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:20.577] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:20.681] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:20.784] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:20.887] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:20.990] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:21.005] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:21.091] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:21.194] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:21.298] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:21.400] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:21.509] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:21.511] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:21.612] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:21.728] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:21.835] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:21.939] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:22.013] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:22.039] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:22.141] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:22.242] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:22.344] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:22.445] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:22.516] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:22.546] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:22.648] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:22.749] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:22.851] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:22.952] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:23.019] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:23.054] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:23.155] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:23.257] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:23.359] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:23.460] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:23.521] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:23.561] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:23.663] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:23.765] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:23.867] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:23.971] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:24.024] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:24.072] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:24.174] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:24.276] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:24.383] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:24.484] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:24.529] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:24.587] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:24.689] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:24.791] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:24.893] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:24.995] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:25.033] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:25.097] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:25.198] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:25.299] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:25.401] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:25.503] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:25.535] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:25.609] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:25.710] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:25.812] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:25.913] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:26.015] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:26.038] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -WARN [12-05|10:07:26.137] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:26.237] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:26.270] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=18 block_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:26.270] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -WARN [12-05|10:07:26.370] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -WARN [12-05|10:07:26.529] could not catch up with L2 component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not fetch next L2 batch: not found" -INFO [12-05|10:07:26.567] HealthCheck failed for the enclave storage component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="not found" -INFO [12-05|10:07:26.620] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x4d754b00695bcc6f459385469258eb46fc728d627288b565abde84c452d36e5d block_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=1 batch_height=0 rollup_idx=0 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=2 batch_height=1 rollup_idx=1 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=3 batch_height=2 rollup_idx=2 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=4 batch_height=3 rollup_idx=3 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=5 batch_height=4 rollup_idx=4 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=6 batch_height=5 rollup_idx=5 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=7 batch_height=6 rollup_idx=6 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=8 batch_height=7 rollup_idx=7 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=9 batch_height=8 rollup_idx=8 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=10 batch_height=9 rollup_idx=9 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=11 batch_height=10 rollup_idx=10 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.620] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=12 batch_height=11 rollup_idx=11 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:26.621] Stored genesis component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x3de648964517100bbea3a8a765beece8134f1895d36a89e51edce8fc2a5be1a0 -INFO [12-05|10:07:26.621] Generated synthetic deployment transaction for the SystemDeployer contract component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:07:26.625] Initialize: Starting initialization of system contracts component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batchSeqNo=2 -INFO [12-05|10:07:26.625] Initialize: Initializing required addresses component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 addresses="map[Fees:0xcA0455DDEE5AAF5749b394a541BAA8DedFeB93CA MessageBus:0x45d8d4e632D82699433F6657AA7301e3744b666B PublicCallbacks:0xF77229630f48F0cB49e6739e7890ddDF96E11AB9 TransactionsPostProcessor:0xc94693CD0a8217F6f45f398d8a8C0b6586966Fc6]" -INFO [12-05|10:07:26.629] Updating enclave status from [L2Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L2Catchup] enclave(StatusCode=0, L1Head=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7, L2Head=2), Host(L1Head=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7, L2Head=1)" -INFO [12-05|10:07:26.630] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe637645fb2da977e58c1427e0ce5b5da6194f1d2c7589a33b05591582a122861 -INFO [12-05|10:07:26.631] Starting tx pool component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:07:26.631] Tx pool started component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 -INFO [12-05|10:07:26.631] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x081a460bf183daaf19032fd97cfe8884852279b921c8726983bfe58b2de0b282 -INFO [12-05|10:07:26.632] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x24c9b786c00bb4fc9eb6afac7d78525ce5a0a2fb4bacf3833d4dc04e3d9b9172 -INFO [12-05|10:07:26.637] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1fd54aadae3a61fd76acae78597a38911f345b22bef392ec53e9c82b57a84806 -INFO [12-05|10:07:26.638] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x34fccf45cecf0e3b228f4e087f8ab36b83608016423e306190d040f4774fdce8 -INFO [12-05|10:07:26.640] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x80d8c7bfca2fe44715294d937b3cd1b81778c17e1fdd211e1a6fcd26eef46ab8 -INFO [12-05|10:07:26.641] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcda2160e52d3e6ea097abe1a1bd3065d690a3ef6af953d0bc85cb6af2ef8f707 -INFO [12-05|10:07:26.642] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x11bc14c3cd1e1b9b5eff4a3c805a7383b826157fa8df27c0a6ef7c0870c6f6c4 -INFO [12-05|10:07:26.643] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xca0a0904422862de00bc2b09beb60ed69fbaeb5c3d59ab0bd88272000e101593 batch_seq_num=10 -INFO [12-05|10:07:26.643] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf310da7d9638e178c1329271044a1b4e7974f1b143a93d34aadaa788493dd527 -INFO [12-05|10:07:26.644] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x05f93fd7b9a268d547e7ca8c161f939f85af4a47aa04d6bea3449dbd6d232518 -WARN [12-05|10:07:26.645] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=374.197875ms block_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:07:26.645] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=1 batch=0xf39889c3306495ea2a29b18f006bdefa015373b6cd0e6f8b7fe5593a6b85f4ea l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -ERROR[12-05|10:07:26.645] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:07:26.645] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:07:26.646] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=2 batch=0x7217b4882f294799c12a84fdc3fdc26a88b3ed8884cb7f099490e09fe7eaef50 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -ERROR[12-05|10:07:26.646] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:07:26.646] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:07:26.646] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=3 batch=0x0624d5bfc1d2a91804635f9b92f5cecbe302b6702b2595febd1743c29bbf9e2a l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -ERROR[12-05|10:07:26.646] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:07:26.646] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:07:26.646] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=4 batch=0x3137f2f921ac789a4966dac2bacd7a9a7ebc3469ab932a6dae718a16bff33bda l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -ERROR[12-05|10:07:26.646] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:07:26.646] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:07:26.647] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=5 batch=0xc13a820fa81dd04f43a518f3037bcadfcd4e606fe82d198eb2dfa636e0c3c633 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -ERROR[12-05|10:07:26.647] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:07:26.647] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:07:26.647] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=6 batch=0x74cb47a18d7b4f391a8dbd1df50bcc26275d37d86d25264d6e4a74d78e6ca637 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -ERROR[12-05|10:07:26.647] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:07:26.647] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:07:26.647] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=7 batch=0x8de95dcd4e9d8a3633a011395e0cdef9991c94fcd910dea25ab360134151969b l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -ERROR[12-05|10:07:26.647] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:07:26.647] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:07:26.647] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=8 batch=0x4729f0043551af8e014c445341195ea2610091f539faf1d601d2e1134facd3cc l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -ERROR[12-05|10:07:26.647] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:07:26.648] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:07:26.648] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=9 batch=0xca0a0904422862de00bc2b09beb60ed69fbaeb5c3d59ab0bd88272000e101593 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -ERROR[12-05|10:07:26.648] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:07:26.648] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:07:26.648] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=10 batch=0x09e99931a3c7df09360aa758e7036a09abee0fae29fc02a8441845523a36e2d5 l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -ERROR[12-05|10:07:26.648] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:07:26.648] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:07:26.648] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=11 batch=0x78826143a1f6963083e3d51beb97c48dd19f631b542499396c0c571f4806d6fc l1=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -ERROR[12-05|10:07:26.648] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:07:26.648] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:07:38.279] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=19 block_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:38.279] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:38.590] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x56cbcab2653e88ca899d2411687b72cef4351f6a5a6745dee302d174d135e5f0 block_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:38.590] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=1 batch_height=0 rollup_idx=0 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=2 batch_height=1 rollup_idx=1 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=3 batch_height=2 rollup_idx=2 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=4 batch_height=3 rollup_idx=3 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=5 batch_height=4 rollup_idx=4 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=6 batch_height=5 rollup_idx=5 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=7 batch_height=6 rollup_idx=6 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=8 batch_height=7 rollup_idx=7 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=9 batch_height=8 rollup_idx=8 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=10 batch_height=9 rollup_idx=9 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=11 batch_height=10 rollup_idx=10 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=12 batch_height=11 rollup_idx=11 l1_height=13 l1_hash=0x7c035b2fe3cc1b6346e1598e94b204ea0ccc29ebaa89b5a3c58355d561c49889 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=13 batch_height=12 rollup_idx=12 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=14 batch_height=13 rollup_idx=13 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=15 batch_height=14 rollup_idx=14 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=16 batch_height=15 rollup_idx=15 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=17 batch_height=16 rollup_idx=16 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=18 batch_height=17 rollup_idx=17 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=19 batch_height=18 rollup_idx=18 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=20 batch_height=19 rollup_idx=19 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=21 batch_height=20 rollup_idx=20 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=22 batch_height=21 rollup_idx=21 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=23 batch_height=22 rollup_idx=22 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=24 batch_height=23 rollup_idx=23 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=25 batch_height=24 rollup_idx=24 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=26 batch_height=25 rollup_idx=25 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=27 batch_height=26 rollup_idx=26 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=28 batch_height=27 rollup_idx=27 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=29 batch_height=28 rollup_idx=28 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=30 batch_height=29 rollup_idx=29 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=31 batch_height=30 rollup_idx=30 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=32 batch_height=31 rollup_idx=31 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=33 batch_height=32 rollup_idx=32 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=34 batch_height=33 rollup_idx=33 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=35 batch_height=34 rollup_idx=34 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.591] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=36 batch_height=35 rollup_idx=35 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:38.592] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd7a91405aa1c91ac9f7464d9c4ac82df488a33d360cb40c0fa2aca34e3c7e9c8 -INFO [12-05|10:07:38.595] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6b5253b4a40cdcd398a9ac2c874d06a922a7476d41e48b274ca3579ea485fa2d -INFO [12-05|10:07:38.596] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7, L2Head=13), Host(L1Head=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122, L2Head=12)" -INFO [12-05|10:07:38.596] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6b4ebe2e46d6722f6356a2200fdcc213f6c2a636b1f4244134bd79022c6a7947 -INFO [12-05|10:07:38.598] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x08eea0782beebe1f42c1702be93f6bb5c4d1392deb2869ca78d71a6acfb2e7f6 -INFO [12-05|10:07:38.599] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb75c9ed7e7ca57e0b9b9689f72035d795fd28e700e3ae062e939ada681ffc48d -INFO [12-05|10:07:38.600] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd495e6d31afed537c0e202c200bfe79658d46d1452cb500462be5f85b06f2f37 -INFO [12-05|10:07:38.602] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf56091bceded330e236c5dcca125bf19cef9eda51b85179208cd885984992517 -INFO [12-05|10:07:38.603] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9da96de6dac5c073414be4f1201f8055a26bda623cbb151195e24b8caffd9f72 -INFO [12-05|10:07:38.604] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x5831879c688e5a2a4b487e03bf75f61857db1eede569e7c8e818c18f3ea0a326 batch_seq_num=20 -INFO [12-05|10:07:38.606] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1ec4e1c7ce22d576a120dad9cd17c36d4b884c449f4cc013629fda35dd96babd -INFO [12-05|10:07:38.627] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x00e082de518ccc3ce29a676a6db884983727abe42d996d79b2970d6ab17e8e8a -INFO [12-05|10:07:38.628] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcb9b03ccdfe02dc8587aac43e065f30984322a7a7126a7bb553263cd7c489314 -INFO [12-05|10:07:38.629] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9244b304fb0cbd1d12b5a56ac34ced25f8b7c2492859f4932f357b02aa0163c8 -INFO [12-05|10:07:38.630] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd68dc9b8aff15b3e84490ca424d59e4267fd1cec47d3ca8b844dd1d53d55068d -INFO [12-05|10:07:38.631] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xfb89f0c694c5ffa87d3f16f2098c7c7ef924cdea2f191e3e3e1a04c9d081617e -INFO [12-05|10:07:38.632] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd258fe8c7a9ee2275b707f8415c1fd87cbabefe81af5b5a406525d521d703821 -INFO [12-05|10:07:38.633] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbfafb2fbedda7f34c7a7bba3339a8bd21e8d3b02fb3d3247a393bf54a7439ae5 -INFO [12-05|10:07:38.635] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcebc0b1370480a066b43d65016052c8efe8afb7a3e18aca53a12b2a7cc7a041c -INFO [12-05|10:07:38.636] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbc2729e79df378b7278b78adac7cc5fd35712eb222566f6dbec8dae0e9e42ddd -INFO [12-05|10:07:38.636] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xfc755fb0418b3057fdb27f79bad46dc599baff436fc8de3ad6aefa06225808ce batch_seq_num=30 -INFO [12-05|10:07:38.637] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5de887dc68878b0b283f2f6fb4acb40ff4ca725087cec4989d178e6906f25bb0 -INFO [12-05|10:07:38.638] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbbcba24828e69733fc6ceab3d3db2cf30d5c08cbf75c023e38325117ba9feb33 -INFO [12-05|10:07:38.639] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x337fce49422fce214b4440c29afd663643d2185448aa38464e47bcfd853b3fb7 -INFO [12-05|10:07:38.640] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf477d5e94bd587126753ffd779325634a170b1ac9ed480b42c4364029e49cd59 -INFO [12-05|10:07:38.641] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd77b1c2eb936b14e9ce4c8d51e1700cfced6afb36b876c0daa3a9abfd7c62cce -INFO [12-05|10:07:38.642] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6b30e2641e4ddf08c155b86795b04f22c9a54d022de87da52e4ed98a1597434c -WARN [12-05|10:07:38.643] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=363.213ms block_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:07:38.643] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122, L2Head=35), Host(L1Head=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122, L2Head=35)" -INFO [12-05|10:07:38.643] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=35 batch=0xf50a4035cf579dece71dbe79ddd287686367f915d8be1aad83c957472e103bda l1=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -ERROR[12-05|10:07:38.643] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:07:38.643] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:07:50.280] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=20 block_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:50.280] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:50.611] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xe81d8ccd785f6a1e0d8aec40ba26e531f407a2ae85bcc952fffafdc4ca6ef85f block_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=13 batch_height=12 rollup_idx=0 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=14 batch_height=13 rollup_idx=1 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=15 batch_height=14 rollup_idx=2 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=16 batch_height=15 rollup_idx=3 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=17 batch_height=16 rollup_idx=4 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=18 batch_height=17 rollup_idx=5 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=19 batch_height=18 rollup_idx=6 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=20 batch_height=19 rollup_idx=7 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=21 batch_height=20 rollup_idx=8 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=22 batch_height=21 rollup_idx=9 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=23 batch_height=22 rollup_idx=10 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=24 batch_height=23 rollup_idx=11 l1_height=14 l1_hash=0x129e5372e4b1a08e7e2e682dc10339e1e1d8841e012c33d06f2b19c6b63f25bf -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=25 batch_height=24 rollup_idx=12 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=26 batch_height=25 rollup_idx=13 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=27 batch_height=26 rollup_idx=14 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=28 batch_height=27 rollup_idx=15 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=29 batch_height=28 rollup_idx=16 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=30 batch_height=29 rollup_idx=17 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=31 batch_height=30 rollup_idx=18 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=32 batch_height=31 rollup_idx=19 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=33 batch_height=32 rollup_idx=20 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=34 batch_height=33 rollup_idx=21 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=35 batch_height=34 rollup_idx=22 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.611] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=36 batch_height=35 rollup_idx=23 l1_height=15 l1_hash=0x123abf1cb063b739b1fde5eb3b21af1ec20b8b8344f4aa22c6bef56348a5a3e7 -INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=37 batch_height=36 rollup_idx=24 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=38 batch_height=37 rollup_idx=25 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=39 batch_height=38 rollup_idx=26 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=40 batch_height=39 rollup_idx=27 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=41 batch_height=40 rollup_idx=28 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=42 batch_height=41 rollup_idx=29 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=43 batch_height=42 rollup_idx=30 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=44 batch_height=43 rollup_idx=31 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=45 batch_height=44 rollup_idx=32 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=46 batch_height=45 rollup_idx=33 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=47 batch_height=46 rollup_idx=34 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.612] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=48 batch_height=47 rollup_idx=35 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:07:50.612] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xad29b1d8e35beabfaaf7e5bfdc2d80709cb1b25d1ce643f0a3349041e7caa8ad -INFO [12-05|10:07:50.614] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x0bbd298cff56ec79480199ea956e40206b17638511c58e7593592e519bbf41d9 -INFO [12-05|10:07:50.614] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122, L2Head=37), Host(L1Head=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1, L2Head=36)" -INFO [12-05|10:07:50.615] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3d8e5c12a7b9978db40e1178afa34375e980baff8538f3a08f44860758b7831d -INFO [12-05|10:07:50.616] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2de1ead0f4a375e89db6fc64d4a22a71ab14b0e77259cf51a06eea346d4d6625 -INFO [12-05|10:07:50.617] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xa68e861e23588601b29809cc839e4db03581ba6c1785475da5ede084ac46f5b5 batch_seq_num=40 -INFO [12-05|10:07:50.617] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3bd3a8dca75ffe3bf03e7b61d66b2ec0558aea3d4e02331bcc0dc35ed47dde8f -INFO [12-05|10:07:50.618] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4c5f5cb113183f1d987f76a93a50aeae1aa9d27b842781d83ec8250937abf485 -INFO [12-05|10:07:50.619] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x221f6a750c2e7fbeda6617b82bad5ac36e621e29af6da24da6694745d03e6b76 -INFO [12-05|10:07:50.620] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf69149991b738dc416c49e52c2e04585af900988b359609f56a8144a66fb9336 -INFO [12-05|10:07:50.621] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xdddb112c79358cc0cdca9a87ae8d714cab47fc2c3b1fe30457111ebd3bf6f9e6 -INFO [12-05|10:07:50.626] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2561c85228eb47b3f1310ae4b36a80946321633a54754b089e1a381535792e42 -INFO [12-05|10:07:50.627] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2419dc713d2fc24fdcbd38f3d7416c8306b6a0deb8c2605ba2fb91381623f9f1 -INFO [12-05|10:07:50.628] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x011d093956250a0a3b7a408e3b9f70b8973d37b111cd6374cffb7515bab0597b -WARN [12-05|10:07:50.629] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=348.0795ms block_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:07:50.629] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1, L2Head=47), Host(L1Head=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1, L2Head=47)" -INFO [12-05|10:07:50.629] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=47 batch=0x568c584371e6bc1dcf46a23a9c1b5073f69a659035c817628ec002462a59917c l1=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -ERROR[12-05|10:07:50.629] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:07:50.630] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:02.274] Error encountered converting the extracted relevant logs to messages component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="abi: cannot marshal in to go type: length insufficient 64 require 96" -ERROR[12-05|10:08:02.274] Error encountered converting logs to transfers component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 "!BADKEY"="abi: cannot marshal in to go type: length insufficient 64 require 96" "!BADKEY"= LOG_ERROR="Normalized odd number of arguments by adding nil" -ERROR[12-05|10:08:02.284] Error encountered converting the extracted relevant logs to messages component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="abi: cannot marshal in to go type: length insufficient 64 require 96" -ERROR[12-05|10:08:02.284] Error encountered converting logs to transfers component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 "!BADKEY"="abi: cannot marshal in to go type: length insufficient 64 require 96" "!BADKEY"= LOG_ERROR="Normalized odd number of arguments by adding nil" -ERROR[12-05|10:08:02.292] Error encountered converting the extracted relevant logs to messages component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="abi: cannot marshal in to go type: length insufficient 64 require 96" -ERROR[12-05|10:08:02.292] Error encountered converting logs to transfers component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 "!BADKEY"="abi: cannot marshal in to go type: length insufficient 64 require 96" "!BADKEY"= LOG_ERROR="Normalized odd number of arguments by adding nil" -INFO [12-05|10:08:02.325] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=21 block_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:02.325] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:02.846] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x9055fe4d96a9f1fcd7863d0aa102cfa6bc7c774b9b684c63a5a5b52156e4427a block_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=37 batch_height=36 rollup_idx=0 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=38 batch_height=37 rollup_idx=1 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=39 batch_height=38 rollup_idx=2 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=40 batch_height=39 rollup_idx=3 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=41 batch_height=40 rollup_idx=4 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=42 batch_height=41 rollup_idx=5 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=43 batch_height=42 rollup_idx=6 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=44 batch_height=43 rollup_idx=7 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=45 batch_height=44 rollup_idx=8 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=46 batch_height=45 rollup_idx=9 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=47 batch_height=46 rollup_idx=10 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=48 batch_height=47 rollup_idx=11 l1_height=16 l1_hash=0x9bb9df639b1cc98c04ffb2ddfc2f4ecf7a0c2f457d627e0ec2d2708840a4b18e -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=49 batch_height=48 rollup_idx=12 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=50 batch_height=49 rollup_idx=13 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=51 batch_height=50 rollup_idx=14 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=52 batch_height=51 rollup_idx=15 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=53 batch_height=52 rollup_idx=16 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=54 batch_height=53 rollup_idx=17 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=55 batch_height=54 rollup_idx=18 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=56 batch_height=55 rollup_idx=19 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=57 batch_height=56 rollup_idx=20 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=58 batch_height=57 rollup_idx=21 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=59 batch_height=58 rollup_idx=22 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.846] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=60 batch_height=59 rollup_idx=23 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:02.847] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7ecc0096de2381a298b55cfd59740a8dfb5e23a316d1faae54b33818e35445a4 -INFO [12-05|10:08:02.848] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb3cacb1c10c76f15526c419b3da8c76bacfed9c2a6b405c4cece49e68a1cb7c4 -INFO [12-05|10:08:02.849] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xeeb37eeb92854343c6c937c06a94c946c468493c4387d2ae6e8c9efc3854b3cb batch_seq_num=50 -INFO [12-05|10:08:02.849] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x16c1dd6425b09adf9d48bc61d6acae6a19fc9314651b00f73ed14e0d37e4d606 -INFO [12-05|10:08:02.850] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9e9dadf18d733bfbcc63e860c4c4c3e84b9abacd9b2ae7eec3c79038daea6827 -INFO [12-05|10:08:02.851] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe03483335a3c7480b529730c1fec92deddf54b64fb5f870d82be7a0df63a55c5 -INFO [12-05|10:08:02.852] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcd333c99909bcd099db25b7d14c1913f57491a4aac77e95303c13aa4b33eb6ec -INFO [12-05|10:08:02.853] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6a54bd039e22307fd176779fecb4ad2de846ac2565faeab0be1900599c200c6d -INFO [12-05|10:08:02.855] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x95e217f2103a361576bcb68bdb67e05cef45d9771cb0d31986b81013600fabcd -INFO [12-05|10:08:02.857] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x00578b5da965cb06b099f873d57ccdeabfe4a17b027509533ab401c6aa5b7c86 -INFO [12-05|10:08:02.859] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x828b66aaf85978127e672bdbc9ddd2d19c73a4f0c707655e00754667c8babf34 -INFO [12-05|10:08:02.860] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6bbe31dea81cfeb94ce57999bb29c222dc5573dcb0078a894cab3d044ee30068 -INFO [12-05|10:08:02.862] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6850d26beee4b51ee951efdea160120eb6732d853a8583c866ff3a319df49b68 -INFO [12-05|10:08:02.863] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xda84e8c2861184036152639e679adf751aa6a855c9265d89b4efc9b7ae75d56a batch_seq_num=60 -ERROR[12-05|10:08:02.863] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=537.751083ms block_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:02.864] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=48 batch=0x926f9e0f6936da8a7954402d552a19d4be964a6ad802721f52ba7fb838825b98 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -ERROR[12-05|10:08:02.864] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:02.864] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:08:02.864] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=49 batch=0xeeb37eeb92854343c6c937c06a94c946c468493c4387d2ae6e8c9efc3854b3cb l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -ERROR[12-05|10:08:02.864] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:02.864] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:08:02.864] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=50 batch=0x3c2e65273f2a761fc4ef4ed59bda5f2e77e6dc9ffb3203960a070e6f02480bc6 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -ERROR[12-05|10:08:02.864] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:02.864] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:08:02.864] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=51 batch=0xe30b0fbda65a5779b07c412a778c8eb3737e493a968ae562da8851ac0847619a l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -ERROR[12-05|10:08:02.864] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:02.865] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:08:02.865] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=52 batch=0x1690bb392413cb3b0f0e5b2db2363f3ca628bf089120bfb79c9f73a6d2800819 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -ERROR[12-05|10:08:02.865] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:02.865] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:08:02.865] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=53 batch=0x168c05c52d1ee3abcf723729a3ecf1c805393a11f04c878688f00a1005817c0b l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -ERROR[12-05|10:08:02.865] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:02.865] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:08:02.865] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=54 batch=0xa57feef2b1757c4d4194dc27afbd0b6054dde3aa13ad6778002e1d43e6c187c4 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -ERROR[12-05|10:08:02.865] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:02.866] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:08:02.866] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=55 batch=0x39bd8bace4d2b2b67eb3a9bdc68adddc5252d76c7b70471b30d3273075864f8a l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -ERROR[12-05|10:08:02.866] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:02.866] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:08:02.866] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=56 batch=0xbd63e399e13ebfefe7381c15b08221058376b13737dea1d9332c36aefbc8e249 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -ERROR[12-05|10:08:02.866] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:02.866] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:08:02.866] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=57 batch=0x269fb72d07828969727e6c1114aacec9ebb71f03d8d23f94fbea1b6335289b8f l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -ERROR[12-05|10:08:02.866] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:02.867] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:08:02.867] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=58 batch=0xfda7960bf2fb804b5126ff4c6ad09e51b5369006f6616763687d675095e04692 l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -ERROR[12-05|10:08:02.867] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:02.867] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:08:02.867] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=59 batch=0xda84e8c2861184036152639e679adf751aa6a855c9265d89b4efc9b7ae75d56a l1=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -ERROR[12-05|10:08:02.867] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:02.867] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:08:14.272] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=22 block_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:14.272] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:14.579] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x741d5263c3958da9f12a48b2e2fefd0f86b47e28339beb118ff2792ee2b7ed42 block_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=49 batch_height=48 rollup_idx=0 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=50 batch_height=49 rollup_idx=1 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=51 batch_height=50 rollup_idx=2 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=52 batch_height=51 rollup_idx=3 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=53 batch_height=52 rollup_idx=4 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=54 batch_height=53 rollup_idx=5 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=55 batch_height=54 rollup_idx=6 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=56 batch_height=55 rollup_idx=7 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=57 batch_height=56 rollup_idx=8 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=58 batch_height=57 rollup_idx=9 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=59 batch_height=58 rollup_idx=10 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=60 batch_height=59 rollup_idx=11 l1_height=17 l1_hash=0xb8c8e207e14c63f7172c0ed16a9a45826461858250465704f92b34e47f42c81b -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=61 batch_height=60 rollup_idx=12 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=62 batch_height=61 rollup_idx=13 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=63 batch_height=62 rollup_idx=14 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=64 batch_height=63 rollup_idx=15 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=65 batch_height=64 rollup_idx=16 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=66 batch_height=65 rollup_idx=17 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=67 batch_height=66 rollup_idx=18 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=68 batch_height=67 rollup_idx=19 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=69 batch_height=68 rollup_idx=20 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=70 batch_height=69 rollup_idx=21 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=71 batch_height=70 rollup_idx=22 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.579] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=72 batch_height=71 rollup_idx=23 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:14.580] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8a962a7fd526cad730fc484f4ec9657130714f712a24f6015d5412db85e8c4e9 -INFO [12-05|10:08:14.581] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc5da16b7d460c6fcbd3318277c817287d9477160f1f1d7a648fa602ef102b8e6 -INFO [12-05|10:08:14.583] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3a815fa6b967a191f2e9745ef8e3498869be2111f988dafdbf6f3b5d4a40bcc5 -INFO [12-05|10:08:14.584] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd8f401f3ecb38d71c777c181d228e37109bf0225e50972f1bcb81b8baf0a483b -INFO [12-05|10:08:14.585] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1f163ad0f178b1252c5458ed3b2a5464e4e21df358c64a99ca2d80742dfa2307 -INFO [12-05|10:08:14.587] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc770bd6be85f24e414f10eb80b8a40876b7b37633db34985bc6287983c45e271 -INFO [12-05|10:08:14.588] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8efcfdfb0599b7abc22f94ce081efe586eb148a0d5972981c55b9181380fcb92 -INFO [12-05|10:08:14.589] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc0394b032031384e7dd453a3e0bd726c58b068170f28887682122a2aa0a4b6af -INFO [12-05|10:08:14.591] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad, L2Head=61), Host(L1Head=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe, L2Head=60)" -INFO [12-05|10:08:14.592] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb0021e0cd18492364b2154de205f47faa34cf8f9ccee343fcb5a0d7dfda4fde5 -INFO [12-05|10:08:14.631] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7f4f76a835af1de1025aebb0c783f26176d59d2025ddc6810f0dbb0d54ce6693 -INFO [12-05|10:08:14.633] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x7a05621563c168bd80c4bff3ee1f35b474a1f83d6974a5a004fd2f75b1a5ffc7 batch_seq_num=70 -INFO [12-05|10:08:14.634] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xdb5414cbffdeb53e2d17bbe1a216d266decb4e7b19d987cf5e70754f54df6764 -INFO [12-05|10:08:14.635] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x57156cb2aa9828f538abddeacfadd0168a6e59fb27f5de0d04a17cb980ebf8bf -WARN [12-05|10:08:14.636] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=363.741792ms block_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:08:14.637] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe, L2Head=71), Host(L1Head=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe, L2Head=71)" -INFO [12-05|10:08:14.637] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=71 batch=0x610c0d88336f3df810df2ff1d43d5fb4f16451bf3e319d530d97d8d5e2bcd351 l1=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -ERROR[12-05|10:08:14.637] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:14.637] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:08:16.166] No broadcast received from sequencer, re-registering. component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p -ERROR[12-05|10:08:16.167] Failed to re-register for broadcasts component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p err="incoming P2P is disabled, can't register for broadcasts" -INFO [12-05|10:08:26.322] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=23 block_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:26.322] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:26.558] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x44dad3ddd9436dc2e2f6b7465991220233359c6c10a220ae69c66b88c84d5693 block_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=61 batch_height=60 rollup_idx=0 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=62 batch_height=61 rollup_idx=1 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=63 batch_height=62 rollup_idx=2 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=64 batch_height=63 rollup_idx=3 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=65 batch_height=64 rollup_idx=4 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=66 batch_height=65 rollup_idx=5 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=67 batch_height=66 rollup_idx=6 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=68 batch_height=67 rollup_idx=7 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=69 batch_height=68 rollup_idx=8 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=70 batch_height=69 rollup_idx=9 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=71 batch_height=70 rollup_idx=10 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=72 batch_height=71 rollup_idx=11 l1_height=18 l1_hash=0xfadd236792cbf92eca1414a61af003e695117c27b105dbdeb12abc8d362fb1d7 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=73 batch_height=72 rollup_idx=12 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=74 batch_height=73 rollup_idx=13 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=75 batch_height=74 rollup_idx=14 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=76 batch_height=75 rollup_idx=15 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=77 batch_height=76 rollup_idx=16 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=78 batch_height=77 rollup_idx=17 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=79 batch_height=78 rollup_idx=18 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=80 batch_height=79 rollup_idx=19 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=81 batch_height=80 rollup_idx=20 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=82 batch_height=81 rollup_idx=21 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=83 batch_height=82 rollup_idx=22 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.559] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=84 batch_height=83 rollup_idx=23 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:26.560] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8e4e832f1286a0588fd31b1779fd2870a7a183a89261b146d703d37ec3edebe8 -INFO [12-05|10:08:26.561] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4bcb335e8f017bbbbf36591915504b864fab34e63c76985105e4e298f156dd5e -INFO [12-05|10:08:26.562] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcc606b1307711bb781b7083c254fafd461787253bcfefe68f97bd1e3bdad8641 -INFO [12-05|10:08:26.566] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe, L2Head=73), Host(L1Head=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817, L2Head=72)" -INFO [12-05|10:08:26.570] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x68f2febf1c0595158211eb2db6026e611ff578073d7bf95b0ebea9140e037a5e -INFO [12-05|10:08:26.571] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xec1d5bc5b90efeb8def902a126855a9d4dbab7d2d2bb6bab55e38affc2f53b07 -INFO [12-05|10:08:26.573] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xfc7f5babde42eb27fa0d62c90bcf8351c770773761a398cca0ec1d423605ff5b -INFO [12-05|10:08:26.574] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xba5a5ae9601fc4de6e9e6242f5f4c93db5706437b915a3fd55c512b0fab4aebd -INFO [12-05|10:08:26.577] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe6f87b91bbaf2050f7498c735e584564520cbb13dd647053df826062f3db3045 -INFO [12-05|10:08:26.579] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xd82b8e93bbcd6da0939497f1f236734eef95fe700ffa4bd42525166983fe0dcf batch_seq_num=80 -INFO [12-05|10:08:26.580] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x945512b12c2bc555cd26509c05bdd73b8b0354ed86b58638f50dcb21281715ba -INFO [12-05|10:08:26.633] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x275f9eb995c495cf374ce6a9db0835e4be78b126caae8ab37f87e3243b0241de -INFO [12-05|10:08:26.634] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc17a83b46f765119503b5995e700b4ca5418c8ee38eb37dde957d48c2a5153e6 -INFO [12-05|10:08:26.643] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x20dd8cedd83fd2953a439f0650db497c800038f3a9128ebcdaf6bfbe4629f3ac -WARN [12-05|10:08:26.653] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=330.480125ms block_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:08:26.661] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817, L2Head=84), Host(L1Head=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817, L2Head=83)" -INFO [12-05|10:08:26.662] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=83 batch=0x3775faec8fe7707d794a14fea8f4e3ddea738c1b5d97e48fe8f6a0d78953e3a8 l1=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -ERROR[12-05|10:08:26.662] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:26.665] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:08:38.306] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=24 block_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:38.306] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:38.534] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x0438f4e7a1d665279152b903a512db360e688aa829f2e124ef0455ea09f80a8e block_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=73 batch_height=72 rollup_idx=0 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=74 batch_height=73 rollup_idx=1 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=75 batch_height=74 rollup_idx=2 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=76 batch_height=75 rollup_idx=3 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=77 batch_height=76 rollup_idx=4 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=78 batch_height=77 rollup_idx=5 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=79 batch_height=78 rollup_idx=6 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=80 batch_height=79 rollup_idx=7 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.534] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=81 batch_height=80 rollup_idx=8 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=82 batch_height=81 rollup_idx=9 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=83 batch_height=82 rollup_idx=10 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=84 batch_height=83 rollup_idx=11 l1_height=19 l1_hash=0x84cb670b91de486d8a1b3948241c6f63b07efa48a6e4fc16cb0582325cedf122 -INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=85 batch_height=84 rollup_idx=12 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=86 batch_height=85 rollup_idx=13 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=87 batch_height=86 rollup_idx=14 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=88 batch_height=87 rollup_idx=15 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=89 batch_height=88 rollup_idx=16 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=90 batch_height=89 rollup_idx=17 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=91 batch_height=90 rollup_idx=18 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=92 batch_height=91 rollup_idx=19 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=93 batch_height=92 rollup_idx=20 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=94 batch_height=93 rollup_idx=21 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=95 batch_height=94 rollup_idx=22 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.535] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=96 batch_height=95 rollup_idx=23 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:38.535] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3cc670f3a6f70fa2a2958d10c72089e5c63cefa78be221f4389e2d877427eda6 -INFO [12-05|10:08:38.537] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6ba5d7c709e709c31dcee5197012ae2511e1e09578695c021d43a6870d622474 -INFO [12-05|10:08:38.538] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xfa1bd89fea5b74197ad3d0ae32257fd894042d64f4adf2519c1f18b9bf01649e -INFO [12-05|10:08:38.540] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x516a23583539426682105571e10f5c34aa8b1af996410d73a7f00fea2c795032 -INFO [12-05|10:08:38.541] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa6229f177e08596375f63c1c8b9e72fdc55d9c814017d7e0f4ce35324c26db44 -INFO [12-05|10:08:38.543] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x76c4fdf248929e12ebcf93980b9c64a2a386abf919a64e00c9bc4b945d3752be -INFO [12-05|10:08:38.544] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x4ec63248b7f7eba1f664ccc84bce00586d42f12e3256710d23e20bc6e494fb1a batch_seq_num=90 -INFO [12-05|10:08:38.544] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x41c8a4cc0282d43d97bc13a71afc073f271fc88033fa240ee6efccb15d4b430c -INFO [12-05|10:08:38.546] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2baf2cc5f36589bdb81322409ecd6cfadc80044d5c8989807da3455061e55ea0 -INFO [12-05|10:08:38.546] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817, L2Head=85), Host(L1Head=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0, L2Head=84)" -INFO [12-05|10:08:38.548] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc665e7488d8544ba1b937528d2ba73cba7678764290f31cac7ec8324c673200b -INFO [12-05|10:08:38.567] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xaa68139ce4b686602490e88341a99ff9fbb73ea599b5db87c09a9703598f063d -INFO [12-05|10:08:38.635] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x18b192b241acec6bff11b1ccf7e90f11c358d6a4cf2d5fe1d771bd3a4cfec5d1 -INFO [12-05|10:08:38.636] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcff1ec381fe45e2488bf450059f9355f9bf985d92f5fc7f9c66856bc94ff6e64 -WARN [12-05|10:08:38.637] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=330.408209ms block_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:08:38.638] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0, L2Head=96), Host(L1Head=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0, L2Head=95)" -INFO [12-05|10:08:38.639] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=95 batch=0xf323b8f8cb166c16c60ac84db898998b6d6575bdea2cd82a15566cdbc54593ed l1=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -ERROR[12-05|10:08:38.639] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:38.640] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:08:50.278] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=25 block_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:50.278] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:50.586] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x9929e7f484aa19420645789f75bb66be22ef26d0c99e418b1eb6b4c55812221a block_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=85 batch_height=84 rollup_idx=0 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=86 batch_height=85 rollup_idx=1 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=87 batch_height=86 rollup_idx=2 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=88 batch_height=87 rollup_idx=3 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=89 batch_height=88 rollup_idx=4 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=90 batch_height=89 rollup_idx=5 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=91 batch_height=90 rollup_idx=6 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=92 batch_height=91 rollup_idx=7 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=93 batch_height=92 rollup_idx=8 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=94 batch_height=93 rollup_idx=9 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=95 batch_height=94 rollup_idx=10 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=96 batch_height=95 rollup_idx=11 l1_height=20 l1_hash=0xad707cb5048ff9c670bfd695c1f5f6a3a60e5b85b224c06ecf2c52ad0836f4b1 -INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=97 batch_height=96 rollup_idx=12 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=98 batch_height=97 rollup_idx=13 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.587] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=99 batch_height=98 rollup_idx=14 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=100 batch_height=99 rollup_idx=15 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=101 batch_height=100 rollup_idx=16 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=102 batch_height=101 rollup_idx=17 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=103 batch_height=102 rollup_idx=18 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=104 batch_height=103 rollup_idx=19 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=105 batch_height=104 rollup_idx=20 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=106 batch_height=105 rollup_idx=21 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=107 batch_height=106 rollup_idx=22 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.588] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=108 batch_height=107 rollup_idx=23 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:08:50.588] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x74e42d7149dd99eb62467537a6eb816c6317a9af0b582e63d2d59321ec59925d -INFO [12-05|10:08:50.590] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf7eae1b52aedbfdac922633dabd4ba1a901fa586abbf497bf21ef395ff67c26f -INFO [12-05|10:08:50.591] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0, L2Head=97), Host(L1Head=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047, L2Head=96)" -INFO [12-05|10:08:50.596] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8762433daf5fce3871414115f45296d8b42940b39947fcef42bc56c3efac1a37 -INFO [12-05|10:08:50.597] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7836a31339fd66f4e50491ed2d0d5acb84c4e8225823840bcd09afabc0f413e6 -INFO [12-05|10:08:50.598] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xa18526cf44dd12c7b0b001aa1a335fe2f4b4ed021d782bef3c5d64054bfcc666 batch_seq_num=100 -INFO [12-05|10:08:50.598] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9a4a3aaff3c8e63aed16c774058211523a41edf52eb0374d55f2d90b1e56fdb4 -INFO [12-05|10:08:50.600] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf4fca0f35db7d01f64a0be3efcee2caed2e3bd4210050f194ec052cec9a99da7 -INFO [12-05|10:08:50.617] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x24da0d510f6c245b3a880f4a322ac6ac4aef709d6092aa7f858da62bf00ecdb3 -INFO [12-05|10:08:50.623] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x91caf522213155349fdc74f333f6a3d5da33c5dc4b3bf47e3c1bcb5edf362b72 -INFO [12-05|10:08:50.624] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4cb22c5d50cad003693e31cf8f192def1aca9920e0d79be31c2f9978947b990a -INFO [12-05|10:08:50.626] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf7e7a1939b2d4b222998aeccc7a94209c1aa7e8bd865ec6c36f4d5a90061bbda -INFO [12-05|10:08:50.630] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2172549ca2d5e4ac6305984099be24424b30f70e62316031129aef32f6bedac0 -INFO [12-05|10:08:50.631] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7b6cdaf7b792e8dffb4216c6840ddee17a2e4c4db46d7bf64fd4bc608be449e8 -WARN [12-05|10:08:50.632] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=352.730292ms block_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:08:50.632] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047, L2Head=107), Host(L1Head=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047, L2Head=107)" -INFO [12-05|10:08:50.632] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=107 batch=0x3a46ad359ea8ac142aed3973883ce71e91fbed87ad4516901d60df2cb0fe8c9c l1=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -ERROR[12-05|10:08:50.632] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:08:50.632] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:09:02.327] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=26 block_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:02.327] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:02.890] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x825a375d9fbc85d67f5d669198fd4e74aadadb4013afd54535eda0e86bd9470c block_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=97 batch_height=96 rollup_idx=0 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=98 batch_height=97 rollup_idx=1 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=99 batch_height=98 rollup_idx=2 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=100 batch_height=99 rollup_idx=3 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=101 batch_height=100 rollup_idx=4 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=102 batch_height=101 rollup_idx=5 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=103 batch_height=102 rollup_idx=6 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=104 batch_height=103 rollup_idx=7 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=105 batch_height=104 rollup_idx=8 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=106 batch_height=105 rollup_idx=9 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=107 batch_height=106 rollup_idx=10 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=108 batch_height=107 rollup_idx=11 l1_height=21 l1_hash=0x82327995b5d1397b83d9d5534e09ef916e16267c3a60d14dcc387d4a754c3aad -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=109 batch_height=108 rollup_idx=12 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=110 batch_height=109 rollup_idx=13 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=111 batch_height=110 rollup_idx=14 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=112 batch_height=111 rollup_idx=15 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=113 batch_height=112 rollup_idx=16 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=114 batch_height=113 rollup_idx=17 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.890] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=115 batch_height=114 rollup_idx=18 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.891] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=116 batch_height=115 rollup_idx=19 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.891] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=117 batch_height=116 rollup_idx=20 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.891] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=118 batch_height=117 rollup_idx=21 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.891] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=119 batch_height=118 rollup_idx=22 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.891] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=120 batch_height=119 rollup_idx=23 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:02.891] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x311daf0f599c23e81934db533d0d75d41d5c62fcb280911d5de361fbca5fa0b2 -INFO [12-05|10:09:02.892] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6625e5df29643b2516f41896e51ac94627b3e63bef597a1475d4767f4d88d6e5 -INFO [12-05|10:09:02.893] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047, L2Head=109), Host(L1Head=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640, L2Head=108)" -INFO [12-05|10:09:02.894] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x37bfc53e03a8b2ba4b75d8e2d00c30428a4454f68933097f2b8d7007e39a36d4 batch_seq_num=110 -INFO [12-05|10:09:02.894] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5fa4fd7ac4e98c0e43b36be8e60a391d56de0f07c207cb76d893cdd4a7ba6657 -INFO [12-05|10:09:02.896] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc162230b7db96585761fbe392d10e9b846067819c7bb805d28e1f215c32e6785 -INFO [12-05|10:09:02.898] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xab37cd06aa42175adeadcbbb0f81056662c68b340991438efbe7832b8a46a82b -INFO [12-05|10:09:02.899] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe1748dc8b991bbb11925eba64dbc54ea78b54fa54f8ba381fb6db5ef806f1654 -INFO [12-05|10:09:02.902] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x0db46de50c1c18aac965ca503c89154b1895afa59a435faf584c8cb63afa4afc -INFO [12-05|10:09:02.903] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x78d7b05126112591e2561275d2799e24d59792c84793bc757d39ecc2d4f24026 -INFO [12-05|10:09:02.905] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x74ea441c27057ef4481ff2514f7237cb17e5b087b7aa85713e1fa81a64651c32 -INFO [12-05|10:09:02.907] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7748ab7786bce4cbbcabf107416f29f8708150e024622dd7c863beca1e2ce6f3 -INFO [12-05|10:09:02.908] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8be1d3d5a2317818e472dddcef475b5870255ee61c7c9b04f0b6114dd772ad10 -INFO [12-05|10:09:02.909] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x097ad87fe3d68e347efefa52c97e2b1fca9767d1b5542c113f29922e10577edd -INFO [12-05|10:09:02.910] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xa6683b1d45731a16acde0b0bd745dcbfb262040bf61f572b213d4fa48c72ee7c batch_seq_num=120 -ERROR[12-05|10:09:02.910] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=582.302417ms block_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:02.910] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640, L2Head=119), Host(L1Head=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640, L2Head=119)" -INFO [12-05|10:09:02.911] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=119 batch=0xa6683b1d45731a16acde0b0bd745dcbfb262040bf61f572b213d4fa48c72ee7c l1=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -ERROR[12-05|10:09:02.911] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:09:02.911] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:09:14.247] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=27 block_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:14.247] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:14.462] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x3afcc127ca9c07cc93f9862e9f7ac29dcd4876fb21aa55ba8e482315f02031ce block_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=109 batch_height=108 rollup_idx=0 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=110 batch_height=109 rollup_idx=1 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=111 batch_height=110 rollup_idx=2 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=112 batch_height=111 rollup_idx=3 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=113 batch_height=112 rollup_idx=4 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=114 batch_height=113 rollup_idx=5 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=115 batch_height=114 rollup_idx=6 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=116 batch_height=115 rollup_idx=7 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=117 batch_height=116 rollup_idx=8 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=118 batch_height=117 rollup_idx=9 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=119 batch_height=118 rollup_idx=10 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=120 batch_height=119 rollup_idx=11 l1_height=22 l1_hash=0x11fbdfa77985ed199501477251fde58bf6b5ec5e85e6ed19edb1b74c6e0c6afe -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=121 batch_height=120 rollup_idx=12 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=122 batch_height=121 rollup_idx=13 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=123 batch_height=122 rollup_idx=14 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=124 batch_height=123 rollup_idx=15 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=125 batch_height=124 rollup_idx=16 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=126 batch_height=125 rollup_idx=17 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=127 batch_height=126 rollup_idx=18 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=128 batch_height=127 rollup_idx=19 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=129 batch_height=128 rollup_idx=20 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=130 batch_height=129 rollup_idx=21 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=131 batch_height=130 rollup_idx=22 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.463] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=132 batch_height=131 rollup_idx=23 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:14.464] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7caa955f0827a20387e913ebd48dcd31a21e48217cf5e0ed2f2d699d338fb461 -INFO [12-05|10:09:14.465] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x02a299ab49b2d45465943a0852b89f3e05d269b6ef3ef62d890795e40cb0afb3 -INFO [12-05|10:09:14.467] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc31ddcbf8d1a148b237e1b94ad75fd280fda2091f044b040328b0d45dc8e1c78 -INFO [12-05|10:09:14.469] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640, L2Head=121), Host(L1Head=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df, L2Head=120)" -INFO [12-05|10:09:14.533] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb0d9d18b3aa758658ae4d3c4600e4aecf33d2b17d534f3552a44940f3e2f2517 -INFO [12-05|10:09:14.535] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1a7994fd1d74e86d61a55c3ebe1919a99c7e4cd827bc50b22aa65ed8f4153694 -INFO [12-05|10:09:14.536] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1119737378487e361e095045cd029dfa9341c918224495b282f94399e3899788 -INFO [12-05|10:09:14.539] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2dd63ae517032757e40c1c43aa05a6e75fbc64a121f8d20aeff491bd0fbfba23 -INFO [12-05|10:09:14.541] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd9cf6ca0aded6caca2a926fb4dc19d42f77720e254e90383a35c95bc3bb7c9ad -INFO [12-05|10:09:14.543] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa094f3238bd6401ffedef5588540b221dfba7ac6923201b606e3808cb93ba8a0 -INFO [12-05|10:09:14.545] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4edaefa978245a8e57573749d36f622094b5bd4fbff1c97b20b1cebc2016821a -INFO [12-05|10:09:14.546] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x7a1a0634d0caecbee41363fcd7c42d42d928ff3c9aa77676c9cd2bd1c08d8757 batch_seq_num=130 -INFO [12-05|10:09:14.546] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xfaf9bb358c74f87e09ffd52f44d2c5523904838c8620e7f6c246d142587b33d8 -INFO [12-05|10:09:14.548] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xfe4c181c1b9791538ed5c0d73c14dc98ede9b016993d443f8b918346be9b1a4f -WARN [12-05|10:09:14.549] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=301.04075ms block_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:09:14.549] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df, L2Head=127), Host(L1Head=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df, L2Head=127)" -INFO [12-05|10:09:14.551] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=127 batch=0xad119e0aeb19160c6650751ff527b1a99b6d90be50e48edf7fbea4fc07a448cb l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -ERROR[12-05|10:09:14.552] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:09:14.552] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:09:14.552] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=128 batch=0xfd8e0a08b60b19bf208f1de81f05cf3fc3f4eff578f8fde0862ec7752d005ca5 l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -ERROR[12-05|10:09:14.552] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:09:14.552] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:09:14.552] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=129 batch=0x7a1a0634d0caecbee41363fcd7c42d42d928ff3c9aa77676c9cd2bd1c08d8757 l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -ERROR[12-05|10:09:14.557] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:09:14.558] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:09:14.561] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=130 batch=0x4f3450c979da480f6b1f55b0e75a85ac2d36e51c6733fd5241024f2dcbd1d2bf l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -ERROR[12-05|10:09:14.561] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:09:14.567] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:09:14.570] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=131 batch=0x95ebf88846233ee7d5fdfb870b30d024e704bec0c3764d0450996b58cdc0de1d l1=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -ERROR[12-05|10:09:14.570] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:09:14.570] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:09:16.167] No broadcast received from sequencer, re-registering. component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p -ERROR[12-05|10:09:16.167] Failed to re-register for broadcasts component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p err="incoming P2P is disabled, can't register for broadcasts" -INFO [12-05|10:09:26.300] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=28 block_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:26.300] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:26.614] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xfed2d9e0c51a7a8ae46229207971d75df1b7f29c991bd820e7360ae2b3b5ef53 block_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=121 batch_height=120 rollup_idx=0 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=122 batch_height=121 rollup_idx=1 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=123 batch_height=122 rollup_idx=2 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=124 batch_height=123 rollup_idx=3 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=125 batch_height=124 rollup_idx=4 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=126 batch_height=125 rollup_idx=5 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=127 batch_height=126 rollup_idx=6 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=128 batch_height=127 rollup_idx=7 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=129 batch_height=128 rollup_idx=8 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=130 batch_height=129 rollup_idx=9 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=131 batch_height=130 rollup_idx=10 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=132 batch_height=131 rollup_idx=11 l1_height=23 l1_hash=0xbac84b6d93ef8411649b031c749fbcace309650bda9791828e458f310018d817 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=133 batch_height=132 rollup_idx=12 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=134 batch_height=133 rollup_idx=13 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=135 batch_height=134 rollup_idx=14 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=136 batch_height=135 rollup_idx=15 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=137 batch_height=136 rollup_idx=16 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=138 batch_height=137 rollup_idx=17 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=139 batch_height=138 rollup_idx=18 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=140 batch_height=139 rollup_idx=19 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=141 batch_height=140 rollup_idx=20 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=142 batch_height=141 rollup_idx=21 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=143 batch_height=142 rollup_idx=22 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.615] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=144 batch_height=143 rollup_idx=23 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:26.616] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7f651e9ef74e05e335b67a1b020367818d8887dcee4469632dc23d80f537a0a8 -INFO [12-05|10:09:26.617] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2c6588270212f5d819ab1bc6988e769ef6ce260f291be5f1fb3f6742686a938a -INFO [12-05|10:09:26.619] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df, L2Head=133), Host(L1Head=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1, L2Head=132)" -INFO [12-05|10:09:26.622] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x33c6d42324526b26c445907af98397818212cc131b2e9fede128bff29c58d96e -INFO [12-05|10:09:26.625] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x95acc78d1362a0898a4d85ea37616d029f2de7fdc6a5dd4f5d15116cf2d4fdf6 -INFO [12-05|10:09:26.627] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6abe363ed9195009dd0d8e686c69e92805ced689f279ef741c68bc91a077ddfb -INFO [12-05|10:09:26.628] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x0305602660e094f01435960e1ef093fe3f0ba3f4ebb0dc79a1d7e77c9089c6e3 -INFO [12-05|10:09:26.630] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xaa4096c661566e4a7f4ffccb0f13168ca27c2b6918ea8dc99d5bc533641364eb -INFO [12-05|10:09:26.632] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb60bfbe6ca1d60ae29208442c25563a55529a9f053bd5e0bde23ebf2f98aa8ac -INFO [12-05|10:09:26.634] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xf39041d9a5b0a356fdfe1de16b75b30ec4d38ecff34e03d6b90dd9c28f2037ae batch_seq_num=140 -INFO [12-05|10:09:26.634] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc0061f8294b9d4d653d1027515ee8b92079d1268f51fd509df576e49f0341165 -INFO [12-05|10:09:26.636] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2b4fd707ec56e2fd6de50dcc46aa873331e10535c53201769567dbcf5ac898b5 -INFO [12-05|10:09:26.637] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9a6b91ed5e8f02462fe09bdf86834b988ab77c47527f80c9562c4b03e5186dfc -INFO [12-05|10:09:26.639] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe12e9b082ced482bd2e3788440624c2a3ceabbee5b6e826aa5db07e82832fafa -WARN [12-05|10:09:26.640] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=339.618208ms block_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:09:26.640] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1, L2Head=141), Host(L1Head=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1, L2Head=141)" -INFO [12-05|10:09:26.641] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=141 batch=0xf198c66bfa792a0623de040e190691e4ab10ad51460876f06125292c0c3158ed l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -ERROR[12-05|10:09:26.641] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:09:26.642] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:09:26.643] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=142 batch=0xde66fbf0db05db34cbabf488b692fadda76ccc9df6c115cfaa15b2cdf5a94796 l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -ERROR[12-05|10:09:26.643] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:09:26.648] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:09:26.649] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=143 batch=0x1f3c3e7dbc228dc7ba24d6877cf8edf28c09042c7365e301df1ee80ac4c0348c l1=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -ERROR[12-05|10:09:26.649] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:09:26.650] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:09:38.295] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=29 block_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:38.298] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:38.625] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xf3911edc9373f0ef1d7199286f28e418d5578bef95e766ed8344d76d6017860b block_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=133 batch_height=132 rollup_idx=0 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=134 batch_height=133 rollup_idx=1 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=135 batch_height=134 rollup_idx=2 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=136 batch_height=135 rollup_idx=3 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=137 batch_height=136 rollup_idx=4 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=138 batch_height=137 rollup_idx=5 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=139 batch_height=138 rollup_idx=6 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=140 batch_height=139 rollup_idx=7 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=141 batch_height=140 rollup_idx=8 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=142 batch_height=141 rollup_idx=9 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=143 batch_height=142 rollup_idx=10 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=144 batch_height=143 rollup_idx=11 l1_height=24 l1_hash=0xcd8ab6c6cdf8fdd5ff990448adecfb01573f18e5c4db31ea54ee989c9301f1c0 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=145 batch_height=144 rollup_idx=12 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=146 batch_height=145 rollup_idx=13 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=147 batch_height=146 rollup_idx=14 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=148 batch_height=147 rollup_idx=15 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=149 batch_height=148 rollup_idx=16 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=150 batch_height=149 rollup_idx=17 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=151 batch_height=150 rollup_idx=18 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=152 batch_height=151 rollup_idx=19 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=153 batch_height=152 rollup_idx=20 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=154 batch_height=153 rollup_idx=21 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=155 batch_height=154 rollup_idx=22 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=156 batch_height=155 rollup_idx=23 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:38.627] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x33cd0738029af9653cb5da41ba41140bc9cf525229600641c20e78aa947c1fd1 -INFO [12-05|10:09:38.629] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x34f2907485fee418249b407e4af2d99885c08fef220bbc553ab9cd38df37c6ce -INFO [12-05|10:09:38.633] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1, L2Head=145), Host(L1Head=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960, L2Head=144)" -INFO [12-05|10:09:38.633] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1f91972afba68549339e3519d5d5eece56d7dd1ad4b9ee67af89a712ae2feeea -INFO [12-05|10:09:38.639] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9d65d3da3bf0f3d2161b81b3d1614f6f11e9475a1f5b685da532ac31790dc0b9 -INFO [12-05|10:09:38.642] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xfa2649cb56614c9ad35866359a8c37995fad1cd0f29838cf4b7505f3c928fae3 -INFO [12-05|10:09:38.643] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xaf242afacbd9cf5aea2f370c3861a50862e6539104a11899174f552f6557c13d -INFO [12-05|10:09:38.644] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xc4bb2b77ed8f0c86a5a8b503f5359dff6fae8e2d1ec3574d0a9c5b0745b2e8d4 batch_seq_num=150 -INFO [12-05|10:09:38.645] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8d02c2b9d1f4bbda3e33905b26a4896e805032aa1f7873a6204ffcc3ce6e1027 -INFO [12-05|10:09:38.646] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x994b8184d0b47d4aee12ea23f3b28c46cd87bfe429fc7a736c786dd7af9c7a0c -INFO [12-05|10:09:38.647] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3c0d33c2ca61922075afeae03c1f1f5fcb46ddbfb33180e13be79f34fc36581b -INFO [12-05|10:09:38.649] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf857a6f456bfd61873f4ccb5da71a43087d5efb383934711f5b98cd29819e13f -INFO [12-05|10:09:38.650] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf8642156b3b36c980d800ca09f1f5cdc147e3e4a0e2e09a1da5e5108e58ea1b5 -INFO [12-05|10:09:38.651] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xccbc128e8bb9892f9cfaf2c6c3cebf0200edf1715555205e61123cb8c954b466 -WARN [12-05|10:09:38.652] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=353.225083ms block_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:09:38.653] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960, L2Head=156), Host(L1Head=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960, L2Head=155)" -INFO [12-05|10:09:38.659] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=155 batch=0xa6f6292aa5de45efdb427bbfbf6e779b053aaaa630ba07ef41290b72051d85d5 l1=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -ERROR[12-05|10:09:38.659] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:09:38.661] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:09:50.275] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=30 block_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:50.275] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:50.569] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xe2a273ed6166d678d43b8f2f56ee67f657c93bc7f697a7c6d2aa943bec6c4a89 block_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:50.569] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=145 batch_height=144 rollup_idx=0 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.569] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=146 batch_height=145 rollup_idx=1 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.569] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=147 batch_height=146 rollup_idx=2 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.569] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=148 batch_height=147 rollup_idx=3 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.569] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=149 batch_height=148 rollup_idx=4 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.569] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=150 batch_height=149 rollup_idx=5 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.569] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=151 batch_height=150 rollup_idx=6 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=152 batch_height=151 rollup_idx=7 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=153 batch_height=152 rollup_idx=8 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=154 batch_height=153 rollup_idx=9 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=155 batch_height=154 rollup_idx=10 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=156 batch_height=155 rollup_idx=11 l1_height=25 l1_hash=0x6e56ed7e2c248c2165f1801971861b23453813f6685da573b07df6dc773ed047 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=157 batch_height=156 rollup_idx=12 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=158 batch_height=157 rollup_idx=13 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=159 batch_height=158 rollup_idx=14 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=160 batch_height=159 rollup_idx=15 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=161 batch_height=160 rollup_idx=16 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=162 batch_height=161 rollup_idx=17 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=163 batch_height=162 rollup_idx=18 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=164 batch_height=163 rollup_idx=19 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=165 batch_height=164 rollup_idx=20 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=166 batch_height=165 rollup_idx=21 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=167 batch_height=166 rollup_idx=22 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.570] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=168 batch_height=167 rollup_idx=23 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:09:50.570] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x05ff19b15518ca67fe16cd35a05193f0caa76e5676841a0b5ddac1f14a9ea789 -INFO [12-05|10:09:50.572] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf39ce83764ef6971c406a040faa873c661133970792d434bbd9a46c28b802716 -INFO [12-05|10:09:50.575] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x02725d2f154b068f80eafca6398e82dbcc7fa24aafa72d6526217681f5ce08dc -INFO [12-05|10:09:50.578] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf8b8685903f35450feff790aed590f4d1c8bb02378845be745d7e35a1e7ad92c -INFO [12-05|10:09:50.582] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960, L2Head=157), Host(L1Head=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113, L2Head=156)" -INFO [12-05|10:09:50.584] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x8b4126d28c57b0db793e691801e0287cd6d9809ee37d7cd93a5b0eafc0f4cb01 batch_seq_num=160 -INFO [12-05|10:09:50.584] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9fa8f71ca8300c6282d1975b39edea60984ed5616ad486fda7d9b1d625886ac3 -INFO [12-05|10:09:50.586] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x88f9ac4c5cedf24b9b5b7f50219a99c681b199f61f90451454b45fc7f9f4af1e -INFO [12-05|10:09:50.587] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1857567089712c1cc78f876d19f77000313d8d9a76db345039b9864f58c63295 -INFO [12-05|10:09:50.588] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xff029a8017a1b683617a19998b04aa03dd29668729fdf056e90b253355097d5d -INFO [12-05|10:09:50.590] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x80b14e55ae6575bd99b43351cc6478e820add2726a09d574fba7d7e9d1d43d28 -INFO [12-05|10:09:50.591] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3c7fad989071c58884ad86e1949f5e567ac87b7defdcd0d7c06b5fe8dd324bbe -INFO [12-05|10:09:50.592] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x192b200a0cb7c2f3420b978a55865d7a3d27182cb65dc1199de07cab2cf18595 -INFO [12-05|10:09:50.594] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x49d9bd5de0ebf390e842e5d4ef69c126a3e93d758abedae4257809c5bff49669 -WARN [12-05|10:09:50.595] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=319.549542ms block_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:09:50.596] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113, L2Head=168), Host(L1Head=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113, L2Head=167)" -INFO [12-05|10:09:50.600] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=167 batch=0x9d320ded7e802811d071e41e0d51a44dde6377c23e26b80f8836ed3a28869c96 l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -ERROR[12-05|10:09:50.601] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:09:50.603] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:09:50.603] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=156 batch=0xef32fec7769caf48d6e7cfafd199debe6114f6401c398747a34d4a5c0e0a205c l1=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -ERROR[12-05|10:09:50.604] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:09:50.604] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:10:02.268] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=31 block_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:02.268] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:02.632] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x60f08f639fc30a135c9a5a37e73d1cf7aae0d4ecd998ee9504ca15b9066eca4f block_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=157 batch_height=156 rollup_idx=0 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=158 batch_height=157 rollup_idx=1 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=159 batch_height=158 rollup_idx=2 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=160 batch_height=159 rollup_idx=3 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=161 batch_height=160 rollup_idx=4 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=162 batch_height=161 rollup_idx=5 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=163 batch_height=162 rollup_idx=6 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=164 batch_height=163 rollup_idx=7 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=165 batch_height=164 rollup_idx=8 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=166 batch_height=165 rollup_idx=9 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=167 batch_height=166 rollup_idx=10 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=168 batch_height=167 rollup_idx=11 l1_height=26 l1_hash=0x0cdd922819ad70ba0f9a11bbb35858adaf40d6ef41478614a1fc59db38f4b640 -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=169 batch_height=168 rollup_idx=12 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=170 batch_height=169 rollup_idx=13 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=171 batch_height=170 rollup_idx=14 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=172 batch_height=171 rollup_idx=15 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=173 batch_height=172 rollup_idx=16 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=174 batch_height=173 rollup_idx=17 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=175 batch_height=174 rollup_idx=18 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=176 batch_height=175 rollup_idx=19 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=177 batch_height=176 rollup_idx=20 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=178 batch_height=177 rollup_idx=21 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=179 batch_height=178 rollup_idx=22 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.633] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=180 batch_height=179 rollup_idx=23 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:02.633] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4ff4a70250b8c67d368b209ab7293be7bcba761e239e2d8307fe3280a9cf554c -INFO [12-05|10:10:02.643] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8ca11b2bc5516fd0f14bc0a74023f039c324efa778df8234a10d4e1d5415ee7f -INFO [12-05|10:10:02.644] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x986d0c283dffab6e003c01e0f59ba5ffcf8c9ac992ae56e309c3a0e4cfecb500 batch_seq_num=170 -INFO [12-05|10:10:02.645] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8690b4e634629f0c9304b3d3676231f081058357d677d99dc5e0223fe526ebc1 -INFO [12-05|10:10:02.647] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9f538452d61d9cfc7390d0fbd3e953ffe5c38c7982858c894cc80b6c0429624e -INFO [12-05|10:10:02.647] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113, L2Head=169), Host(L1Head=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c, L2Head=157)" -INFO [12-05|10:10:02.649] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9e33f35971a4308b2cddffe8baa3454eea90ca53658669b1837594b56ba81f26 -INFO [12-05|10:10:02.650] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x305b1a4c86cd4c343192f8864062787db3e09e5749b1fa82bcf9bd02825c5e5e -INFO [12-05|10:10:02.652] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf591b01ba59fe98b282d344f0f933b189ba1eebbaed40728cee0863407c0cb85 -INFO [12-05|10:10:02.653] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5bf2c54237d6bfef08a53fa164571e8778884db1ce4787bbaffee9c70beb148b -INFO [12-05|10:10:02.655] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5cb5d83ec6fa371b2e07187ae719e6cf7fa061806ea1e5a45037f82c9493afea -INFO [12-05|10:10:02.671] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5ddd29e7bc04ddc97aaa523ec0dba367f30386706ce56beffbeb0304f582b047 -INFO [12-05|10:10:02.701] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbf4fb32af6def38d86e7b6dc4322e7c16cfe2a98cdf4bd4958b42977e7799a03 -INFO [12-05|10:10:02.703] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xda5ba7cb1cf371e878196f81113e56fbe7f822ea026ec2e1fa175b8bb3570cf1 -INFO [12-05|10:10:02.713] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xd20663294b71943045ad0f5ca5c238ffb10407b4ae4b8aacb3242b03f5b8139b batch_seq_num=180 -WARN [12-05|10:10:02.716] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=448.334334ms block_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:02.725] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c, L2Head=180), Host(L1Head=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c, L2Head=179)" -INFO [12-05|10:10:02.727] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=179 batch=0xd20663294b71943045ad0f5ca5c238ffb10407b4ae4b8aacb3242b03f5b8139b l1=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -ERROR[12-05|10:10:02.727] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:10:02.727] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:10:14.310] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=32 block_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:14.310] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:14.663] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xd2167ce94d923b438cb4710fea5142409e5e15979d44f3f961a912c3298a93c2 block_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=169 batch_height=168 rollup_idx=0 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=170 batch_height=169 rollup_idx=1 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=171 batch_height=170 rollup_idx=2 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=172 batch_height=171 rollup_idx=3 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=173 batch_height=172 rollup_idx=4 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=174 batch_height=173 rollup_idx=5 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=175 batch_height=174 rollup_idx=6 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=176 batch_height=175 rollup_idx=7 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=177 batch_height=176 rollup_idx=8 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=178 batch_height=177 rollup_idx=9 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=179 batch_height=178 rollup_idx=10 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=180 batch_height=179 rollup_idx=11 l1_height=27 l1_hash=0xb92c630d7101d12691cd3fbb29730d447c117ba234aee39af9ae49deb51634df -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=181 batch_height=180 rollup_idx=12 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=182 batch_height=181 rollup_idx=13 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=183 batch_height=182 rollup_idx=14 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=184 batch_height=183 rollup_idx=15 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=185 batch_height=184 rollup_idx=16 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=186 batch_height=185 rollup_idx=17 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=187 batch_height=186 rollup_idx=18 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=188 batch_height=187 rollup_idx=19 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=189 batch_height=188 rollup_idx=20 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=190 batch_height=189 rollup_idx=21 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=191 batch_height=190 rollup_idx=22 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.663] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=192 batch_height=191 rollup_idx=23 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:14.664] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x48ce15fec5fcee6b17e0e9c30b7b8e33a5821e14d51c6735d57eba96a6ac95fd -INFO [12-05|10:10:14.665] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xebb18d4c46dcf15fe06ff4c9cfa81eb743b96eeca84fa1cb326d0c1a4548a0ec -INFO [12-05|10:10:14.667] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x09f2e70fcce9bb064fa07b495a5737c9a55a8a2e8011debfb03512818f1d0c46 -INFO [12-05|10:10:14.667] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c, L2Head=181), Host(L1Head=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176, L2Head=180)" -INFO [12-05|10:10:14.668] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa226984ebb3929aff5acd6378a0d6b4a92e6f5a8a4562033e12aa2cd872d8818 -INFO [12-05|10:10:14.671] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x412770cd8d6706d31afed240848aaee295c585e2ce863920a5505d15e25fb82c -INFO [12-05|10:10:14.672] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x638cc7be11c5b11eda2913219e947e5a29dbb3558303f33c679e5f009cb47402 -INFO [12-05|10:10:14.673] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8ce14712326b67ac089ce4794ae015fe883f81763b4f81242ded1d9495b43b37 -INFO [12-05|10:10:14.674] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb6c67e8ef6ff829dfeba103dd20754277654e2dacf5ae78c7f529b6ad7ffc0e9 -INFO [12-05|10:10:14.676] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x066e3ad8adc71dcce3e6680f3e33c8dfd1d16f0e3d932af98cbaffe572a66abf -INFO [12-05|10:10:14.678] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8d797206bbe700c9efcc8fb08ee99091ea79cf4010f4d72f39a93eb0c6b7cb3b -INFO [12-05|10:10:14.680] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x704e376128c11876959fe23fd700e81aae1deec11a25d971e43af8d4822d5122 batch_seq_num=190 -INFO [12-05|10:10:14.681] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x39cdd4d832e90cbd4d96c406a0f034a17d8241613a487ad2b17295eb7dcef95a -INFO [12-05|10:10:14.682] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x40327bbc55a2b2248fe3ef69f02b3787f82b8bdfc1c712b0ba93257b79baaff3 -WARN [12-05|10:10:14.683] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=371.826917ms block_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:10:14.683] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176, L2Head=192), Host(L1Head=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176, L2Head=192)" -INFO [12-05|10:10:16.167] No broadcast received from sequencer, re-registering. component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p -ERROR[12-05|10:10:16.168] Failed to re-register for broadcasts component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p err="incoming P2P is disabled, can't register for broadcasts" -INFO [12-05|10:10:26.290] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=33 block_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:26.290] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:26.625] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x3c025e8b194073e7b70a2aa939a2861dba9a40020a5a4d1a0c208259ee64dcc6 block_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:26.625] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=181 batch_height=180 rollup_idx=0 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.625] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=182 batch_height=181 rollup_idx=1 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.625] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=183 batch_height=182 rollup_idx=2 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.625] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=184 batch_height=183 rollup_idx=3 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.625] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=185 batch_height=184 rollup_idx=4 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.625] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=186 batch_height=185 rollup_idx=5 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.625] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=187 batch_height=186 rollup_idx=6 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.625] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=188 batch_height=187 rollup_idx=7 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=189 batch_height=188 rollup_idx=8 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=190 batch_height=189 rollup_idx=9 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=191 batch_height=190 rollup_idx=10 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=192 batch_height=191 rollup_idx=11 l1_height=28 l1_hash=0xe17b3e71a2e187ac0c5f4894c0edfd353f36152b81ed21d1b13f9fd9e50ee3f1 -INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=193 batch_height=192 rollup_idx=12 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=194 batch_height=193 rollup_idx=13 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=195 batch_height=194 rollup_idx=14 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=196 batch_height=195 rollup_idx=15 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=197 batch_height=196 rollup_idx=16 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=198 batch_height=197 rollup_idx=17 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=199 batch_height=198 rollup_idx=18 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=200 batch_height=199 rollup_idx=19 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=201 batch_height=200 rollup_idx=20 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=202 batch_height=201 rollup_idx=21 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=203 batch_height=202 rollup_idx=22 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.626] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=204 batch_height=203 rollup_idx=23 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:26.626] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd271cdd114bae73b4aa56b9fe920409d808dd00bc6b331e62bb2d4c0c1ab9260 -INFO [12-05|10:10:26.629] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1e3d6cd90acbf7fd196147b9767a6e598ce4b8b2e1604223c77a8ea6d1ef75fa -INFO [12-05|10:10:26.630] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176, L2Head=193), Host(L1Head=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe, L2Head=192)" -INFO [12-05|10:10:26.630] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xaec1e540a4b9906dcb17e7b3fae6773ce07eceb9403258484584660f328ee653 -INFO [12-05|10:10:26.632] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbeb559d0029b783b17909e11f8611c7bfb80e84a69c06bb996493d6356ec5ee0 -INFO [12-05|10:10:26.634] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x67ff18e24ec8bb97b1aa38a1b43e61fd67f18ea45d4b7fe53411cb57721bea5d -INFO [12-05|10:10:26.635] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8951abf58638c26d96ebad03fc8dd52400680756176c396e038b00bf05fcda56 -INFO [12-05|10:10:26.636] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc6ae2586e8aec8e034e42228f45ed71e789cd1eb5fc56b0d103078c674b6c78a -INFO [12-05|10:10:26.637] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb2dc56462bcb603cb3703d11bc818d595f492ca1820941135f29505df7e75752 -INFO [12-05|10:10:26.638] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x8cb4a5e9886e6a44a3cfad1d079b9f02744e7da72adc4792a4897f2139d5bb85 batch_seq_num=200 -INFO [12-05|10:10:26.638] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbb24f8726a99cb7008fe3dcab3cc4ad4df221839ca996cc71b688e8e0d7f4e5e -INFO [12-05|10:10:26.640] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x30b4fa8e955a4fa36ebd05019cf005c7d9328baa5d0ae7bc2b2922f18543648a -INFO [12-05|10:10:26.642] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1c61f75bf5d650a59c7931994c8f235402d742d0e129453e8e88223a7667a81e -INFO [12-05|10:10:26.644] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x8e2b3b2106b20e83941b45fd807ddea8e136cb91bf93fccf745a8a18c19d23f7 -WARN [12-05|10:10:26.646] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=354.804833ms block_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:10:26.646] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe, L2Head=204), Host(L1Head=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe, L2Head=204)" -INFO [12-05|10:10:38.331] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=34 block_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:38.331] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:38.678] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x3eef394156074cf235cbfb02cbe18515d67cd7f9816ce1f277d79bb6b9da3c4f block_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=193 batch_height=192 rollup_idx=0 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=194 batch_height=193 rollup_idx=1 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=195 batch_height=194 rollup_idx=2 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=196 batch_height=195 rollup_idx=3 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=197 batch_height=196 rollup_idx=4 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=198 batch_height=197 rollup_idx=5 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=199 batch_height=198 rollup_idx=6 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=200 batch_height=199 rollup_idx=7 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=201 batch_height=200 rollup_idx=8 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=202 batch_height=201 rollup_idx=9 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=203 batch_height=202 rollup_idx=10 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=204 batch_height=203 rollup_idx=11 l1_height=29 l1_hash=0xf44b87c25aa47107034b2c91cf8096cef87f91bd1860dce091210967e8f02960 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=205 batch_height=204 rollup_idx=12 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=206 batch_height=205 rollup_idx=13 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=207 batch_height=206 rollup_idx=14 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=208 batch_height=207 rollup_idx=15 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=209 batch_height=208 rollup_idx=16 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=210 batch_height=209 rollup_idx=17 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=211 batch_height=210 rollup_idx=18 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=212 batch_height=211 rollup_idx=19 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=213 batch_height=212 rollup_idx=20 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=214 batch_height=213 rollup_idx=21 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=215 batch_height=214 rollup_idx=22 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.679] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=216 batch_height=215 rollup_idx=23 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:38.680] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb9ed2fd7b728cc32ba4736ec35c75d4a844cd2b1b3a09d45e7aee08933ffc14b -INFO [12-05|10:10:38.681] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb442f2c428decf568414c11ccce98fb1effb9d4572a435184c9222ca68fc79e5 -INFO [12-05|10:10:38.681] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe, L2Head=205), Host(L1Head=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db, L2Head=204)" -INFO [12-05|10:10:38.682] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd5852a454e36b1b075d43621ae51d4750a30f83fa3e6b0d6ec5b5a498e0f64c9 -INFO [12-05|10:10:38.683] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x38737cb8cef38800302842b7aa6a4e27621d6055b6bf65f2e6ea725f5d9a3d93 -INFO [12-05|10:10:38.685] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3e9560cb0f04f6ccc544da9f4e684c388717a40f1ce10947a9655de0a8d93b1f -INFO [12-05|10:10:38.686] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc817bcb46815106ab45929ab771dc409a715e9ed80838a7a0ed130ba455a8601 -INFO [12-05|10:10:38.687] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xaf7fc54018e32fcc3e7ed531f7485bf3a2ba70aa5c06b151cddcdc5df0ccd2bc batch_seq_num=210 -INFO [12-05|10:10:38.687] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe8d88a154e58ab8b5f5a42594e4a76350b4a5791fc03794246fa2aa0a95ba002 -INFO [12-05|10:10:38.689] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xff369fccb65cbe5e07635344e62bec016942bd8a0496f6ca24a95bf5933d5309 -INFO [12-05|10:10:38.691] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbe9597d754213ccef19d61009d693636a41cbde3be77cb2efda8f4759d174c78 -INFO [12-05|10:10:38.694] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x264c186275becc91e4b30f9ec570719c102d3d51ae7f4879ae3c9eefabc32840 -INFO [12-05|10:10:38.696] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc77e2cc99bceb3b331469e64538fcef4306c47a0662e5a61c2c0713053946461 -INFO [12-05|10:10:38.698] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe07839e06cb6a85a307dc3c0bcd542210189b7b20994cab6544efceee378637b -WARN [12-05|10:10:38.699] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=367.371792ms block_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:10:38.699] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db, L2Head=215), Host(L1Head=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db, L2Head=215)" -INFO [12-05|10:10:38.699] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=215 batch=0xe3154d500e02feebd069069ad9a42abb2a341ddf964cd58c320fb0d78fe97574 l1=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -ERROR[12-05|10:10:38.699] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:10:38.700] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:10:50.309] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=35 block_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:50.322] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:50.817] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x29b7a866442011a36b2400e849dcbb9acaba94e29adcf593183e34bb132b5937 block_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=205 batch_height=204 rollup_idx=0 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=206 batch_height=205 rollup_idx=1 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=207 batch_height=206 rollup_idx=2 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=208 batch_height=207 rollup_idx=3 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=209 batch_height=208 rollup_idx=4 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=210 batch_height=209 rollup_idx=5 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=211 batch_height=210 rollup_idx=6 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=212 batch_height=211 rollup_idx=7 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=213 batch_height=212 rollup_idx=8 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=214 batch_height=213 rollup_idx=9 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=215 batch_height=214 rollup_idx=10 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=216 batch_height=215 rollup_idx=11 l1_height=30 l1_hash=0x703e73c101f0d64413170c495685913a206c1f105e182a8999b25721a4bb2113 -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=217 batch_height=216 rollup_idx=12 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=218 batch_height=217 rollup_idx=13 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=219 batch_height=218 rollup_idx=14 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=220 batch_height=219 rollup_idx=15 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=221 batch_height=220 rollup_idx=16 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=222 batch_height=221 rollup_idx=17 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=223 batch_height=222 rollup_idx=18 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=224 batch_height=223 rollup_idx=19 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=225 batch_height=224 rollup_idx=20 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=226 batch_height=225 rollup_idx=21 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=227 batch_height=226 rollup_idx=22 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.818] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=228 batch_height=227 rollup_idx=23 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:10:50.819] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcde7805abe3fd5673d9aaef0a01f71bf0be6837b53b99670153f8948cb74b441 -INFO [12-05|10:10:50.825] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1745f48aeca3ffcd8f17e17fe27a277b090468aeb5b451e28ed6d7cb91e69e7a -INFO [12-05|10:10:50.828] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db, L2Head=217), Host(L1Head=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77, L2Head=216)" -INFO [12-05|10:10:50.830] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x75716fb46a2120865bcfc726bfa3df8daee7efd86ad8ba657bf3567e51b0c323 -INFO [12-05|10:10:50.834] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe90771d324845b274cda659d4a25689cd327dfd7ae4893c4d13c1f8a9f1586ba -INFO [12-05|10:10:50.835] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xe1751f517c70f2c85421be1bec57c0f2c40081ccc37f862e90337443920780e5 batch_seq_num=220 -INFO [12-05|10:10:50.835] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x353d7c5c48dc6520b6ebfddb999444c8895aa7789eaef8ce73fcb0fabe937bd7 -INFO [12-05|10:10:50.837] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xdde8dc293f048e200c09f1118ea037dde79820f83f59b6e6c0f7112a781816e0 -INFO [12-05|10:10:50.838] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xfe74fc13d66bdd516ac0ebc9ea3b5bab08923337dd2524fbffb0f7afd1f94100 -INFO [12-05|10:10:50.840] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x31e873ca9d0ef433c6e8807961ef9100539d331c9e6ebbefac910aadfc935d22 -INFO [12-05|10:10:50.841] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x996494480a37096bb4222847c52ec974ce652bb12b636075b250119ff0bb4d13 -INFO [12-05|10:10:50.843] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3e0a5efcfdaf478153a3ab00c4931bcaff9cdc75feb8c0fe089155e1bfc9c28c -INFO [12-05|10:10:50.844] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x647610292e7f344675521bac82afee6d71e85231d8a4f838111348a8718d35e2 -INFO [12-05|10:10:50.846] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3e40b00289ab8b1b32f2c2c8f724c0f38a6f80c2abaf2f7ba92ade43643d6acb -ERROR[12-05|10:10:50.847] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=522.230125ms block_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:10:50.847] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77, L2Head=227), Host(L1Head=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77, L2Head=227)" -INFO [12-05|10:10:50.847] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=227 batch=0xa7b068cbe19569e41969e4a13de75c028ec1daed646d91b3de85e0b649d6c6c9 l1=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -ERROR[12-05|10:10:50.847] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:10:50.847] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:11:02.285] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=36 block_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:02.285] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:02.572] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x01ce8d23c079ad83a535249329f9b705ebf80317c8e0956b88c75b5d317a7a6e block_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=217 batch_height=216 rollup_idx=0 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=218 batch_height=217 rollup_idx=1 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=219 batch_height=218 rollup_idx=2 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=220 batch_height=219 rollup_idx=3 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=221 batch_height=220 rollup_idx=4 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=222 batch_height=221 rollup_idx=5 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=223 batch_height=222 rollup_idx=6 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=224 batch_height=223 rollup_idx=7 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=225 batch_height=224 rollup_idx=8 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=226 batch_height=225 rollup_idx=9 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=227 batch_height=226 rollup_idx=10 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=228 batch_height=227 rollup_idx=11 l1_height=31 l1_hash=0x5422d49c3200048d1e1f665f4fabaef50eabe80386e86ceaf1b2634ab9de632c -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=229 batch_height=228 rollup_idx=12 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=230 batch_height=229 rollup_idx=13 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=231 batch_height=230 rollup_idx=14 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=232 batch_height=231 rollup_idx=15 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=233 batch_height=232 rollup_idx=16 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.572] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=234 batch_height=233 rollup_idx=17 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.573] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=235 batch_height=234 rollup_idx=18 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.573] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=236 batch_height=235 rollup_idx=19 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.573] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=237 batch_height=236 rollup_idx=20 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.573] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=238 batch_height=237 rollup_idx=21 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.573] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=239 batch_height=238 rollup_idx=22 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.573] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=240 batch_height=239 rollup_idx=23 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:02.573] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc4ae1ccc574111e5a5eb0e6c713349efeb7fdd91da31ec656f0c436f4f00e233 -INFO [12-05|10:11:02.575] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7a2fb40bb0bacdad2d0d5a9474b8cca28af1b546e02e7ca0feb6068633acf737 -INFO [12-05|10:11:02.576] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x04825c0c189b4e8be8eb4cf4677f16ef7b02fc0b7df26b0d403ea7547e5c89e1 batch_seq_num=230 -INFO [12-05|10:11:02.576] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd6badba0fa2f3cbcdb01d6b9768e766df971e5e92c59a22206955268f430fad5 -INFO [12-05|10:11:02.577] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xad3b50394da80c07e324f4a5c00abd1b1c17865c73789ba2b6e3d8e8b4003ba5 -INFO [12-05|10:11:02.580] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77, L2Head=229), Host(L1Head=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67, L2Head=228)" -INFO [12-05|10:11:02.583] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xffc4af73416156d9239e69eb1bb4db07406bf4de904b4688c023af4353c26346 -INFO [12-05|10:11:02.620] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x196bef3f1df8e5370ae790eb2175b2e62bed02f91e1a9b9fdf363f28ef198ffd -INFO [12-05|10:11:02.651] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x0072808f9c885d51c731c4bde7631d62bbe4e73030821a0fcfc1604d02b0a3e6 -INFO [12-05|10:11:02.662] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa0426fa30efa72e6dac1aa0c0d85bd5fe440cd01a5d513a5b992d241641f2aa5 -INFO [12-05|10:11:02.664] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x23b72cc76d5b3d036af15274f099c99e271b4cd0905096853aee20cddecb5aae -INFO [12-05|10:11:02.673] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xfafbdaab12347c4335dacba4d3d419c63e641c5383acba02c6fa9ff5d8b87c21 -INFO [12-05|10:11:02.675] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5886261b64bb50572648ec23c9efa057c0f458a624114ba8780005cf4efaed4b -INFO [12-05|10:11:02.676] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf970b0f931d82041c5a18b87dcf8133584598c0d04ab77d6e6a41b6636d1c100 -INFO [12-05|10:11:02.677] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xdec845b560b6633af5f1f227817c675a85bc9c03db7d00f60b9875bd6fc5cd6e batch_seq_num=240 -WARN [12-05|10:11:02.677] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=391.25475ms block_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:02.678] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67, L2Head=239), Host(L1Head=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67, L2Head=239)" -INFO [12-05|10:11:02.678] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=239 batch=0xdec845b560b6633af5f1f227817c675a85bc9c03db7d00f60b9875bd6fc5cd6e l1=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -ERROR[12-05|10:11:02.678] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:11:02.678] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:11:14.292] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67, L2Head=240), Host(L1Head=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b, L2Head=240)" -INFO [12-05|10:11:14.302] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=37 block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:14.302] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:14.642] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x49fcef6adafda45929d99de55937e7892ee71e76b3d1384eca4168149e2b3a9e block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=229 batch_height=228 rollup_idx=0 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=230 batch_height=229 rollup_idx=1 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=231 batch_height=230 rollup_idx=2 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=232 batch_height=231 rollup_idx=3 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=233 batch_height=232 rollup_idx=4 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=234 batch_height=233 rollup_idx=5 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=235 batch_height=234 rollup_idx=6 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=236 batch_height=235 rollup_idx=7 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=237 batch_height=236 rollup_idx=8 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=238 batch_height=237 rollup_idx=9 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=239 batch_height=238 rollup_idx=10 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=240 batch_height=239 rollup_idx=11 l1_height=32 l1_hash=0xf8156c637a23458c909b55932909e1309687a18e002b210c7c68b2628dfe7176 -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=241 batch_height=240 rollup_idx=12 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=242 batch_height=241 rollup_idx=13 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=243 batch_height=242 rollup_idx=14 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=244 batch_height=243 rollup_idx=15 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=245 batch_height=244 rollup_idx=16 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=246 batch_height=245 rollup_idx=17 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=247 batch_height=246 rollup_idx=18 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=248 batch_height=247 rollup_idx=19 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.642] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=249 batch_height=248 rollup_idx=20 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.643] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=250 batch_height=249 rollup_idx=21 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.643] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=251 batch_height=250 rollup_idx=22 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.643] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=252 batch_height=251 rollup_idx=23 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:14.643] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc468803fbcea95144af1ffd15221639c1c997f3d9b2ef0f587547a4795d20b35 -INFO [12-05|10:11:14.646] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5d3fc2437fd9099dc47a075b35fada23bf057228f0508b7dc254bc46c1c97537 -INFO [12-05|10:11:14.648] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x783d86333a75d5f91054beac25eff322c1ae9b1aa8ddd28ec41adcea83a8712b -INFO [12-05|10:11:14.657] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x98fb4caed5213b343d50f9cf0e6a9ed624331451d65c4ffb88ccf9b5aecf800c -INFO [12-05|10:11:14.659] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc84e603d5851c0870ede1382ff13c7f5f492015662d83604d2019ad77cb5b417 -INFO [12-05|10:11:14.660] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7c6730c7d1b9365a8e518c401526990147c55c0a7a059ce5ad34ff518afbc35a -INFO [12-05|10:11:14.673] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x304081cc4508e98fe041adc05927ef8d42e436c2066007b9d1aac7e8ac8fa06f -INFO [12-05|10:11:14.674] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf9854d0219a47f0a7e899a1ca09d150fdd86c0ec38c72b19fc0630d250d0bef3 -INFO [12-05|10:11:14.676] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xccde03e1b563a5432de723424b4b70cc928e261bcaaf63e4d79ee892980b3e43 -INFO [12-05|10:11:14.677] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3f4eb20365ed4b159ac5b7c31ff40918e355f7ce422945904d126256024a6ac7 -INFO [12-05|10:11:14.679] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xa27a7f4accb66c396cf5dbdf7e5984a34143c681c7960717ffd75992143f3bcb batch_seq_num=250 -INFO [12-05|10:11:14.680] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd08b299fc0688de4ccf32df83a50725ea8a9a4f3f895bc4e5c598b436e871e92 -INFO [12-05|10:11:14.681] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa35a75c3a1a43e9475ccb9b4e3f3128207cf87741883645876dead8d6b8476c3 -WARN [12-05|10:11:14.682] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=379.321458ms block_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:11:14.683] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b, L2Head=252), Host(L1Head=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b, L2Head=251)" -INFO [12-05|10:11:14.684] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=251 batch=0xb34c95bf04f00c2a8f7ebbaad4e4f390acfb41f31886a1e8c048692793ae881a l1=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -ERROR[12-05|10:11:14.684] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:11:14.685] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:11:16.168] No broadcast received from sequencer, re-registering. component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p -ERROR[12-05|10:11:16.168] Failed to re-register for broadcasts component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p err="incoming P2P is disabled, can't register for broadcasts" -INFO [12-05|10:11:26.286] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=38 block_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:26.286] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:26.680] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xed5eedbfa33185828ab454ce1a25e5524f8108477fea9697d008e80e4c529815 block_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=241 batch_height=240 rollup_idx=0 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=242 batch_height=241 rollup_idx=1 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=243 batch_height=242 rollup_idx=2 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=244 batch_height=243 rollup_idx=3 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=245 batch_height=244 rollup_idx=4 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=246 batch_height=245 rollup_idx=5 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=247 batch_height=246 rollup_idx=6 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=248 batch_height=247 rollup_idx=7 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=249 batch_height=248 rollup_idx=8 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=250 batch_height=249 rollup_idx=9 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.680] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=251 batch_height=250 rollup_idx=10 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=252 batch_height=251 rollup_idx=11 l1_height=33 l1_hash=0x704f2dacf8b683db599b1dc37e874c8a98c7d5838330ec3288e8dba9d9f1b8fe -INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=253 batch_height=252 rollup_idx=12 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=254 batch_height=253 rollup_idx=13 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=255 batch_height=254 rollup_idx=14 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=256 batch_height=255 rollup_idx=15 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=257 batch_height=256 rollup_idx=16 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=258 batch_height=257 rollup_idx=17 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=259 batch_height=258 rollup_idx=18 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=260 batch_height=259 rollup_idx=19 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=261 batch_height=260 rollup_idx=20 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=262 batch_height=261 rollup_idx=21 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=263 batch_height=262 rollup_idx=22 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.681] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=264 batch_height=263 rollup_idx=23 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:26.681] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb4931e63569ec4df969e119cb14cdb8801ee890a145b93cc32b57104b869b9bd -INFO [12-05|10:11:26.686] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcd2c93e1066a728cd6f6ef6eb385fac36a4275b30720bf5bc0cd90853732f08e -INFO [12-05|10:11:26.689] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x226aec5908a5246184897012e3bcb1f67d8f8b05ae502241c91cb4b67f9e1155 -INFO [12-05|10:11:26.691] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd1083add9364be5226095621f70a097538e94974f14d4d1fde64ad865064649c -INFO [12-05|10:11:26.692] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa24010db6de6856456533478acc049ef93fce3af13e02c022cbaa9e195c06176 -INFO [12-05|10:11:26.693] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b, L2Head=253), Host(L1Head=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767, L2Head=252)" -INFO [12-05|10:11:26.694] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbacfada637a6095b9b4274ea0a6640ec4738fe564b1f1ebb3d3bd5e3d51fc210 -INFO [12-05|10:11:26.697] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc85721c324c9bb474d73176ec0cf7a09d9e250e6e12df08605ce85ab668f964a -INFO [12-05|10:11:26.699] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x48aa8294fb3bc88402c06ff8a7b3969dbd17f007960a6f07863ce96f315374e3 -INFO [12-05|10:11:26.700] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xbc003dfdd5960af57937e98b4e28150a189d01725df42d8d8b3bbf3d0646378c batch_seq_num=260 -INFO [12-05|10:11:26.701] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa966951f7b405af4bdd807062aefc4a793e85000af1c6e45b40d7be252aa3396 -INFO [12-05|10:11:26.702] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x56411b411a05f73fa33671cb61a8b19ad8a361f04d02c7b493686711a172e917 -INFO [12-05|10:11:26.703] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa6b21a8a7b12d6006109d589059f0a42d67bc3048847e6583155dfbbbedaf9ea -INFO [12-05|10:11:26.705] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf97659b55f18697edfaecb841efeebf191bed671e49fa3dc1bcf1a34a8ae8dd8 -WARN [12-05|10:11:26.707] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=420.250834ms block_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:11:26.707] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767, L2Head=262), Host(L1Head=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767, L2Head=261)" -INFO [12-05|10:11:26.708] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=261 batch=0x10f9aa87c9dfa87ef6358086003781f57b685d14246d0cb0b033874e6f1083d8 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -ERROR[12-05|10:11:26.708] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:11:26.711] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:11:26.711] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=262 batch=0xaac49261278788b7f4e0128d170065b5cfe6f1dbe2a05320fff0180f36badbab l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -ERROR[12-05|10:11:26.711] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:11:26.711] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:11:26.712] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=263 batch=0xd5f4fb9fb606cbd4e0b05a942e94929801877ff7e4252dd9ac2db78ec2d7dfe1 l1=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -ERROR[12-05|10:11:26.712] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:11:26.713] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:11:38.279] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=39 block_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:38.279] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:38.619] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x9a0552faa9e818a5a6ae86c2dcbb435e8fb3c13f77b5cbd56180c90c59fafbbe block_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=253 batch_height=252 rollup_idx=0 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=254 batch_height=253 rollup_idx=1 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=255 batch_height=254 rollup_idx=2 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=256 batch_height=255 rollup_idx=3 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=257 batch_height=256 rollup_idx=4 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=258 batch_height=257 rollup_idx=5 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=259 batch_height=258 rollup_idx=6 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=260 batch_height=259 rollup_idx=7 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=261 batch_height=260 rollup_idx=8 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=262 batch_height=261 rollup_idx=9 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=263 batch_height=262 rollup_idx=10 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=264 batch_height=263 rollup_idx=11 l1_height=34 l1_hash=0x119aa311d8d70c08ec643eb85174a394beda438b6f3bf163b165712544ee52db -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=265 batch_height=264 rollup_idx=12 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=266 batch_height=265 rollup_idx=13 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=267 batch_height=266 rollup_idx=14 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=268 batch_height=267 rollup_idx=15 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=269 batch_height=268 rollup_idx=16 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=270 batch_height=269 rollup_idx=17 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=271 batch_height=270 rollup_idx=18 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=272 batch_height=271 rollup_idx=19 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=273 batch_height=272 rollup_idx=20 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=274 batch_height=273 rollup_idx=21 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=275 batch_height=274 rollup_idx=22 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.619] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=276 batch_height=275 rollup_idx=23 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:38.620] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x46561f897d46929e1f4c07ed5783839d807d627aff47c6e18c2407a5cfd20244 -INFO [12-05|10:11:38.621] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2edda273e7e4fcfa3c1af2d0a6ebabf073815a97752e9abae25dfdc2c9b6ce03 -INFO [12-05|10:11:38.623] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x512d67b99941bf53498a4eb2cfadc346b3eb21e6e9209d046a39c9aaa3cd46c7 -INFO [12-05|10:11:38.624] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc59910cd3f720b21e27388308a27e8c39ae9c9ad0ab657ec90ad425239eb8756 -INFO [12-05|10:11:38.626] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbbbb11559a76e5ea313fb74d1a7ab7eae0125d8300480f6501be14f69d13e9e1 -INFO [12-05|10:11:38.626] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767, L2Head=265), Host(L1Head=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492, L2Head=264)" -INFO [12-05|10:11:38.627] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x823b1a75441c3404e634ad9814a05389069fe0f3afcd88ada73962313ca70225 -INFO [12-05|10:11:38.628] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x6cc89322753b1de5bd82c98625c1c5cce3b73813a679d7c235748f903ae12e19 batch_seq_num=270 -INFO [12-05|10:11:38.628] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x74c952a5bad230b9a12ab2ff9f92bfca5e2891e3b0bbc4e9b9b69252c4007bc2 -INFO [12-05|10:11:38.630] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc1155b133830656f9a1471deb9f01887f6d78cf8c42221c9027e6cb297dc4465 -INFO [12-05|10:11:38.631] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb02cc2c99d57987959a00436fbabe51a3c445a64598a04f09f14f898b539c9e4 -INFO [12-05|10:11:38.635] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x22bd4d2647ba84770d649bbdc8ba5dd9a59b90c0be1a2277a8fd7dec6e1c0f0f -INFO [12-05|10:11:38.638] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xaa9b9cbfa196e81fe17c5b015861eac6bc46ee24f6a72d646d08035db2623588 -INFO [12-05|10:11:38.640] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa313f8572f4fda5cfee626261d7ab014d90ff55f03bf9edbd532ba18e839ff9e -WARN [12-05|10:11:38.643] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=362.87475ms block_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:11:38.644] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492, L2Head=276), Host(L1Head=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492, L2Head=275)" -INFO [12-05|10:11:38.645] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=275 batch=0xa6fdd7103a0c521b7187cd9cefbb53692dede9db359687866829ca1fdb504ca0 l1=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -ERROR[12-05|10:11:38.645] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:11:38.647] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:11:50.276] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=40 block_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:50.276] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:50.682] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x42f90b441bebebc751b255b22c2f6ecbc497f868c1613da05e8391e63be9f339 block_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=265 batch_height=264 rollup_idx=0 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=266 batch_height=265 rollup_idx=1 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=267 batch_height=266 rollup_idx=2 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=268 batch_height=267 rollup_idx=3 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=269 batch_height=268 rollup_idx=4 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=270 batch_height=269 rollup_idx=5 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=271 batch_height=270 rollup_idx=6 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=272 batch_height=271 rollup_idx=7 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=273 batch_height=272 rollup_idx=8 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=274 batch_height=273 rollup_idx=9 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=275 batch_height=274 rollup_idx=10 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=276 batch_height=275 rollup_idx=11 l1_height=35 l1_hash=0xf11031cca6f65f25e9f7a3925172b2cf0fcff17deac46bd38870fa99fd1cdd77 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=277 batch_height=276 rollup_idx=12 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=278 batch_height=277 rollup_idx=13 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=279 batch_height=278 rollup_idx=14 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=280 batch_height=279 rollup_idx=15 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=281 batch_height=280 rollup_idx=16 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=282 batch_height=281 rollup_idx=17 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=283 batch_height=282 rollup_idx=18 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.682] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=284 batch_height=283 rollup_idx=19 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.683] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=285 batch_height=284 rollup_idx=20 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.683] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=286 batch_height=285 rollup_idx=21 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.683] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=287 batch_height=286 rollup_idx=22 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.683] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=288 batch_height=287 rollup_idx=23 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:11:50.683] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x737023b4e977560912d7bce2e63748d5aaa4a08e83324dca7b8749c25fdb7ecc -INFO [12-05|10:11:50.684] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1509965b77288883a4a123e8159d2325b35fef4c36a75ee91aa182b9a40ed14a -INFO [12-05|10:11:50.686] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4fa83e3be357ae22ba9b39a217c2e155417b0829e876191875cbad6b029effc0 -INFO [12-05|10:11:50.687] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492, L2Head=277), Host(L1Head=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc, L2Head=276)" -INFO [12-05|10:11:50.690] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x98c67f5a11f34c21c2e3ed737377f44b5cd339c8aa034d350e55776d2b313835 -INFO [12-05|10:11:50.691] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x77229894b7d244d1f16a7211c2024e9b8d90210fba21f214612ae2268dabdf63 batch_seq_num=280 -INFO [12-05|10:11:50.694] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc90e3fe9525a593e97f404925cc84541433db26bb30dcae809572837e158fb8b -INFO [12-05|10:11:50.701] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2866fdd15313119ddd9c34649cb41edfa96a92194c959243a5941715153aa859 -INFO [12-05|10:11:50.704] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc966067a4cde7afdd7c2508a5669b8a021d7242bd0c66dac931ea0b8a3a3ac6b -INFO [12-05|10:11:50.705] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5a21a0efa2f09a39380f21ccd2599dd04885a49b2c89e2cffc1fe4aa745b8724 -INFO [12-05|10:11:50.706] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x89728be1fd40ef8faee95d31cf5d61e27918a4988754ee2c1f47fc15315326dc -INFO [12-05|10:11:50.709] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x25853f055042f7ad374a0b466d51921ffb8a26761c2c2f7229a4c1cabfe3f800 -INFO [12-05|10:11:50.710] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x212952403ee035ff0a76581ff6480f3744fa18e1d50e240b03a05eec9b74d2fa -INFO [12-05|10:11:50.712] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5508c14a9cfac9232269fc363c57431b5fd0e69781e4f5067e50aff4f8edfb0b -WARN [12-05|10:11:50.713] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=409.295584ms block_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:11:50.713] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc, L2Head=288), Host(L1Head=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc, L2Head=288)" -INFO [12-05|10:12:02.296] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=41 block_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:02.298] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:02.641] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x47cb9867c412f2ad6adab786c59ca3c1f4ddd05d8923fb7077154db11d119c60 block_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=277 batch_height=276 rollup_idx=0 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=278 batch_height=277 rollup_idx=1 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=279 batch_height=278 rollup_idx=2 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=280 batch_height=279 rollup_idx=3 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=281 batch_height=280 rollup_idx=4 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=282 batch_height=281 rollup_idx=5 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=283 batch_height=282 rollup_idx=6 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=284 batch_height=283 rollup_idx=7 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=285 batch_height=284 rollup_idx=8 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=286 batch_height=285 rollup_idx=9 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=287 batch_height=286 rollup_idx=10 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=288 batch_height=287 rollup_idx=11 l1_height=36 l1_hash=0xb8d196c24da47dd200a064611e53c65a8174f8757884810d5b48dc1d38489e67 -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=289 batch_height=288 rollup_idx=12 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=290 batch_height=289 rollup_idx=13 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=291 batch_height=290 rollup_idx=14 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=292 batch_height=291 rollup_idx=15 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=293 batch_height=292 rollup_idx=16 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=294 batch_height=293 rollup_idx=17 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=295 batch_height=294 rollup_idx=18 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=296 batch_height=295 rollup_idx=19 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=297 batch_height=296 rollup_idx=20 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=298 batch_height=297 rollup_idx=21 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=299 batch_height=298 rollup_idx=22 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.641] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=300 batch_height=299 rollup_idx=23 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:02.642] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x22fb91a11c97b8f8c76102178c5c79b6a48ce8a7a8c5ea823a43d0a9f87000ac -INFO [12-05|10:12:02.643] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7745e029fdec5b2e5993f9880a8487bc055c215f9274b3f3295caab7c2abd8f4 -INFO [12-05|10:12:02.644] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc, L2Head=289), Host(L1Head=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8, L2Head=288)" -INFO [12-05|10:12:02.646] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x17fc3e73e22a58d3873b5a9d47d3f292220a199dc13ab8caa2e27c73f9033553 batch_seq_num=290 -INFO [12-05|10:12:02.646] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x437248e2a8466f0129f254e2e61b47258ddb88c2aa19d018b6027c9c14d8ea80 -INFO [12-05|10:12:02.647] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9b41cffe25cd3d5eaa815595f3208ae85ebfa537fdbf1c692e6f5d29a54f7fc8 -INFO [12-05|10:12:02.648] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xee9a0dfe75eacb57badc584cc5f348d828111cb956b72f88dbbdeb0bb583f911 -INFO [12-05|10:12:02.650] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb35bae8162866d5e8a5e6de0306ca5d45eff61cbd09949d69cbc8d8c5e7f38ec -INFO [12-05|10:12:02.651] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa8306178c5df1d3ef7fc78cbbfbad8b1321a67dd30744ef21be2cebc94642918 -INFO [12-05|10:12:02.652] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x798c0c0156652666edcefd1bd59faf599779e9669f09d2017b04cf0365e8844d -INFO [12-05|10:12:02.654] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb4f705b596274db444d85ed17e5e2c739cadc045004e0d2644874513a6ddc2b2 -INFO [12-05|10:12:02.656] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x72a3e210bd65f9e9883b08bf8f55e9d4e990643b65ca8853d2b1709729ee327f -INFO [12-05|10:12:02.658] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4f2ec0c2a3a7648498dbfd28958e29380266f2c6ca8794bd44b9a4e741b7f650 -INFO [12-05|10:12:02.659] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9b9d28ad80df460fcaea3eca7bb02d1f6ba3136d6819c0d51e6e578eaf5e75e8 -INFO [12-05|10:12:02.660] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x86c25c99c5e9ae6bca23b87bf2c4b1413dcddf33f808c176211edc7dba537d1a batch_seq_num=300 -WARN [12-05|10:12:02.660] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=360.822375ms block_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:02.660] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8, L2Head=300), Host(L1Head=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8, L2Head=300)" -INFO [12-05|10:12:14.271] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=42 block_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:14.271] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:14.600] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x66d4ab200915935fe1ff083c73f010f56a9632eeb908ebe811cf7e9492303051 block_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=289 batch_height=288 rollup_idx=0 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=290 batch_height=289 rollup_idx=1 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=291 batch_height=290 rollup_idx=2 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=292 batch_height=291 rollup_idx=3 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=293 batch_height=292 rollup_idx=4 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=294 batch_height=293 rollup_idx=5 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=295 batch_height=294 rollup_idx=6 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=296 batch_height=295 rollup_idx=7 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=297 batch_height=296 rollup_idx=8 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=298 batch_height=297 rollup_idx=9 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=299 batch_height=298 rollup_idx=10 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=300 batch_height=299 rollup_idx=11 l1_height=37 l1_hash=0xd1d980cfc75c671f53a2039b44201c12e399ccbd6190f3894a958789a254a16b -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=301 batch_height=300 rollup_idx=12 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=302 batch_height=301 rollup_idx=13 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=303 batch_height=302 rollup_idx=14 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=304 batch_height=303 rollup_idx=15 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=305 batch_height=304 rollup_idx=16 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=306 batch_height=305 rollup_idx=17 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=307 batch_height=306 rollup_idx=18 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=308 batch_height=307 rollup_idx=19 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=309 batch_height=308 rollup_idx=20 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=310 batch_height=309 rollup_idx=21 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=311 batch_height=310 rollup_idx=22 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.600] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=312 batch_height=311 rollup_idx=23 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:14.601] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc71b5c6fb09bf98ab0b3f0cc69dc19a1ae70f821c61fd31603efc531a771d17e -INFO [12-05|10:12:14.603] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x885bf0ae774f0dda527c881615d8cb32b9879c2b7767c8f0abaaf86902ea2bfd -INFO [12-05|10:12:14.603] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8, L2Head=301), Host(L1Head=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398, L2Head=300)" -INFO [12-05|10:12:14.604] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x39fc4d6c2788a99def5f868d516a084130ba9069650116acb6fbbdb4c2ab179f -INFO [12-05|10:12:14.606] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4adfe1057e28f7ef3ae160c9327b6282c20629d69074f33d85a44c39fa363a15 -INFO [12-05|10:12:14.608] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xbe103ff5a146796e35be337f895c67db3ca76eb8293d3278cb1b56f2af2ce8dd -INFO [12-05|10:12:14.610] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x96a029a1ebd3f70fd4db53d6e9b15c162c6adb792642416ba07d14876ebbe734 -INFO [12-05|10:12:14.612] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x167c45ae2eeda72859048a209ce2481eac8f05f09f82d63a45b42e97e38c8093 -INFO [12-05|10:12:14.613] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x45003380f73a4efa80dd69a64c511c9859c78462dbc456d48ee119432fef8d72 -INFO [12-05|10:12:14.614] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5be7e66bf69b32b58855ddcc0fbd0a7b12ac2018f199115c0ccfaf6f2b2abc66 -INFO [12-05|10:12:14.615] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xeecf3e697b06032d625efe3a560632a594cdd642f4f70ed723938f5248ad0e89 -INFO [12-05|10:12:14.616] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xef921b4b7729d9a4266d4ea1bdf9c8630912eb5a275aa3af67836e7806d9556e batch_seq_num=310 -INFO [12-05|10:12:14.617] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1c12cb297296e067242a7062abf591d6d5920b3a0ca3281e2783e9d76fe05895 -INFO [12-05|10:12:14.618] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcedda15d2e0d01d1bfe2982139988ebfd4dd2d0b4d313a788c95d09f26f4cdf7 -WARN [12-05|10:12:14.619] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=347.322792ms block_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:12:14.619] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398, L2Head=312), Host(L1Head=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398, L2Head=311)" -INFO [12-05|10:12:14.619] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=311 batch=0xc80e6c15053e8a9c418970d3b217734f19759a334d9b82ca7f91b3400436a420 l1=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -ERROR[12-05|10:12:14.619] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:12:14.619] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:12:16.168] No broadcast received from sequencer, re-registering. component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p -ERROR[12-05|10:12:16.168] Failed to re-register for broadcasts component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 component=p2p err="incoming P2P is disabled, can't register for broadcasts" -INFO [12-05|10:12:26.274] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=43 block_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:26.274] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:26.595] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xc28f9cc9a4288c8d37d2b5b46cd82bc33e5eafc76d82c0163c8a8f50892e821b block_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:26.595] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=301 batch_height=300 rollup_idx=0 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.595] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=302 batch_height=301 rollup_idx=1 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.595] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=303 batch_height=302 rollup_idx=2 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=304 batch_height=303 rollup_idx=3 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=305 batch_height=304 rollup_idx=4 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=306 batch_height=305 rollup_idx=5 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=307 batch_height=306 rollup_idx=6 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=308 batch_height=307 rollup_idx=7 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=309 batch_height=308 rollup_idx=8 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=310 batch_height=309 rollup_idx=9 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=311 batch_height=310 rollup_idx=10 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=312 batch_height=311 rollup_idx=11 l1_height=38 l1_hash=0x1c6c0944744b931c1ba61f4705c1b44f12a25bae6089c0e00bd691fceafef767 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=313 batch_height=312 rollup_idx=12 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=314 batch_height=313 rollup_idx=13 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=315 batch_height=314 rollup_idx=14 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=316 batch_height=315 rollup_idx=15 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=317 batch_height=316 rollup_idx=16 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=318 batch_height=317 rollup_idx=17 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=319 batch_height=318 rollup_idx=18 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=320 batch_height=319 rollup_idx=19 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=321 batch_height=320 rollup_idx=20 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=322 batch_height=321 rollup_idx=21 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=323 batch_height=322 rollup_idx=22 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.596] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=324 batch_height=323 rollup_idx=23 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:26.596] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xb4e15803fcbb9a0a1d3aec3948f84663fcb7fae7ed8b0763e40fc96f9866ff2f -INFO [12-05|10:12:26.598] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x53048e2b81a43a72f5546569cc335e2d68ed062942e37fd0a7e57ca3cf74690e -INFO [12-05|10:12:26.599] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398, L2Head=313), Host(L1Head=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423, L2Head=312)" -INFO [12-05|10:12:26.600] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x512223a9f091ed5c06da88c99e0e06b67c93033e280ddc19331e6a95d05956d3 -INFO [12-05|10:12:26.601] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x76035a36366a07ee954246e6c38c177ed3cb85b6d1f4090f59789dc476460d7d -INFO [12-05|10:12:26.604] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x0fb2aa997c0e037505c0d5611961aec0c83fd0449e7fdb60039ac4ba1153e2d6 -INFO [12-05|10:12:26.614] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5a96c5397c485eefc80c5e72e5d092fda11fad8a563a801de30c40fadff5a3c5 -INFO [12-05|10:12:26.619] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa2e66d20af5d89bd8f5091385d318d005a39917edd574d0872be9a791b4c16d9 -INFO [12-05|10:12:26.622] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3ad851bc5396c73c7800a3a30a0dc5307540dd9fd3f619dd0edfea913a08e36c -INFO [12-05|10:12:26.623] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x78c175276004f8eeb93bb964111eb77d898e92429c9ce66bdd40f0c6662506c9 batch_seq_num=320 -INFO [12-05|10:12:26.623] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9063a8587dbdd6b4fb1255308c9e4c3e907ac44b5f3d8c615d1eadd60ae951f0 -INFO [12-05|10:12:26.625] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x331fb28679070f7347591f75f1c671dcfb8b8e1d88017dfb9f5da966985325e9 -INFO [12-05|10:12:26.626] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x988290eddee39a7ed4c6c69b81de8f346310c97d6997a8ec15e0c3de6be0a783 -INFO [12-05|10:12:26.627] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xd9698e671e7ec5b5d49cc0befd5d42ebe538cacb05eac7ac8f8b9e04fbe4852f -WARN [12-05|10:12:26.628] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=353.398083ms block_hash=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423 -INFO [12-05|10:12:26.628] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423, L2Head=324), Host(L1Head=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423, L2Head=324)" -INFO [12-05|10:12:38.261] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=44 block_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:38.261] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:38.669] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xd966950629a9f4d84d2136ddc68b489642523e04bb295e0d74813c2840cdf557 block_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=313 batch_height=312 rollup_idx=0 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=314 batch_height=313 rollup_idx=1 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=315 batch_height=314 rollup_idx=2 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=316 batch_height=315 rollup_idx=3 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=317 batch_height=316 rollup_idx=4 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=318 batch_height=317 rollup_idx=5 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=319 batch_height=318 rollup_idx=6 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=320 batch_height=319 rollup_idx=7 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=321 batch_height=320 rollup_idx=8 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=322 batch_height=321 rollup_idx=9 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=323 batch_height=322 rollup_idx=10 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.670] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=324 batch_height=323 rollup_idx=11 l1_height=39 l1_hash=0x3c4e37383fe8fbf498e8d9a9b7c54f0961f2825db082fb99e87f59e213818492 -INFO [12-05|10:12:38.671] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=325 batch_height=324 rollup_idx=12 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.671] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=326 batch_height=325 rollup_idx=13 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.671] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=327 batch_height=326 rollup_idx=14 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.671] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=328 batch_height=327 rollup_idx=15 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.671] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=329 batch_height=328 rollup_idx=16 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.671] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=330 batch_height=329 rollup_idx=17 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.671] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=331 batch_height=330 rollup_idx=18 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.671] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=332 batch_height=331 rollup_idx=19 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.672] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=333 batch_height=332 rollup_idx=20 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.672] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=334 batch_height=333 rollup_idx=21 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.672] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=335 batch_height=334 rollup_idx=22 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.672] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=336 batch_height=335 rollup_idx=23 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:38.673] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x418f0f023d92d37aa46d44a46b974f9dfc0d996b964cb17cdc731b26f9922cef -INFO [12-05|10:12:38.675] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xed0e33e7fa9595326c5e0cae829b38dcf8ec0d8563a0fbc746fb919359833be0 -INFO [12-05|10:12:38.676] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x7b11daec5cf4df1480302bd1e210fd6ecdb6f8796115d8920bfa6cf40917b423, L2Head=325), Host(L1Head=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b, L2Head=324)" -INFO [12-05|10:12:38.677] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3b6d0c7c13db405411c16a35c60f0167a99a38bb5d1f1c7130d125b67d306b43 -INFO [12-05|10:12:38.678] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xda7900856f9768f3a6c4256bf011eff82fa24e7eaf1bf6153df0176fe5cac3e5 -INFO [12-05|10:12:38.679] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xddeb708befb557e51f61a7b615070b63a8d6204548e963bd9c926812d76b1dc5 -INFO [12-05|10:12:38.681] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x2245a41522c1598746a0cb541307ee16d86e5deb15861043578e7b3d1660759f -INFO [12-05|10:12:38.682] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x36d0b1c80292f99718922dd1c611693a71f89baf6b3ccc2c2abfcbec60b152b7 batch_seq_num=330 -INFO [12-05|10:12:38.682] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x85ebc689c3b9aaf8fb1c581443ebd7119920918cab40eafcea07895ca37403c6 -INFO [12-05|10:12:38.683] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x5a64eead7a46bb3c96768c8ef7e7e6a3c8b445319ccd1bc15f3893a1319945ba -INFO [12-05|10:12:38.685] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3243ee08dd63dd10a03440de2a307bd5474db5617ba5cee392866e3e945d57ec -INFO [12-05|10:12:38.686] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xc5469a66dd59de9d70bc30de67e8b759604045539c8570f6583eeaf31d69178a -INFO [12-05|10:12:38.687] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3c58c6997fa0453016bb3264634b8fb6d31ae7613d7d52410129def8a52729b8 -INFO [12-05|10:12:38.689] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3dd9a49c3d1b4da738539c720f711aa5779f2ff278e1d61459db8ac197358a02 -WARN [12-05|10:12:38.690] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=429.070084ms block_hash=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b -INFO [12-05|10:12:38.690] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b, L2Head=336), Host(L1Head=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b, L2Head=336)" -INFO [12-05|10:12:50.273] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=45 block_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:50.273] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:50.603] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0xb4aafd2cbe66eb3d0ef1c796e57483b69b9eb12b794da9eae1b1be400d6a66a7 block_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=325 batch_height=324 rollup_idx=0 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=326 batch_height=325 rollup_idx=1 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=327 batch_height=326 rollup_idx=2 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=328 batch_height=327 rollup_idx=3 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=329 batch_height=328 rollup_idx=4 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=330 batch_height=329 rollup_idx=5 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=331 batch_height=330 rollup_idx=6 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=332 batch_height=331 rollup_idx=7 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=333 batch_height=332 rollup_idx=8 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=334 batch_height=333 rollup_idx=9 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=335 batch_height=334 rollup_idx=10 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=336 batch_height=335 rollup_idx=11 l1_height=40 l1_hash=0x82a093df82e9238446653c457d8b7e15f6c48e23a4803ab2e9fd44f1bec45cfc -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=337 batch_height=336 rollup_idx=12 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=338 batch_height=337 rollup_idx=13 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=339 batch_height=338 rollup_idx=14 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=340 batch_height=339 rollup_idx=15 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=341 batch_height=340 rollup_idx=16 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=342 batch_height=341 rollup_idx=17 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=343 batch_height=342 rollup_idx=18 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=344 batch_height=343 rollup_idx=19 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=345 batch_height=344 rollup_idx=20 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.603] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=346 batch_height=345 rollup_idx=21 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=347 batch_height=346 rollup_idx=22 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.604] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=348 batch_height=347 rollup_idx=23 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:12:50.604] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xe85d6e30e328de1e0563bee3d13fb417410c96159bf21d2016f1dc4cb3e1ef4d -INFO [12-05|10:12:50.606] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4ab912eaa12b4498b27edf50d461a8d9e193883a7c851b58fbcf6ec3a97ead58 -INFO [12-05|10:12:50.608] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x280b9fb9890becc003c55e71dcd585c95b6b91e070ed193c15a1bb4af93ccfa2 -INFO [12-05|10:12:50.608] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0x4d38fe3b266fe2b58cbe6376da684e9e101337c69e897adaa65fa86f3570e34b, L2Head=337), Host(L1Head=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c, L2Head=336)" -INFO [12-05|10:12:50.609] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4d8fc52759e88d7dd9c58826c39bc3673fd24bff57f3c25cd90c3d7dd233d6a2 -INFO [12-05|10:12:50.611] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x52e2951f2b54fed3876418cafc80afb062089f3c9ac5ad21ea85daa6fdd910c1 batch_seq_num=340 -INFO [12-05|10:12:50.611] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x6e762cfe19f4b22bff8274473dc75493cddc7b6a3c7789039c69e2f4dca9503d -INFO [12-05|10:12:50.612] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf090805a6944f33c2ba61e4fb4d516ddcc664c8f2922f74a05ced91b97de8759 -INFO [12-05|10:12:50.614] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x04fb655154ea5681443453c42b31bec8bae3216d223120de84b79c324854981d -INFO [12-05|10:12:50.615] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa2a9930f28969328dc57acbabbe194c8ecaf9d74ccf84c9e0e73dd94be6cd77d -INFO [12-05|10:12:50.616] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x9d2f722d58c33c4a5e8b702b10ee63ce637c8faa7973d4e3feef648f1881f9e2 -INFO [12-05|10:12:50.618] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x4f65e4085bdc4ef96985621df1f0d2522dc7f430ef04e8d2ce96beceb4a08154 -INFO [12-05|10:12:50.619] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa413087650b425b472e69930d31e3be292299f71067e82ab47852441e11d9b7b -INFO [12-05|10:12:50.620] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x921f063bb50e7d54399dd3a561cecdf9cda870873e5e73973d71e2d36bc24e60 -WARN [12-05|10:12:50.621] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=347.6805ms block_hash=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c -INFO [12-05|10:12:50.622] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c, L2Head=348), Host(L1Head=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c, L2Head=347)" -INFO [12-05|10:12:50.623] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=347 batch=0x35d0494af526401c708e17bce7d31bfa1bc3b3fe7f422e8df51dbd995d26bdff l1=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -ERROR[12-05|10:12:50.623] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:12:50.624] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:13:02.258] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=46 block_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:02.258] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:02.616] Extracted rollup from block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 rollup=0x4725083ddab4e5344e13e8438a6be4278e2902f3e20dfc548ffa0844a8945558 block_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=337 batch_height=336 rollup_idx=0 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=338 batch_height=337 rollup_idx=1 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=339 batch_height=338 rollup_idx=2 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=340 batch_height=339 rollup_idx=3 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=341 batch_height=340 rollup_idx=4 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=342 batch_height=341 rollup_idx=5 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=343 batch_height=342 rollup_idx=6 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=344 batch_height=343 rollup_idx=7 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=345 batch_height=344 rollup_idx=8 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=346 batch_height=345 rollup_idx=9 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=347 batch_height=346 rollup_idx=10 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=348 batch_height=347 rollup_idx=11 l1_height=41 l1_hash=0xc3604119365faf39d591ce647d4b7730296a095aebc5f88a7f0cac3db2e4f6e8 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=349 batch_height=348 rollup_idx=12 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=350 batch_height=349 rollup_idx=13 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=351 batch_height=350 rollup_idx=14 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=352 batch_height=351 rollup_idx=15 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=353 batch_height=352 rollup_idx=16 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=354 batch_height=353 rollup_idx=17 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=355 batch_height=354 rollup_idx=18 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=356 batch_height=355 rollup_idx=19 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=357 batch_height=356 rollup_idx=20 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=358 batch_height=357 rollup_idx=21 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=359 batch_height=358 rollup_idx=22 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.617] Rollup decompressed batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_seq_num=360 batch_height=359 rollup_idx=23 l1_height=42 l1_hash=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -INFO [12-05|10:13:02.618] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xf9c3bf90b462bc0a0d5ee6a1cb087e14378dee67a2c18ee54d53aa741cb86438 -INFO [12-05|10:13:02.622] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x594b5fa6c9e5532738f7e3d0479243ef20be9ac4327346892b2d85d4076316b2 -INFO [12-05|10:13:02.623] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0xbcb00e7b9375b677b1d15a1adcdeddfe7974c7e0492c3cb1804d3e80b728b341 batch_seq_num=350 -INFO [12-05|10:13:02.624] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xcf87c4965fb2bf9fd4ae25bbcd43b96e55b01ef2b0972def74df0a45bf28d5f8 -INFO [12-05|10:13:02.626] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa183d02c65f37fdb292f0153a9672a71e0e696cd712e2a534e77d82a1a5e90b4 -INFO [12-05|10:13:02.627] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xa00c5c7c3f218bbb5b539ac804c90b619a0679f47ab2570879407de1cfda8a70 -INFO [12-05|10:13:02.628] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x7aa392a464e48ee41e262f420e2858385c8d607f2feb2387dc131cb98612ecc6 -INFO [12-05|10:13:02.630] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x22b14926d2186ee111ad98d6ccd52cb607357df93cdffee5f6c1249169bc4f5d -INFO [12-05|10:13:02.631] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x05d19fb3ec6dd405adeba342a5573a1424eb5b36c387a3cce7f283aee0659836 -INFO [12-05|10:13:02.632] Updating enclave status from [Live] to [L1Catchup] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [Live] enclave(StatusCode=0, L1Head=0xc9f4a6e13bb83e3418e57de46edde3119fbe76c86c813477788df1f38d92398c, L2Head=349), Host(L1Head=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e, L2Head=348)" -INFO [12-05|10:13:02.633] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0xabdc1903acf9d3eef64e22456a771920413a3b541d753cb55e8ff282f99e1a29 -INFO [12-05|10:13:02.677] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x3fe85eb1de13598b8c0afd663bc2153ef7511a262b0252b8eae18b83cc92a1f9 -INFO [12-05|10:13:02.696] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x263e706500d016072c9b1bcfbc1f842c81cf3ec36a5f3a0f591a52f0dce56cdb -INFO [12-05|10:13:02.698] CreatePublicCallbackHandlerTransaction: Successfully created transaction component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 transactionHash=0x1da492834f8f8fdacf8f6a85d771158c64936a2fa76b892fdabe73394d3ba5b8 -INFO [12-05|10:13:02.700] Streaming batch to host component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch=0x6a94859b3c71875c4801c751d8df637c48651d7248fd0ca485b8413bfbcff44e batch_seq_num=360 -WARN [12-05|10:13:02.700] LogMethodDuration::Rollup consumer processed blobs component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 duration=441.235625ms block_hash=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e -INFO [12-05|10:13:02.701] Updating enclave status from [L1Catchup] to [Live] component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e state="StateTracker: [L1Catchup] enclave(StatusCode=0, L1Head=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e, L2Head=360), Host(L1Head=0x6d0ab517cb75f9039e814cd5f708ba3e3834371b98294516c28ee197dd1df30e, L2Head=359)" -INFO [12-05|10:13:02.702] Received new p2p batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 batch_height=359 batch=0x6a94859b3c71875c4801c751d8df637c48651d7248fd0ca485b8413bfbcff44e l1=0x95be1145b146dd1cf4e01c7311af459f8c7c2ba5f78c9fb9babaec3c7b482398 -ERROR[12-05|10:13:02.702] Error submitting batch component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 err="invalid batch received. Could not verify signature. Cause: missing signature on batch" -ERROR[12-05|10:13:02.707] Error submitting batch to enclave component=test_log component=host node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 enclave_id=0x9Bf0f1aAA985F45cA454df13d2F792154711805e err="could not submit L2 batch to enclave: invalid batch received. Could not verify signature. Cause: missing signature on batch" -INFO [12-05|10:13:14.282] SubmitL1Block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_height=47 block_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d -INFO [12-05|10:13:14.284] Start ingesting block component=test_log component=enclave node_id=0x0f5F82b989491811cF4EDDA9a997c7930d541755 block_hash=0xdd84e787332e5182e5680242a07c5dc3a81666d933c1bd62c85df75b693c732d From 90ab71282be8690dfae4fa33ba3e51e5339c4e32 Mon Sep 17 00:00:00 2001 From: Will Hester Date: Fri, 6 Dec 2024 16:04:39 +0000 Subject: [PATCH 15/21] sim test working --- go/common/l1_transaction.go | 93 ++----------------- go/enclave/components/block_processor.go | 5 + go/enclave/components/rollup_compression.go | 1 - go/enclave/components/rollup_consumer.go | 3 - .../components/shared_secret_process.go | 12 +-- go/enclave/crosschain/common.go | 22 ++++- go/enclave/enclave_admin_service.go | 12 +-- .../mgmtcontractlib/mgmt_contract_lib.go | 2 - go/host/enclave/guardian.go | 35 +++---- go/host/l1/blockrepository.go | 15 +-- go/host/l1/publisher.go | 7 +- go/host/rpc/enclaverpc/enclave_client.go | 1 - integration/simulation/simulation.go | 46 ++++----- .../simulation_full_network_test.go | 2 +- integration/simulation/utils.go | 2 +- testnet/launcher/docker.go | 7 -- 16 files changed, 87 insertions(+), 178 deletions(-) diff --git a/go/common/l1_transaction.go b/go/common/l1_transaction.go index b4600bab68..97f3a328b7 100644 --- a/go/common/l1_transaction.go +++ b/go/common/l1_transaction.go @@ -102,19 +102,15 @@ type ProcessedL1Data struct { Events []L1Event // Changed from map to slice of L1Event } -//// TenTransactionWrapper wraps a TenTransaction with its concrete type -//type TenTransactionWrapper struct { -// TypeName string // The concrete type name -// Data []byte // The encoded transaction data -//} - -// L1TxData represents an L1 transaction that's relevant to us +// L1TxData represents an L1 transaction that are relevant to us type L1TxData struct { - Transaction *types.Transaction - Receipt *types.Receipt - Blobs []*kzg4844.Blob // Only populated for blob transactions - CrossChainMessages *CrossChainMessages // Only populated for xchain messages - ValueTransfers *ValueTransferEvents // Only populated for xchain transfers + Transaction *types.Transaction + Receipt *types.Receipt + Blobs []*kzg4844.Blob // Only populated for blob transactions + SequencerEnclaveIDs []gethcommon.Address // Only populated when a new enclave is added as a sequencer + CrossChainMessages *CrossChainMessages // Only populated for xchain messages + ValueTransfers *ValueTransferEvents // Only populated for xchain transfers + Proof []byte // Some merkle proof TBC } func (p *ProcessedL1Data) AddEvent(txType L1TxType, tx *L1TxData) { @@ -145,76 +141,3 @@ func (p *ProcessedL1Data) GetEvents(txType L1TxType) []*L1TxData { } return nil } - -//func WrapTenTransaction(tx TenTransaction) (*TenTransactionWrapper, error) { -// if tx == nil { -// return nil, nil -// } -// -// data, err := rlp.EncodeToBytes(tx) -// if err != nil { -// return nil, err -// } -// -// return &TenTransactionWrapper{ -// TypeName: fmt.Sprintf("%T", tx), -// Data: data, -// }, nil -//} -// -//func (w *TenTransactionWrapper) UnwrapTransaction() (TenTransaction, error) { -// if w == nil { -// return nil, nil -// } -// -// var result TenTransaction -// switch w.TypeName { -// case "*L1InitializeSecretTx": -// var tx L1InitializeSecretTx -// if err := rlp.DecodeBytes(w.Data, &tx); err != nil { -// return nil, err -// } -// result = &tx -// case "*L1RequestSecretTx": -// var tx L1RequestSecretTx -// if err := rlp.DecodeBytes(w.Data, &tx); err != nil { -// return nil, err -// } -// result = &tx -// -// case "*L1SetImportantContractsTx": -// var tx L1SetImportantContractsTx -// if err := rlp.DecodeBytes(w.Data, &tx); err != nil { -// return nil, err -// } -// result = &tx -// case "*L1RespondSecretTx": -// var tx L1RespondSecretTx -// if err := rlp.DecodeBytes(w.Data, &tx); err != nil { -// return nil, err -// } -// result = &tx -// case "*L1DepositTx": -// var tx L1DepositTx -// if err := rlp.DecodeBytes(w.Data, &tx); err != nil { -// return nil, err -// } -// result = &tx -// case "*L1RollupHashes": -// var tx L1RollupHashes -// if err := rlp.DecodeBytes(w.Data, &tx); err != nil { -// return nil, err -// } -// result = &tx -// case "*L1RollupTx": -// var tx L1RollupTx -// if err := rlp.DecodeBytes(w.Data, &tx); err != nil { -// return nil, err -// } -// result = &tx -// default: -// return nil, fmt.Errorf("unknown transaction type: %s", w.TypeName) -// } -// -// return result, nil -//} diff --git a/go/enclave/components/block_processor.go b/go/enclave/components/block_processor.go index f8c1e0ee4e..9688f094f4 100644 --- a/go/enclave/components/block_processor.go +++ b/go/enclave/components/block_processor.go @@ -80,6 +80,11 @@ func (bp *l1BlockProcessor) Process(ctx context.Context, processed *common.Proce } } + sequencerAddedTx := processed.GetEvents(common.SequencerAddedTx) + if len(sequencerAddedTx) > 0 { + // FIXME ADD SEQUENCER + } + // todo @siliev - not sure if this is the best way to update the price, will pick up random stale blocks from forks? bp.gasOracle.ProcessL1Block(header) diff --git a/go/enclave/components/rollup_compression.go b/go/enclave/components/rollup_compression.go index 5e630a99df..43d82b4ba7 100644 --- a/go/enclave/components/rollup_compression.go +++ b/go/enclave/components/rollup_compression.go @@ -149,7 +149,6 @@ func (rc *RollupCompression) ProcessExtRollup(ctx context.Context, rollup *commo if err != nil { return nil, err } - return calldataRollupHeader, nil } diff --git a/go/enclave/components/rollup_consumer.go b/go/enclave/components/rollup_consumer.go index b449544a9b..9104a9a17d 100644 --- a/go/enclave/components/rollup_consumer.go +++ b/go/enclave/components/rollup_consumer.go @@ -65,7 +65,6 @@ func (rc *rollupConsumerImpl) ProcessBlobsInBlock(ctx context.Context, processed rollups, err = rc.getSignedRollup(rollups) if err != nil { - println("ERROR IN SIGNED ROLLUPS") return err } @@ -95,7 +94,6 @@ func (rc *rollupConsumerImpl) ProcessBlobsInBlock(ctx context.Context, processed // todo - issue challenge as a validator return err } - println("STORING ROLLUP WITH SEQ NO: ", rollup.Header.LastBatchSeqNo, " SIG LENGTH: ", len(rollup.Header.Signature)) if err := rc.storage.StoreRollup(ctx, rollup, internalHeader); err != nil { rc.logger.Error("Failed storing rollup", log.RollupHashKey, rollup.Hash(), log.ErrKey, err) return err @@ -158,7 +156,6 @@ func (rc *rollupConsumerImpl) extractAndVerifyRollups(processed *common.Processe rollups = append(rollups, r) - println("EXTRACTED ROLLUP WITH LAST SEQ NO: ", rollups[0].Header.LastBatchSeqNo) rc.logger.Info("Extracted rollup from block", log.RollupHashKey, r.Hash(), log.BlockHashKey, processed.BlockHeader.Hash()) } diff --git a/go/enclave/components/shared_secret_process.go b/go/enclave/components/shared_secret_process.go index 58c3ef9479..457fc405bc 100644 --- a/go/enclave/components/shared_secret_process.go +++ b/go/enclave/components/shared_secret_process.go @@ -39,16 +39,8 @@ func (ssp *SharedSecretProcessor) ProcessNetworkSecretMsgs(ctx context.Context, var responses []*common.ProducedSecretResponse block := processed.BlockHeader - requestSecretEvents := processed.GetEvents(common.SecretRequestTx) - if len(requestSecretEvents) > 0 { - } - - initializeSecretEvents := processed.GetEvents(common.InitialiseSecretTx) - if len(initializeSecretEvents) > 0 { - } - // process initialize secret events - for _, txData := range initializeSecretEvents { + for _, txData := range processed.GetEvents(common.InitialiseSecretTx) { t := ssp.mgmtContractLib.DecodeTx(txData.Transaction) initSecretTx, ok := t.(*common.L1InitializeSecretTx) if !ok { @@ -67,7 +59,7 @@ func (ssp *SharedSecretProcessor) ProcessNetworkSecretMsgs(ctx context.Context, } // process secret requests - for _, txData := range requestSecretEvents { + for _, txData := range processed.GetEvents(common.SecretRequestTx) { t := ssp.mgmtContractLib.DecodeTx(txData.Transaction) scrtReqTx, ok := t.(*common.L1RequestSecretTx) if !ok { diff --git a/go/enclave/crosschain/common.go b/go/enclave/crosschain/common.go index ab873d038a..86d5f3cc24 100644 --- a/go/enclave/crosschain/common.go +++ b/go/enclave/crosschain/common.go @@ -151,11 +151,11 @@ func ConvertLogsToValueTransfers(logs []types.Log, eventName string, messageBusA if len(log.Topics) != 3 { return nil, fmt.Errorf("invalid number of topics in log: %d", len(log.Topics)) } - var event MessageBus.MessageBusValueTransfer err := messageBusABI.UnpackIntoInterface(&event, eventName, log.Data) if err != nil { - return nil, err + return nil, fmt.Errorf("failed to unpack event data: %w\nData length: %d\nEvent: %s", + err, len(log.Data), eventName) } messages = append(messages, common.ValueTransferEvent{ @@ -169,6 +169,24 @@ func ConvertLogsToValueTransfers(logs []types.Log, eventName string, messageBusA return messages, nil } +// ConvertLogsToSequencerEnclaves converts the logs of SequencerEnclaveGranted events to enclaveIDs +func ConvertLogsToSequencerEnclaves(logs []types.Log, eventName string, mgmtContractABI abi.ABI) ([]gethcommon.Address, error) { + enclaveIDs := make([]gethcommon.Address, 0) + + for _, log := range logs { + if len(log.Topics) != 2 { + return nil, fmt.Errorf("invalid number of topics in log: %d", len(log.Topics)) + } + + // The enclaveID is indexed, so it appears in the Topics rather than the Data + // Topics[0] is the event signature, Topics[1] is the indexed enclaveID + enclaveID := gethcommon.BytesToAddress(log.Topics[1].Bytes()) + enclaveIDs = append(enclaveIDs, enclaveID) + } + + return enclaveIDs, nil +} + type MerkleBatches []*core.Batch func (mb MerkleBatches) Len() int { diff --git a/go/enclave/enclave_admin_service.go b/go/enclave/enclave_admin_service.go index 9f6d766c7b..87a10fb669 100644 --- a/go/enclave/enclave_admin_service.go +++ b/go/enclave/enclave_admin_service.go @@ -191,6 +191,9 @@ func (e *enclaveAdminService) SubmitL1Block(ctx context.Context, blockHeader *ty if blockHeader.Hash() != processed.BlockHeader.Hash() { return nil, e.rejectBlockErr(ctx, fmt.Errorf("block header mismatch")) } + + // TODO verify proof provided with block processed.Proof + result, err := e.ingestL1Block(ctx, processed) if err != nil { return nil, e.rejectBlockErr(ctx, fmt.Errorf("could not submit L1 block. Cause: %w", err)) @@ -232,18 +235,9 @@ func (e *enclaveAdminService) SubmitBatch(ctx context.Context, extBatch *common. err = e.validator().VerifySequencerSignature(batch) if err != nil { - println("FAILURE ENCLAVE SERVICE BATCH ADDED SEQ: ", batch.SeqNo().Uint64()) - println("FAILURE ENCLAVE SERVICE HOSTID: ", e.config.HostID.Hex()) - println("FAILURE ENCLAVE SERVICE HOST ADDRESS: ", e.config.HostAddress) - println("FAILURE ENCLAVE SERVICE NODE TYPE: ", e.config.NodeType) return responses.ToInternalError(fmt.Errorf("invalid batch received. Could not verify signature. Cause: %w", err)) } - println("-----") - println("ENCLAVE SERVICE BATCH ADDED SEQ: ", batch.SeqNo().Uint64()) - println("ENCLAVE SERVICE HOSTID: ", e.config.HostID.Hex()) - println("ENCLAVE SERVICE NODE TYPE: ", e.config.NodeType) - // calculate the converted hash, and store it in the db for chaining of the converted chain convertedHeader, err := e.gethEncodingService.CreateEthHeaderForBatch(ctx, extBatch.Header) if err != nil { diff --git a/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go b/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go index ca0e1846e9..350a7864ba 100644 --- a/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go +++ b/go/ethadapter/mgmtcontractlib/mgmt_contract_lib.go @@ -174,8 +174,6 @@ func (c *contractLibImpl) CreateRequestSecret(tx *common.L1RequestSecretTx) type } func (c *contractLibImpl) CreateRespondSecret(tx *common.L1RespondSecretTx, verifyAttester bool) types.TxData { - println("CREATE RESPOND SECRET TX: ", tx.RequesterID.Hex()) - println("---------") data, err := c.contractABI.Pack( RespondSecretMethod, tx.AttesterID, diff --git a/go/host/enclave/guardian.go b/go/host/enclave/guardian.go index 486179497e..89158aafc9 100644 --- a/go/host/enclave/guardian.go +++ b/go/host/enclave/guardian.go @@ -360,11 +360,9 @@ func (g *Guardian) provideSecret() error { if scrt.RequesterID.Hex() == g.enclaveID.Hex() { err = g.enclaveClient.InitEnclave(context.Background(), scrt.Secret) if err != nil { - println("ENCLAVE INITIALISATION FAILURE: ", g.enclaveID.Hex()) g.logger.Error("Could not initialize enclave with received secret response", log.ErrKey, err) continue // try the next secret response in the block if there are more } - println("ENCLAVE INITALIZED") return nil // successfully initialized enclave with secret, break out of retry loop function } } @@ -372,7 +370,6 @@ func (g *Guardian) provideSecret() error { return errors.New("no valid secret received in block") }, retry.NewTimeoutStrategy(_maxWaitForSecretResponse, 500*time.Millisecond)) if err != nil { - println("TIMED OUT WAITING FOR SECRET RESPONSE after", _maxWaitForSecretResponse.String()) // something went wrong, check the enclave status in case it is an enclave problem and let the main loop try again when appropriate return errors.Wrap(err, "no valid secret received for enclave") } @@ -474,7 +471,7 @@ func (g *Guardian) submitL1Block(block *common.L1Block, isLatest bool) (bool, er g.submitDataLock.Unlock() // lock must be released before returning return false, fmt.Errorf("could not extract ten transactions for block=%s - %w", block.Hash(), err) } - rollupTxs, contractAddressTxs := g.getRollupsAndContractAddrTxs(*processedData) + rollupTxs, syncContracts := g.getRollupsAndContractAddrTxs(*processedData) resp, err := g.enclaveClient.SubmitL1Block(context.Background(), block.Header(), processedData) g.submitDataLock.Unlock() // lock is only guarding the enclave call, so we can release it now @@ -496,7 +493,7 @@ func (g *Guardian) submitL1Block(block *common.L1Block, isLatest bool) (bool, er } // successfully processed block, update the state g.state.OnProcessedBlock(block.Hash()) - g.processL1BlockTransactions(block, rollupTxs, contractAddressTxs) + g.processL1BlockTransactions(block, rollupTxs, syncContracts) if err != nil { return false, fmt.Errorf("submitted block to enclave but could not store the block processing result. Cause: %w", err) @@ -510,7 +507,7 @@ func (g *Guardian) submitL1Block(block *common.L1Block, isLatest bool) (bool, er return true, nil } -func (g *Guardian) processL1BlockTransactions(block *common.L1Block, rollupTxs []*common.L1RollupTx, contractAddressTxs []*common.L1SetImportantContractsTx) { +func (g *Guardian) processL1BlockTransactions(block *common.L1Block, rollupTxs []*common.L1RollupTx, syncContracts bool) { // TODO (@will) this should be removed and pulled from the L1 err := g.storage.AddBlock(block.Header()) if err != nil { @@ -538,7 +535,7 @@ func (g *Guardian) processL1BlockTransactions(block *common.L1Block, rollupTxs [ } } - if len(contractAddressTxs) > 0 { + if syncContracts { go func() { err := g.sl.L1Publisher().ResyncImportantContracts() if err != nil { @@ -820,9 +817,10 @@ func (g *Guardian) evictEnclaveFromHAPool() { go g.sl.Enclaves().EvictEnclave(g.enclaveID) } -func (g *Guardian) getRollupsAndContractAddrTxs(processed common.ProcessedL1Data) ([]*common.L1RollupTx, []*common.L1SetImportantContractsTx) { +func (g *Guardian) getRollupsAndContractAddrTxs(processed common.ProcessedL1Data) ([]*common.L1RollupTx, bool) { rollupTxs := make([]*common.L1RollupTx, 0) - contractAddressTxs := make([]*common.L1SetImportantContractsTx, 0) + var syncContracts bool + syncContracts = false for _, txData := range processed.GetEvents(common.RollupTx) { encodedRlp, err := ethadapter.DecodeBlobs(txData.Blobs) @@ -837,18 +835,9 @@ func (g *Guardian) getRollupsAndContractAddrTxs(processed common.ProcessedL1Data rollupTxs = append(rollupTxs, rlp) } - // Get contract address transactions - for _, txData := range processed.GetEvents(common.SetImportantContractsTx) { - println("I NEED TO SETIMPORTANT CONTRACTS: ", txData) - //unwrappedTx, err := event.Type.UnwrapTransaction() - //if err != nil { - // g.logger.Error("Could not unwrap ten transaction", "type", err) - //} - //if contractTx, ok := unwrappedTx.(*common.L1SetImportantContractsTx); ok { - // contractAddressTxs = append(contractAddressTxs, contractTx) - //} else { - // g.logger.Warn("Unexpected type for SetImportantContractsTx event", "type", fmt.Sprintf("%T", event.Type)) - //} - } - return rollupTxs, contractAddressTxs + // if any contracts have been updated then we need to resync + if len(processed.GetEvents(common.SetImportantContractsTx)) > 0 { + syncContracts = true + } + return rollupTxs, syncContracts } diff --git a/go/host/l1/blockrepository.go b/go/host/l1/blockrepository.go index 1fe7ad6b59..71623b7bee 100644 --- a/go/host/l1/blockrepository.go +++ b/go/host/l1/blockrepository.go @@ -212,7 +212,8 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc return nil, fmt.Errorf("unable to fetch logs for L1 block - %w", err) } - // Group logs by transaction hash and topic + // FIXME clean this monster function up & look for redundant block.transactions() loops on enclave side + // group logs by transaction hash and topic type logGroup struct { crossChainLogs []types.Log valueTransferLogs []types.Log @@ -242,7 +243,6 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc case crosschain.NetworkSecretRespondedID: logsByTx[l.TxHash].secretResponseLogs = append(logsByTx[l.TxHash].secretResponseLogs, l) case crosschain.RollupAddedID: - println("ROLLUP ADDED LOG") logsByTx[l.TxHash].rollupAddedLogs = append(logsByTx[l.TxHash].rollupAddedLogs, l) } } @@ -268,7 +268,6 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc ValueTransfers: &common.ValueTransferEvents{}, } - // Process all events for this transaction if len(txLogs.crossChainLogs) > 0 { if messages, err := crosschain.ConvertLogsToMessages(txLogs.crossChainLogs, crosschain.CrossChainEventName, crosschain.MessageBusABI); err == nil { txData.CrossChainMessages = &messages @@ -277,15 +276,18 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc } if len(txLogs.valueTransferLogs) > 0 { - if transfers, err := crosschain.ConvertLogsToValueTransfers(txLogs.valueTransferLogs, crosschain.CrossChainEventName, crosschain.MessageBusABI); err == nil { + if transfers, err := crosschain.ConvertLogsToValueTransfers(txLogs.valueTransferLogs, crosschain.ValueTransferEventName, crosschain.MessageBusABI); err == nil { txData.ValueTransfers = &transfers processed.AddEvent(common.CrossChainValueTranserTx, txData) } } if len(txLogs.sequencerLogs) > 0 { - //TODO convert log to enclaveID - processed.AddEvent(common.SequencerAddedTx, txData) + println("SEQUENCER ENCLAVE ADDED ") + if enclaveIDs, err := crosschain.ConvertLogsToSequencerEnclaves(txLogs.sequencerLogs, crosschain.SequencerEnclaveGrantedEventName, crosschain.MgmtContractABI); err == nil { + txData.SequencerEnclaveIDs = enclaveIDs + processed.AddEvent(common.SequencerAddedTx, txData) + } } if len(txLogs.secretRequestLogs) > 0 { @@ -303,7 +305,6 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc case *common.L1SetImportantContractsTx: processed.AddEvent(common.SetImportantContractsTx, txData) case *common.L1RollupHashes: - println("ROLLUP DECODE TX") if blobs, err := r.blobResolver.FetchBlobs(context.Background(), block.Header(), t.BlobHashes); err == nil { txData.Blobs = blobs processed.AddEvent(common.RollupTx, txData) diff --git a/go/host/l1/publisher.go b/go/host/l1/publisher.go index 8fcf92c25c..037ad51510 100644 --- a/go/host/l1/publisher.go +++ b/go/host/l1/publisher.go @@ -311,9 +311,9 @@ func (p *Publisher) PublishCrossChainBundle(bundle *common.ExtCrossChainBundle, transactor.Nonce = big.NewInt(0).SetUint64(nonce) - println("PublishCrossChainBundle L1 block num: ", bundle.L1BlockNum.Uint64()) - println("PublishCrossChainBundle rollupNum: ", rollupNum.Uint64()) - println("PublishCrossChainBundle nonce: ", nonce) + //println("PublishCrossChainBundle L1 block num: ", bundle.L1BlockNum.Uint64()) + //println("PublishCrossChainBundle rollupNum: ", rollupNum.Uint64()) + //println("PublishCrossChainBundle nonce: ", nonce) tx, err := managementCtr.AddCrossChainMessagesRoot(transactor, [32]byte(bundle.LastBatchHash.Bytes()), bundle.L1BlockHash, bundle.L1BlockNum, bundle.CrossChainRootHashes, bundle.Signature, rollupNum, forkID) if err != nil { @@ -325,7 +325,6 @@ func (p *Publisher) PublishCrossChainBundle(bundle *common.ExtCrossChainBundle, return fmt.Errorf("unable to submit cross chain bundle transaction. Cause: %w", err) } - println("HASH: ", tx.Hash().Hex()) err = p.awaitTransaction(tx) if err != nil { p.logger.Error("Error with receipt of cross chain publish transaction", log.TxKey, tx.Hash(), log.ErrKey, err) diff --git a/go/host/rpc/enclaverpc/enclave_client.go b/go/host/rpc/enclaverpc/enclave_client.go index db455f7822..081fb15a30 100644 --- a/go/host/rpc/enclaverpc/enclave_client.go +++ b/go/host/rpc/enclaverpc/enclave_client.go @@ -235,7 +235,6 @@ func (c *Client) SubmitL1Block(ctx context.Context, blockHeader *types.Header, p return blockSubmissionResponse, nil } - func (c *Client) SubmitBatch(ctx context.Context, batch *common.ExtBatch) common.SystemError { defer core.LogMethodDuration(c.logger, measure.NewStopwatch(), "SubmitBatch rpc call") diff --git a/integration/simulation/simulation.go b/integration/simulation/simulation.go index 32f1cba0b4..274c150dd4 100644 --- a/integration/simulation/simulation.go +++ b/integration/simulation/simulation.go @@ -192,19 +192,19 @@ func (s *Simulation) bridgeFundingToTen() { time.Sleep(15 * time.Second) // todo - fix the wait group, for whatever reason it does not find a receipt... - /*wg := sync.WaitGroup{} - for _, tx := range transactions { - wg.Add(1) - transaction := tx - go func() { - defer wg.Done() - err := testcommon.AwaitReceiptEth(s.ctx, s.RPCHandles.RndEthClient(), transaction.Hash(), 20*time.Second) - if err != nil { - panic(err) - } - }() - } - wg.Wait()*/ + //wg := sync.WaitGroup{} + //for _, tx := range transactions { + // wg.Add(1) + // transaction := tx + // go func() { + // defer wg.Done() + // err := testcommon.AwaitReceiptEth(s.ctx, s.RPCHandles.RndEthClient(), transaction.Hash(), 20*time.Second) + // if err != nil { + // panic(err) + // } + // }() + //} + //wg.Wait() } // We subscribe to logs on every client for every wallet. @@ -312,7 +312,6 @@ func (s *Simulation) deployTenZen() { panic(fmt.Errorf("failed to create transactor in order to bootstrap sim test: %w", err)) } - // Node one, because random client might yield the no p2p node, which breaks the timings rpcClient := s.RPCHandles.TenWalletClient(s.Params.Wallets.L2FaucetWallet.Address(), 1) var cfg *common.TenNetworkInfo for cfg == nil || cfg.TransactionPostProcessorAddress.Cmp(gethcommon.Address{}) == 0 { @@ -323,15 +322,19 @@ func (s *Simulation) deployTenZen() { time.Sleep(2 * time.Second) } - for { + // Wait for balance with retry + err = retry.Do(func() error { balance, err := rpcClient.BalanceAt(context.Background(), nil) if err != nil { - panic(fmt.Errorf("failed to get balance: %w", err)) + return fmt.Errorf("failed to get balance: %w", err) } - if balance.Cmp(big.NewInt(0)) > 0 { - break + if balance.Cmp(big.NewInt(0)) <= 0 { + return fmt.Errorf("waiting for positive balance") } - time.Sleep(2 * time.Second) + return nil + }, retry.NewTimeoutStrategy(60*time.Second, 2*time.Second)) + if err != nil { + panic(fmt.Errorf("failed to get positive balance after timeout: %w", err)) } owner := s.Params.Wallets.L2FaucetWallet @@ -403,12 +406,12 @@ func (s *Simulation) deployTenERC20s() { rpc := s.RPCHandles.TenWalletClient(owner.Address(), 1) err = rpc.SendTransaction(s.ctx, signedTx) if err != nil { - panic(err) + panic(fmt.Sprintf("ERC20 deployment transaction unsuccessful. Cause: %s", err)) } err = testcommon.AwaitReceipt(s.ctx, rpc, signedTx.Hash(), s.Params.ReceiptTimeout) if err != nil { - panic(fmt.Sprintf("ERC20 deployment transaction unsuccessful. Cause: %s", err)) + panic(fmt.Sprintf("ERC20 deployment transaction receipt unsuccessful. Cause: %s", err)) } }(token) } @@ -446,7 +449,6 @@ func (s *Simulation) prefundL1Accounts() { if err != nil { panic(err) } - go s.TxInjector.TxTracker.trackL1Tx(txData) } } diff --git a/integration/simulation/simulation_full_network_test.go b/integration/simulation/simulation_full_network_test.go index a25cf0d3d6..2323bf2bbc 100644 --- a/integration/simulation/simulation_full_network_test.go +++ b/integration/simulation/simulation_full_network_test.go @@ -29,7 +29,7 @@ func TestFullNetworkMonteCarloSimulation(t *testing.T) { L1EfficiencyThreshold: 0.2, Wallets: wallets, StartPort: integration.TestPorts.TestFullNetworkMonteCarloSimulationPort, - ReceiptTimeout: 20 * time.Second, + ReceiptTimeout: 45 * time.Second, StoppingDelay: 15 * time.Second, NodeWithInboundP2PDisabled: 2, L1BeaconPort: integration.TestPorts.TestFullNetworkMonteCarloSimulationPort + integration.DefaultPrysmGatewayPortOffset, diff --git a/integration/simulation/utils.go b/integration/simulation/utils.go index cc64760a0e..9445b9c7be 100644 --- a/integration/simulation/utils.go +++ b/integration/simulation/utils.go @@ -28,7 +28,7 @@ func setupSimTestLog(simType string) { LogDir: testLogs, TestType: "sim-log", TestSubtype: simType, - LogLevel: log.LvlInfo, + LogLevel: log.LvlTrace, }) } diff --git a/testnet/launcher/docker.go b/testnet/launcher/docker.go index 48a1993593..acc2f150fb 100644 --- a/testnet/launcher/docker.go +++ b/testnet/launcher/docker.go @@ -44,13 +44,6 @@ func (t *Testnet) Start() error { return fmt.Errorf("unable to deploy l1 contracts - %w", err) } - println("MANAGEMENT CONTRACT: ", networkConfig.ManagementContractAddress) - println("MANAGEMENT CONTRACT: ", networkConfig.ManagementContractAddress) - println("MANAGEMENT CONTRACT: ", networkConfig.ManagementContractAddress) - println("MANAGEMENT CONTRACT: ", networkConfig.ManagementContractAddress) - println("MANAGEMENT CONTRACT: ", networkConfig.ManagementContractAddress) - println("MANAGEMENT CONTRACT: ", networkConfig.ManagementContractAddress) - edgelessDBImage := "ghcr.io/edgelesssys/edgelessdb-sgx-4gb:v0.3.2" // todo: revisit how we should configure the image, this condition is not ideal if !t.cfg.isSGXEnabled { From 8d086dbbbceac90767eff2746c960441cc032f0a Mon Sep 17 00:00:00 2001 From: Will Hester Date: Mon, 9 Dec 2024 10:05:54 +0000 Subject: [PATCH 16/21] Stashing before big refactor --- go/common/l1_transaction.go | 14 +- go/enclave/components/block_processor.go | 5 - go/enclave/crosschain/common.go | 18 -- go/enclave/enclave_admin_service.go | 11 +- go/host/l1/blockrepository.go | 337 ++++++++++++----------- go/host/l2/batchrepository.go | 3 - 6 files changed, 187 insertions(+), 201 deletions(-) diff --git a/go/common/l1_transaction.go b/go/common/l1_transaction.go index 97f3a328b7..fcc6144ade 100644 --- a/go/common/l1_transaction.go +++ b/go/common/l1_transaction.go @@ -104,13 +104,13 @@ type ProcessedL1Data struct { // L1TxData represents an L1 transaction that are relevant to us type L1TxData struct { - Transaction *types.Transaction - Receipt *types.Receipt - Blobs []*kzg4844.Blob // Only populated for blob transactions - SequencerEnclaveIDs []gethcommon.Address // Only populated when a new enclave is added as a sequencer - CrossChainMessages *CrossChainMessages // Only populated for xchain messages - ValueTransfers *ValueTransferEvents // Only populated for xchain transfers - Proof []byte // Some merkle proof TBC + Transaction *types.Transaction + Receipt *types.Receipt + Blobs []*kzg4844.Blob // Only populated for blob transactions + SequencerEnclaveID *EnclaveID // Only populated when a new enclave is added as a sequencer + CrossChainMessages *CrossChainMessages // Only populated for xchain messages + ValueTransfers *ValueTransferEvents // Only populated for xchain transfers + Proof []byte // Some merkle proof TBC } func (p *ProcessedL1Data) AddEvent(txType L1TxType, tx *L1TxData) { diff --git a/go/enclave/components/block_processor.go b/go/enclave/components/block_processor.go index 9688f094f4..f8c1e0ee4e 100644 --- a/go/enclave/components/block_processor.go +++ b/go/enclave/components/block_processor.go @@ -80,11 +80,6 @@ func (bp *l1BlockProcessor) Process(ctx context.Context, processed *common.Proce } } - sequencerAddedTx := processed.GetEvents(common.SequencerAddedTx) - if len(sequencerAddedTx) > 0 { - // FIXME ADD SEQUENCER - } - // todo @siliev - not sure if this is the best way to update the price, will pick up random stale blocks from forks? bp.gasOracle.ProcessL1Block(header) diff --git a/go/enclave/crosschain/common.go b/go/enclave/crosschain/common.go index 86d5f3cc24..eb7b548e91 100644 --- a/go/enclave/crosschain/common.go +++ b/go/enclave/crosschain/common.go @@ -169,24 +169,6 @@ func ConvertLogsToValueTransfers(logs []types.Log, eventName string, messageBusA return messages, nil } -// ConvertLogsToSequencerEnclaves converts the logs of SequencerEnclaveGranted events to enclaveIDs -func ConvertLogsToSequencerEnclaves(logs []types.Log, eventName string, mgmtContractABI abi.ABI) ([]gethcommon.Address, error) { - enclaveIDs := make([]gethcommon.Address, 0) - - for _, log := range logs { - if len(log.Topics) != 2 { - return nil, fmt.Errorf("invalid number of topics in log: %d", len(log.Topics)) - } - - // The enclaveID is indexed, so it appears in the Topics rather than the Data - // Topics[0] is the event signature, Topics[1] is the indexed enclaveID - enclaveID := gethcommon.BytesToAddress(log.Topics[1].Bytes()) - enclaveIDs = append(enclaveIDs, enclaveID) - } - - return enclaveIDs, nil -} - type MerkleBatches []*core.Batch func (mb MerkleBatches) Len() int { diff --git a/go/enclave/enclave_admin_service.go b/go/enclave/enclave_admin_service.go index 87a10fb669..60d1c48863 100644 --- a/go/enclave/enclave_admin_service.go +++ b/go/enclave/enclave_admin_service.go @@ -494,7 +494,16 @@ func (e *enclaveAdminService) ingestL1Block(ctx context.Context, processed *comm // Unsure what to do here; block has been stored } - //TODO call AddSequencer if event present + sequencerAddedTx := processed.GetEvents(common.SequencerAddedTx) + if len(sequencerAddedTx) > 0 { + for _, tx := range sequencerAddedTx { + err := e.AddSequencer(*tx.SequencerEnclaveID, *tx.Receipt) + if err != nil { + e.logger.Crit("Can't add enclave ID as a sequencer") + } + println("SEQUENCER ADDED TX SUCCESS") + } + } if ingestion.IsFork() { e.registry.OnL1Reorg(ingestion) diff --git a/go/host/l1/blockrepository.go b/go/host/l1/blockrepository.go index 71623b7bee..7e2cd10d32 100644 --- a/go/host/l1/blockrepository.go +++ b/go/host/l1/blockrepository.go @@ -193,127 +193,202 @@ func (r *Repository) FetchObscuroReceipts(block *common.L1Block) (types.Receipts return receipts, nil } -// ExtractTenTransactions does all the filtering of txs to find all the transaction types we care about on the L2. These -// are pulled from the data in the L1 blocks and then submitted to the enclave for processing +// ExtractTenTransactions processes L1 block data to find relevant transactions func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.ProcessedL1Data, error) { processed := &common.ProcessedL1Data{ BlockHeader: block.Header(), Events: []common.L1Event{}, } - // Get all logs for our contracts - blkHash := block.Hash() + // Get all contract logs in a single query + logs, err := r.fetchContractLogs(block.Hash()) + if err != nil { + return nil, err + } + + // Group logs by transaction hash for efficient processing + logsByTx := r.groupLogsByTransaction(logs) + + // Process each transaction's logs + for txHash, txLogs := range logsByTx { + if err := r.processTransactionLogs(txHash, txLogs, block.Header(), processed); err != nil { + r.logger.Error("Error processing transaction logs", "txHash", txHash, "error", err) + continue + } + } + + return processed, nil +} + +// fetchContractLogs gets all logs for our tracked contracts in a single query +func (r *Repository) fetchContractLogs(blockHash gethcommon.Hash) ([]types.Log, error) { var allAddresses []gethcommon.Address allAddresses = append(allAddresses, r.contractAddresses[MgmtContract]...) allAddresses = append(allAddresses, r.contractAddresses[MsgBus]...) - logs, err := r.ethClient.GetLogs(ethereum.FilterQuery{BlockHash: &blkHash, Addresses: allAddresses}) - if err != nil { - return nil, fmt.Errorf("unable to fetch logs for L1 block - %w", err) - } + return r.ethClient.GetLogs(ethereum.FilterQuery{ + BlockHash: &blockHash, + Addresses: allAddresses, + }) +} - // FIXME clean this monster function up & look for redundant block.transactions() loops on enclave side - // group logs by transaction hash and topic - type logGroup struct { - crossChainLogs []types.Log - valueTransferLogs []types.Log - sequencerLogs []types.Log - secretRequestLogs []types.Log - secretResponseLogs []types.Log - rollupAddedLogs []types.Log - } +type logGroup struct { + crossChainLogs []types.Log + valueTransferLogs []types.Log + sequencerLogs []types.Log + secretRequestLogs []types.Log + secretResponseLogs []types.Log + rollupAddedLogs []types.Log +} +// groupLogsByTransaction organizes logs by transaction hash and type +func (r *Repository) groupLogsByTransaction(logs []types.Log) map[gethcommon.Hash]*logGroup { logsByTx := make(map[gethcommon.Hash]*logGroup) - // filter logs by topic for _, l := range logs { if _, exists := logsByTx[l.TxHash]; !exists { logsByTx[l.TxHash] = &logGroup{} } + + r.categorizeLog(l, logsByTx[l.TxHash]) + } - switch l.Topics[0] { - case crosschain.CrossChainEventID: - logsByTx[l.TxHash].crossChainLogs = append(logsByTx[l.TxHash].crossChainLogs, l) - case crosschain.ValueTransferEventID: - logsByTx[l.TxHash].valueTransferLogs = append(logsByTx[l.TxHash].valueTransferLogs, l) - case crosschain.SequencerEnclaveGrantedEventID: - logsByTx[l.TxHash].sequencerLogs = append(logsByTx[l.TxHash].sequencerLogs, l) - case crosschain.NetworkSecretRequestedID: - logsByTx[l.TxHash].secretRequestLogs = append(logsByTx[l.TxHash].secretRequestLogs, l) - case crosschain.NetworkSecretRespondedID: - logsByTx[l.TxHash].secretResponseLogs = append(logsByTx[l.TxHash].secretResponseLogs, l) - case crosschain.RollupAddedID: - logsByTx[l.TxHash].rollupAddedLogs = append(logsByTx[l.TxHash].rollupAddedLogs, l) - } + return logsByTx +} + +// categorizeLog sorts a log into its appropriate category within a logGroup +func (r *Repository) categorizeLog(l types.Log, group *logGroup) { + switch l.Topics[0] { + case crosschain.CrossChainEventID: + group.crossChainLogs = append(group.crossChainLogs, l) + case crosschain.ValueTransferEventID: + group.valueTransferLogs = append(group.valueTransferLogs, l) + case crosschain.SequencerEnclaveGrantedEventID: + group.sequencerLogs = append(group.sequencerLogs, l) + case crosschain.NetworkSecretRequestedID: + group.secretRequestLogs = append(group.secretRequestLogs, l) + case crosschain.NetworkSecretRespondedID: + group.secretResponseLogs = append(group.secretResponseLogs, l) + case crosschain.RollupAddedID: + group.rollupAddedLogs = append(group.rollupAddedLogs, l) } +} - // Process each transaction once - for txHash, txLogs := range logsByTx { - tx, _, err := r.ethClient.TransactionByHash(txHash) - if err != nil { - r.logger.Error("Error fetching transaction by hash", txHash, err) - continue - } +// processTransactionLogs handles the logs for a single transaction +func (r *Repository) processTransactionLogs(txHash gethcommon.Hash, txLogs *logGroup, header *types.Header, processed *common.ProcessedL1Data) error { + tx, receipt, err := r.fetchTransactionAndReceipt(txHash) + if err != nil { + return err + } - receipt, err := r.ethClient.TransactionReceipt(txHash) - if err != nil { - r.logger.Error("Error fetching transaction receipt", txHash, err) - continue - } + txData := &common.L1TxData{ + Transaction: tx, + Receipt: receipt, + } - txData := &common.L1TxData{ - Transaction: tx, - Receipt: receipt, - CrossChainMessages: &common.CrossChainMessages{}, - ValueTransfers: &common.ValueTransferEvents{}, - } + // Process cross-chain messages + if err := r.processCrossChainMessages(txLogs, txData, processed); err != nil { + return err + } - if len(txLogs.crossChainLogs) > 0 { - if messages, err := crosschain.ConvertLogsToMessages(txLogs.crossChainLogs, crosschain.CrossChainEventName, crosschain.MessageBusABI); err == nil { - txData.CrossChainMessages = &messages - processed.AddEvent(common.CrossChainMessageTx, txData) - } + // Process value transfers + if err := r.processValueTransfers(txLogs, txData, processed); err != nil { + return err + } + + // Process other event types + r.processSequencerLogs(txLogs, txData, processed) + r.processSecretLogs(txLogs, txData, processed) + + // Process management contract transactions + if err := r.processMgmtContractTx(tx, txData, header, processed); err != nil { + return err + } + + return nil +} + +// fetchTransactionAndReceipt gets both transaction and receipt in one method +func (r *Repository) fetchTransactionAndReceipt(txHash gethcommon.Hash) (*types.Transaction, *types.Receipt, error) { + tx, _, err := r.ethClient.TransactionByHash(txHash) + if err != nil { + return nil, nil, fmt.Errorf("error fetching transaction: %w", err) + } + + receipt, err := r.ethClient.TransactionReceipt(txHash) + if err != nil { + return nil, nil, fmt.Errorf("error fetching receipt: %w", err) + } + + return tx, receipt, nil +} + +// processCrossChainMessages handles cross-chain message logs +func (r *Repository) processCrossChainMessages(txLogs *logGroup, txData *common.L1TxData, processed *common.ProcessedL1Data) error { + if len(txLogs.crossChainLogs) > 0 { + messages, err := crosschain.ConvertLogsToMessages(txLogs.crossChainLogs, crosschain.CrossChainEventName, crosschain.MessageBusABI) + if err != nil { + return err } + txData.CrossChainMessages = &messages + processed.AddEvent(common.CrossChainMessageTx, txData) + } + return nil +} - if len(txLogs.valueTransferLogs) > 0 { - if transfers, err := crosschain.ConvertLogsToValueTransfers(txLogs.valueTransferLogs, crosschain.ValueTransferEventName, crosschain.MessageBusABI); err == nil { - txData.ValueTransfers = &transfers - processed.AddEvent(common.CrossChainValueTranserTx, txData) - } +// processValueTransfers handles value transfer logs +func (r *Repository) processValueTransfers(txLogs *logGroup, txData *common.L1TxData, processed *common.ProcessedL1Data) error { + if len(txLogs.valueTransferLogs) > 0 { + transfers, err := crosschain.ConvertLogsToValueTransfers(txLogs.valueTransferLogs, crosschain.ValueTransferEventName, crosschain.MessageBusABI) + if err != nil { + return err } + txData.ValueTransfers = &transfers + processed.AddEvent(common.CrossChainValueTranserTx, txData) + } + return nil +} - if len(txLogs.sequencerLogs) > 0 { - println("SEQUENCER ENCLAVE ADDED ") - if enclaveIDs, err := crosschain.ConvertLogsToSequencerEnclaves(txLogs.sequencerLogs, crosschain.SequencerEnclaveGrantedEventName, crosschain.MgmtContractABI); err == nil { - txData.SequencerEnclaveIDs = enclaveIDs +// processSequencerLogs handles sequencer-related logs +func (r *Repository) processSequencerLogs(txLogs *logGroup, txData *common.L1TxData, processed *common.ProcessedL1Data) { + if len(txLogs.sequencerLogs) > 0 { + for _, l := range txLogs.sequencerLogs { + if enclaveID, err := getEnclaveIdFromLog(l); err == nil { + txData.SequencerEnclaveID = enclaveID processed.AddEvent(common.SequencerAddedTx, txData) } } + } +} - if len(txLogs.secretRequestLogs) > 0 { - processed.AddEvent(common.SecretRequestTx, txData) - } - - if len(txLogs.secretResponseLogs) > 0 { - processed.AddEvent(common.SecretResponseTx, txData) - } +// processSecretLogs handles secret-related logs +func (r *Repository) processSecretLogs(txLogs *logGroup, txData *common.L1TxData, processed *common.ProcessedL1Data) { + if len(txLogs.secretRequestLogs) > 0 { + processed.AddEvent(common.SecretRequestTx, txData) + } + if len(txLogs.secretResponseLogs) > 0 { + processed.AddEvent(common.SecretResponseTx, txData) + } +} - if decodedTx := r.mgmtContractLib.DecodeTx(tx); decodedTx != nil { - switch t := decodedTx.(type) { - case *common.L1InitializeSecretTx: - processed.AddEvent(common.InitialiseSecretTx, txData) - case *common.L1SetImportantContractsTx: - processed.AddEvent(common.SetImportantContractsTx, txData) - case *common.L1RollupHashes: - if blobs, err := r.blobResolver.FetchBlobs(context.Background(), block.Header(), t.BlobHashes); err == nil { - txData.Blobs = blobs - processed.AddEvent(common.RollupTx, txData) - } +// processMgmtContractTx handles management contract transactions +func (r *Repository) processMgmtContractTx(tx *types.Transaction, txData *common.L1TxData, header *types.Header, processed *common.ProcessedL1Data) error { + if decodedTx := r.mgmtContractLib.DecodeTx(tx); decodedTx != nil { + switch t := decodedTx.(type) { + case *common.L1InitializeSecretTx: + processed.AddEvent(common.InitialiseSecretTx, txData) + case *common.L1SetImportantContractsTx: + processed.AddEvent(common.SetImportantContractsTx, txData) + case *common.L1RollupHashes: + blobs, err := r.blobResolver.FetchBlobs(context.Background(), header, t.BlobHashes) + if err != nil { + return err } + txData.Blobs = blobs + processed.AddEvent(common.RollupTx, txData) } } - - return processed, nil + return nil } // stream blocks from L1 as they arrive and forward them to subscribers, no guarantee of perfect ordering or that there won't be gaps. @@ -383,88 +458,16 @@ func (r *Repository) isObscuroTransaction(transaction *types.Transaction) bool { return false } -//func (r *Repository) getRelevantTxReceiptsAndBlobs(block *common.L1Block) ([]*common.TxAndReceiptAndBlobs, error) { -// // Create a slice that will only contain valid transactions -// var txsWithReceipts []*common.TxAndReceiptAndBlobs -// -// receipts, err := r.FetchObscuroReceipts(block) -// if err != nil { -// return nil, fmt.Errorf("failed to fetch receipts: %w", err) -// } -// -// for i, tx := range block.Transactions() { -// // skip unsuccessful txs -// if receipts[i].Status == types.ReceiptStatusFailed { -// continue -// } -// -// txWithReceipt := &common.TxAndReceiptAndBlobs{ -// Tx: tx, -// Receipt: receipts[i], -// } -// -// if tx.Type() == types.BlobTxType { -// txBlobs := tx.BlobHashes() -// blobs, err := r.blobResolver.FetchBlobs(context.Background(), block.Header(), txBlobs) -// if err != nil { -// if errors.Is(err, ethereum.NotFound) { -// r.logger.Crit("Blobs were not found on beacon chain or archive service", "block", block.Hash(), "error", err) -// } else { -// r.logger.Crit("could not fetch blobs", log.ErrKey, err) -// } -// continue -// } -// txWithReceipt.Blobs = blobs -// } -// -// // Append only valid transactions -// txsWithReceipts = append(txsWithReceipts, txWithReceipt) -// } -// -// return txsWithReceipts, nil -//} - -//func (r *Repository) getCrossChainMessages(receipt *types.Receipt) (common.CrossChainMessages, error) { -// logsForReceipt, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MsgBus][0], &crosschain.CrossChainEventID) -// if err != nil { -// r.logger.Error("Error encountered when filtering receipt logs for cross chain messages.", log.ErrKey, err) -// return make(common.CrossChainMessages, 0), err -// } -// messages, err := crosschain.ConvertLogsToMessages(logsForReceipt, crosschain.CrossChainEventName, crosschain.MessageBusABI) -// if err != nil { -// r.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) -// return make(common.CrossChainMessages, 0), err -// } -// -// return messages, nil -//} -// -//func (r *Repository) getValueTransferEvents(receipt *types.Receipt) (common.ValueTransferEvents, error) { -// logsForReceipt, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MsgBus][0], &crosschain.ValueTransferEventID) -// if err != nil { -// r.logger.Error("Error encountered when filtering receipt logs for value transfers.", log.ErrKey, err) -// return make(common.ValueTransferEvents, 0), err -// } -// transfers, err := crosschain.ConvertLogsToValueTransfers(logsForReceipt, crosschain.CrossChainEventName, crosschain.MessageBusABI) -// if err != nil { -// r.logger.Error("Error encountered converting the extracted relevant logs to messages", log.ErrKey, err) -// return make(common.ValueTransferEvents, 0), err -// } -// -// return transfers, nil -//} - -//func (r *Repository) getSequencerEventLogs(receipt *types.Receipt) ([]types.Log, error) { -// sequencerLogs, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MgmtContract][0], &crosschain.SequencerEnclaveGrantedEventID) -// if err != nil { -// r.logger.Error("Error filtering sequencer logs", log.ErrKey, err) -// return []types.Log{}, err -// } -// -// // TODO convert to add sequencer? -// -// return sequencerLogs, nil -//} +// getEnclaveIdFromLog gets the enclave ID from the log topic +func getEnclaveIdFromLog(log types.Log) (*common.EnclaveID, error) { + if len(log.Topics) != 1 { + return nil, fmt.Errorf("invalid number of topics in log: %d", len(log.Topics)) + } + + // opics[0] is the event signature, Topics[1] is the indexed enclaveID + enclaveID := gethcommon.BytesToAddress(log.Topics[0].Bytes()) + return &enclaveID, nil +} func (r *Repository) getRequestSecretEventLogs(receipt *types.Receipt) ([]types.Log, error) { sequencerLogs, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MgmtContract][0], &crosschain.NetworkSecretRequestedID) diff --git a/go/host/l2/batchrepository.go b/go/host/l2/batchrepository.go index c7fad48a98..f2beab6ce3 100644 --- a/go/host/l2/batchrepository.go +++ b/go/host/l2/batchrepository.go @@ -63,9 +63,6 @@ type Repository struct { } func NewBatchRepository(cfg *hostconfig.HostConfig, hostService batchRepoServiceLocator, storage storage.Storage, logger gethlog.Logger) *Repository { - if cfg.NodeType == common.ActiveSequencer { - println("SEQUENCER CONFIGURED") - } return &Repository{ batchSubscribers: subscription.NewManager[host.L2BatchHandler](), validatedBatchSubscribers: subscription.NewManager[host.L2BatchHandler](), From 267505ee538d449a5bbbed4a4f8a24f3223ab06d Mon Sep 17 00:00:00 2001 From: Will Hester Date: Tue, 10 Dec 2024 10:13:52 +0000 Subject: [PATCH 17/21] stashing --- .../ManagementContract/ManagementContract.go | 300 +++++++++++++++++- go/common/l1_transaction.go | 8 +- .../crosschain/block_message_extractor.go | 1 + go/enclave/enclave_admin_service.go | 6 +- go/host/l1/blockrepository.go | 6 +- integration/simulation/simulation.go | 28 +- 6 files changed, 323 insertions(+), 26 deletions(-) diff --git a/contracts/generated/ManagementContract/ManagementContract.go b/contracts/generated/ManagementContract/ManagementContract.go index 2b72e4ac12..b77d948e92 100644 --- a/contracts/generated/ManagementContract/ManagementContract.go +++ b/contracts/generated/ManagementContract/ManagementContract.go @@ -62,7 +62,7 @@ type StructsValueTransferMessage struct { // ManagementContractMetaData contains all meta data concerning the ManagementContract contract. var ManagementContractMetaData = &bind.MetaData{ ABI: "[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"ECDSAInvalidSignature\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"length\",\"type\":\"uint256\"}],\"name\":\"ECDSAInvalidSignatureLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"ECDSAInvalidSignatureS\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"key\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"ImportantContractAddressUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"messageBusAddress\",\"type\":\"address\"}],\"name\":\"LogManagementContractCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"requester\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"requestReport\",\"type\":\"string\"}],\"name\":\"NetworkSecretRequested\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"attester\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"requester\",\"type\":\"address\"}],\"name\":\"NetworkSecretResponded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"bytes32\",\"name\":\"rollupHash\",\"type\":\"bytes32\"}],\"name\":\"RollupAdded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"enclaveID\",\"type\":\"address\"}],\"name\":\"SequencerEnclaveGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"enclaveID\",\"type\":\"address\"}],\"name\":\"SequencerEnclaveRevoked\",\"type\":\"event\"},{\"inputs\":[{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"Hash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"Signature\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"LastSequenceNumber\",\"type\":\"uint256\"}],\"internalType\":\"structStructs.MetaRollup\",\"name\":\"r\",\"type\":\"tuple\"},{\"components\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint64\",\"name\":\"sequence\",\"type\":\"uint64\"},{\"internalType\":\"uint32\",\"name\":\"nonce\",\"type\":\"uint32\"},{\"internalType\":\"uint32\",\"name\":\"topic\",\"type\":\"uint32\"},{\"internalType\":\"bytes\",\"name\":\"payload\",\"type\":\"bytes\"},{\"internalType\":\"uint8\",\"name\":\"consistencyLevel\",\"type\":\"uint8\"}],\"internalType\":\"structStructs.CrossChainMessage[]\",\"name\":\"messages\",\"type\":\"tuple[]\"}],\"internalType\":\"structStructs.HeaderCrossChainData\",\"name\":\"\",\"type\":\"tuple\"}],\"name\":\"AddRollup\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_addr\",\"type\":\"address\"}],\"name\":\"Attested\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint64\",\"name\":\"sequence\",\"type\":\"uint64\"}],\"internalType\":\"structStructs.ValueTransferMessage\",\"name\":\"_msg\",\"type\":\"tuple\"},{\"internalType\":\"bytes32[]\",\"name\":\"proof\",\"type\":\"bytes32[]\"},{\"internalType\":\"bytes32\",\"name\":\"root\",\"type\":\"bytes32\"}],\"name\":\"ExtractNativeValue\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"GetImportantContractKeys\",\"outputs\":[{\"internalType\":\"string[]\",\"name\":\"\",\"type\":\"string[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"rollupHash\",\"type\":\"bytes32\"}],\"name\":\"GetRollupByHash\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"Hash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"Signature\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"LastSequenceNumber\",\"type\":\"uint256\"}],\"internalType\":\"structStructs.MetaRollup\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"number\",\"type\":\"uint256\"}],\"name\":\"GetRollupByNumber\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"Hash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"Signature\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"LastSequenceNumber\",\"type\":\"uint256\"}],\"internalType\":\"structStructs.MetaRollup\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"number\",\"type\":\"uint256\"}],\"name\":\"GetUniqueForkID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"},{\"components\":[{\"internalType\":\"bytes32\",\"name\":\"Hash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"Signature\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"LastSequenceNumber\",\"type\":\"uint256\"}],\"internalType\":\"structStructs.MetaRollup\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_addr\",\"type\":\"address\"}],\"name\":\"GrantSequencerEnclave\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_enclaveID\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_initSecret\",\"type\":\"bytes\"},{\"internalType\":\"string\",\"name\":\"_genesisAttestation\",\"type\":\"string\"}],\"name\":\"InitializeNetworkSecret\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_addr\",\"type\":\"address\"}],\"name\":\"IsSequencerEnclave\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"IsWithdrawalAvailable\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"requestReport\",\"type\":\"string\"}],\"name\":\"RequestNetworkSecret\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"attesterID\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"requesterID\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"attesterSig\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"responseSecret\",\"type\":\"bytes\"},{\"internalType\":\"bool\",\"name\":\"verifyAttester\",\"type\":\"bool\"}],\"name\":\"RespondNetworkSecret\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"RetrieveAllBridgeFunds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_addr\",\"type\":\"address\"}],\"name\":\"RevokeSequencerEnclave\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"key\",\"type\":\"string\"},{\"internalType\":\"address\",\"name\":\"newAddress\",\"type\":\"address\"}],\"name\":\"SetImportantContractAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"_lastBatchHash\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"blockHash\",\"type\":\"bytes32\"},{\"internalType\":\"uint256\",\"name\":\"blockNum\",\"type\":\"uint256\"},{\"internalType\":\"bytes[]\",\"name\":\"crossChainHashes\",\"type\":\"bytes[]\"},{\"internalType\":\"bytes\",\"name\":\"signature\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"rollupNumber\",\"type\":\"uint256\"},{\"internalType\":\"bytes32\",\"name\":\"forkID\",\"type\":\"bytes32\"}],\"name\":\"addCrossChainMessagesRoot\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"name\":\"importantContractAddresses\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"importantContractKeys\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes[]\",\"name\":\"crossChainHashes\",\"type\":\"bytes[]\"}],\"name\":\"isBundleAvailable\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"name\":\"isBundleSaved\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"name\":\"isWithdrawalSpent\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lastBatchHash\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lastBatchSeqNo\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"merkleMessageBus\",\"outputs\":[{\"internalType\":\"contractIMerkleTreeMessageBus\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"messageBus\",\"outputs\":[{\"internalType\":\"contractIMessageBus\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}]", - Bin: "0x6080604052348015600f57600080fd5b50601733601b565b608c565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b61528b8061009b6000396000f3fe608060405234801561001057600080fd5b50600436106101d95760003560e01c80638129fc1c11610104578063a25eb31c116100a2578063db5d91b111610071578063db5d91b114610475578063e34fbfc8146104a1578063e874eb20146104b4578063f2fde38b146104c757600080fd5b8063a25eb31c1461042c578063a4ab2faa1461043f578063a52f433c14610452578063d4fab8871461046257600080fd5b806387059edb116100de57806387059edb146103a95780638da5cb5b146103bc57806398077e86146103ec578063a1a227fa1461040c57600080fd5b80638129fc1c1461035d5780638236a7ba14610365578063841548261461038657600080fd5b8063476657381161017c5780636a30d26c1161014b5780636a30d26c146103255780636b9707d61461033a578063715018a61461034d578063728109961461035557600080fd5b806347665738146102cb5780635371a216146102de578063568699c8146102f157806368e103831461031257600080fd5b80632f0cb9e3116101b85780632f0cb9e3146102255780633e60a22f1461025557806343348b2f14610296578063440c953b146102c257600080fd5b80620ddd27146101de57806303e72e48146101fd578063073b6ef314610212575b600080fd5b6101e7600e5481565b6040516101f49190611a56565b60405180910390f35b61021061020b366004611b8c565b6104da565b005b610210610220366004611d01565b6105e2565b610248610233366004611dcf565b600c6020526000908152604090205460ff1681565b6040516101f49190611df6565b610289610263366004611e04565b80516020818301810180516003825292820191909301209152546001600160a01b031681565b6040516101f49190611e50565b6102486102a4366004611e5e565b6001600160a01b031660009081526020819052604090205460ff1690565b6101e760055481565b6102106102d9366004611e5e565b6107d9565b6102106102ec366004611ee3565b610879565b6103046102ff366004611dcf565b610a1e565b6040516101f4929190611fe5565b610210610320366004612005565b610a74565b61032d610b18565b6040516101f49190612108565b610210610348366004611e5e565b610bf1565b610210610c81565b610210610c95565b610210610d1a565b610378610373366004611dcf565b610ef5565b6040516101f4929190612119565b610248610394366004611dcf565b600d6020526000908152604090205460ff1681565b6103786103b7366004611dcf565b610fdd565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b0316610289565b6103ff6103fa366004611dcf565b611054565b6040516101f49190612127565b600a5461041f906001600160a01b031681565b6040516101f4919061217a565b61021061043a3660046121b2565b611100565b61024861044d366004612224565b611208565b600454610100900460ff16610248565b610210610470366004612272565b611286565b610248610483366004611e5e565b6001600160a01b031660009081526001602052604090205460ff1690565b6102106104af366004612319565b61138e565b600b5461041f906001600160a01b031681565b6102106104d5366004611e5e565b6113d5565b6104e261142c565b60006001600160a01b03166003836040516104fd9190612383565b908152604051908190036020019020546001600160a01b03160361055957600280546001810182556000919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01610557838261245f565b505b8060038360405161056a9190612383565b90815260405190819003602001812080546001600160a01b039390931673ffffffffffffffffffffffffffffffffffffffff19909316929092179091557f17b2f9f5748931099ffee882b5b64f4a560b5c55da9b4f4e396dae3bb9f98cb5906105d6908490849061251f565b60405180910390a15050565b60008281526008602052604090205481146106185760405162461bcd60e51b815260040161060f90612571565b60405180910390fd5b60006106868989898960405160200161063494939291906125d9565b6040516020818303038152906040528051906020012086868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506114a092505050565b6001600160a01b03811660009081526020819052604090205490915060ff166106c15760405162461bcd60e51b815260040161060f9061264f565b600e8990556000805b87518110156107b457600b5488516001600160a01b039091169063b6aed0cb908a90849081106106fc576106fc61265f565b602002602001015161070d9061267f565b426040518363ffffffff1660e01b815260040161072b9291906126b5565b600060405180830381600087803b15801561074557600080fd5b505af1158015610759573d6000803e3d6000fd5b50505050818882815181106107705761077061265f565b60200260200101516107819061267f565b6040516020016107929291906126b5565b60408051601f19818403018152919052805160209091012091506001016106ca565b506000908152600d60205260409020805460ff19166001179055505050505050505050565b6107e161142c565b6001600160a01b03811660009081526020819052604090205460ff166108195760405162461bcd60e51b815260040161060f9061264f565b6001600160a01b038116600090815260016020819052604091829020805460ff19169091179055517ffe64c7181f0fc60e300dc02cca368cdfa94d7ca45902de3b9a9d80070e7609369061086e908390611e50565b60405180910390a150565b600b546040517fb201246f0000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063b201246f906108c89087908790879087906004016127eb565b60006040518083038186803b1580156108e057600080fd5b505afa1580156108f4573d6000803e3d6000fd5b5050505060008460405160200161090b9190612824565b60408051601f1981840301815291815281516020928301206000818152600c90935291205490915060ff16156109535760405162461bcd60e51b815260040161060f90612864565b6001600c60008760405160200161096a9190612824565b60408051808303601f190181529181528151602092830120835282820193909352908201600020805460ff191693151593909317909255600a546001600160a01b0316916399a3ad21916109c391908901908901611e5e565b87604001356040518363ffffffff1660e01b81526004016109e5929190612874565b600060405180830381600087803b1580156109ff57600080fd5b505af1158015610a13573d6000803e3d6000fd5b505050505050505050565b604080516060808201835260008083526020830191909152918101829052600080610a4885610fdd565b9150915081610a5d5760009590945092505050565b600094855260086020526040909420549492505050565b60045460ff1615610a975760405162461bcd60e51b815260040161060f906128dc565b60048054600160ff1991821681179092556001600160a01b0387166000908152602081815260408083208054851686179055908490529081902080549092169092179055517ffe64c7181f0fc60e300dc02cca368cdfa94d7ca45902de3b9a9d80070e76093690610b09908790611e50565b60405180910390a15050505050565b60606002805480602002602001604051908101604052809291908181526020016000905b82821015610be8578382906000526020600020018054610b5b906123a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b87906123a3565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b505050505081526020019060010190610b3c565b50505050905090565b610bf961142c565b6001600160a01b03811660009081526001602052604090205460ff16610c315760405162461bcd60e51b815260040161060f9061291e565b6001600160a01b03811660009081526001602052604090819020805460ff19169055517f0f279980343c7ca542fde9fa5396555068efb5cd560d9cf9c191aa2911079b479061086e908390611e50565b610c8961142c565b610c9360006114cc565b565b610c9d61142c565b600a546040517f36d2da900000000000000000000000000000000000000000000000000000000081526001600160a01b03909116906336d2da9090610ce6903390600401611e50565b600060405180830381600087803b158015610d0057600080fd5b505af1158015610d14573d6000803e3d6000fd5b50505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff16600081158015610d655750825b905060008267ffffffffffffffff166001148015610d825750303b155b905081158015610d90575080155b15610dc7576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610dfb57845468ff00000000000000001916680100000000000000001785555b610e043361154a565b60006005556001600955604051610e1a90611a41565b604051809103906000f080158015610e36573d6000803e3d6000fd5b50600b80546001600160a01b039290921673ffffffffffffffffffffffffffffffffffffffff199283168117909155600a805490921681179091556040517fbd726cf82ac9c3260b1495107182e336e0654b25c10915648c0cc15b2bb72cbf91610e9f91611e50565b60405180910390a18315610eee57845468ff0000000000000000191685556040517fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290610b0990600190612949565b5050505050565b604080516060808201835260008083526020808401839052838501829052858252600681528482208551938401909552845483526001850180549295869493909284019190610f43906123a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6f906123a3565b8015610fbc5780601f10610f9157610100808354040283529160200191610fbc565b820191906000526020600020905b815481529060010190602001808311610f9f57829003601f168201915b50505091835250506002919091015460209091015280519094149492505050565b6040805160608082018352600080835260208301919091529181018290526000838152600760205260408120549081900361104157505060408051606081018252600080825282516020818101855282825283015291810182905290939092509050565b61104a81610ef5565b9250925050915091565b6002818154811061106457600080fd5b90600052602060002001600091509050805461107f906123a3565b80601f01602080910402602001604051908101604052809291908181526020018280546110ab906123a3565b80156110f85780601f106110cd576101008083540402835291602001916110f8565b820191906000526020600020905b8154815290600101906020018083116110db57829003601f168201915b505050505081565b600061114e83356111146020860186612957565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506114a092505050565b6001600160a01b03811660009081526020819052604090205490915060ff166111895760405162461bcd60e51b815260040161060f9061264f565b6001600160a01b03811660009081526001602052604090205460ff166111c15760405162461bcd60e51b815260040161060f9061291e565b6111ca8361155b565b6040517fd6555bff8670bd3008dc064c30bb56d6ac7cb14ae801e36146fe4e7c6a504a58906111fb90853590611a56565b60405180910390a1505050565b600080805b835181101561126d57818482815181106112295761122961265f565b602002602001015161123a9061267f565b60405160200161124b9291906126b5565b60408051601f198184030181529190528051602090910120915060010161120d565b506000908152600d602052604090205460ff1692915050565b6001600160a01b03851660009081526020819052604090205460ff16806112bf5760405162461bcd60e51b815260040161060f90612a04565b81156113375760006112f38787866040516020016112df93929190612a3c565b6040516020818303038152906040526115ff565b9050600061130182876114a0565b9050876001600160a01b0316816001600160a01b0316146113345760405162461bcd60e51b815260040161060f90612ab8565b50505b6001600160a01b03808616600081815260208190526040808220805460ff191660011790555191928916917fb869e23ebc7c717d76e345eee8ec282612603e45c44f7ae5494b197c8d9d1be19190a3505050505050565b336001600160a01b03167f0b0ecdedd12079aa2d6c5e0186026c711cb0c8d04f1b724ba5880fb6328d430183836040516113c9929190612ae8565b60405180910390a25050565b6113dd61142c565b6001600160a01b0381166114205760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161060f9190611e50565b611429816114cc565b50565b3361145e7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b031614610c9357336040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161060f9190611e50565b6000806000806114b0868661163a565b9250925092506114c08282611687565b50909150505b92915050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300805473ffffffffffffffffffffffffffffffffffffffff1981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b61155261178d565b611429816117f4565b8035600090815260066020526040902081906115778282612c5d565b5050600954600090815260076020526040902081359081905561159b600143612c7d565b406040516020016115ad9291906126b5565b60408051601f1981840301815291815281516020928301206009805460009081526008909452918320558054916115e383612c90565b9190505550600554816040013511156114295760400135600555565b600061160b82516117fc565b8260405160200161161d929190612ca9565b604051602081830303815290604052805190602001209050919050565b600080600083516041036116745760208401516040850151606086015160001a6116668882858561189d565b955095509550505050611680565b50508151600091506002905b9250925092565b600082600381111561169b5761169b612ce5565b036116a4575050565b60018260038111156116b8576116b8612ce5565b036116ef576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600282600381111561170357611703612ce5565b0361173c576040517ffce698f700000000000000000000000000000000000000000000000000000000815261060f908290600401611a56565b600382600381111561175057611750612ce5565b0361178957806040517fd78bce0c00000000000000000000000000000000000000000000000000000000815260040161060f9190611a56565b5050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16610c93576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113dd61178d565b606060006118098361195f565b600101905060008167ffffffffffffffff81111561182957611829611a64565b6040519080825280601f01601f191660200182016040528015611853576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461185d575b509392505050565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411156118d85750600091506003905082611955565b6000600188888888604051600081526020016040526040516118fd9493929190612d04565b6020604051602081039080840390855afa15801561191f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661194b57506000925060019150829050611955565b9250600091508190505b9450945094915050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106119a8577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106119d4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106119f257662386f26fc10000830492506010015b6305f5e1008310611a0a576305f5e100830492506008015b6127108310611a1e57612710830492506004015b60648310611a30576064830492506002015b600a83106114c65760010192915050565b61251c80612d3a83390190565b805b82525050565b602081016114c68284611a4e565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715611aa057611aa0611a64565b6040525050565b6000611ab260405190565b9050611abe8282611a7a565b919050565b600067ffffffffffffffff821115611add57611add611a64565b601f19601f83011660200192915050565b82818337506000910152565b6000611b0d611b0884611ac3565b611aa7565b9050828152838383011115611b2457611b24600080fd5b611b32836020830184611aee565b9392505050565b600082601f830112611b4d57611b4d600080fd5b611b3283833560208501611afa565b60006001600160a01b0382166114c6565b611b7681611b5c565b811461142957600080fd5b80356114c681611b6d565b60008060408385031215611ba257611ba2600080fd5b823567ffffffffffffffff811115611bbc57611bbc600080fd5b611bc885828601611b39565b925050611bd88460208501611b81565b90509250929050565b80611b76565b80356114c681611be1565b600067ffffffffffffffff821115611c0c57611c0c611a64565b5060209081020190565b6000611c24611b0884611bf2565b83815290506020808201908402830185811115611c4357611c43600080fd5b835b81811015611c8257803567ffffffffffffffff811115611c6757611c67600080fd5b611c7388828801611b39565b84525060209283019201611c45565b5050509392505050565b600082601f830112611ca057611ca0600080fd5b611b3283833560208501611c16565b60008083601f840112611cc457611cc4600080fd5b50813567ffffffffffffffff811115611cdf57611cdf600080fd5b602083019150836001820283011115611cfa57611cfa600080fd5b9250929050565b60008060008060008060008060e0898b031215611d2057611d20600080fd5b611d2a8a8a611be7565b9750611d398a60208b01611be7565b9650611d488a60408b01611be7565b9550606089013567ffffffffffffffff811115611d6757611d67600080fd5b611d738b828c01611c8c565b955050608089013567ffffffffffffffff811115611d9357611d93600080fd5b611d9f8b828c01611caf565b9450945050611db18a60a08b01611be7565b9150611dc08a60c08b01611be7565b90509295985092959890939650565b600060208284031215611de457611de4600080fd5b611b328383611be7565b801515611a50565b602081016114c68284611dee565b600060208284031215611e1957611e19600080fd5b813567ffffffffffffffff811115611e3357611e33600080fd5b611e3f84828501611b39565b949350505050565b611a5081611b5c565b602081016114c68284611e47565b600060208284031215611e7357611e73600080fd5b611b328383611b81565b600060808284031215611e9257611e92600080fd5b50919050565b60008083601f840112611ead57611ead600080fd5b50813567ffffffffffffffff811115611ec857611ec8600080fd5b602083019150836020820283011115611cfa57611cfa600080fd5b60008060008060c08587031215611efc57611efc600080fd5b611f068686611e7d565b9350608085013567ffffffffffffffff811115611f2557611f25600080fd5b611f3187828801611e98565b9350935050611f438660a08701611be7565b905092959194509250565b60005b83811015611f69578181015183820152602001611f51565b50506000910152565b6000611f7c825190565b808452602084019350611f93818560208601611f4e565b601f01601f19169290920192915050565b80516000906060840190611fb88582611a4e565b5060208301518482036020860152611fd08282611f72565b91505060408301516118956040860182611a4e565b60408101611ff38285611a4e565b8181036020830152611e3f8184611fa4565b60008060008060006060868803121561202057612020600080fd5b61202a8787611b81565b9450602086013567ffffffffffffffff81111561204957612049600080fd5b61205588828901611caf565b9450945050604086013567ffffffffffffffff81111561207757612077600080fd5b61208388828901611caf565b92509250509295509295909350565b6000611b328383611f72565b60200190565b60006120ae825190565b808452602084019350836020820285016120c88560200190565b60005b848110156120fc57838303885281516120e48482612092565b935050602082016020989098019791506001016120cb565b50909695505050505050565b60208082528101611b3281846120a4565b60408101611ff38285611dee565b60208082528101611b328184611f72565b60006114c66001600160a01b03831661214f565b90565b6001600160a01b031690565b60006114c682612138565b60006114c68261215b565b611a5081612166565b602081016114c68284612171565b600060608284031215611e9257611e92600080fd5b600060208284031215611e9257611e92600080fd5b600080604083850312156121c8576121c8600080fd5b823567ffffffffffffffff8111156121e2576121e2600080fd5b6121ee85828601612188565b925050602083013567ffffffffffffffff81111561220e5761220e600080fd5b61221a8582860161219d565b9150509250929050565b60006020828403121561223957612239600080fd5b813567ffffffffffffffff81111561225357612253600080fd5b611e3f84828501611c8c565b801515611b76565b80356114c68161225f565b600080600080600060a0868803121561228d5761228d600080fd5b6122978787611b81565b94506122a68760208801611b81565b9350604086013567ffffffffffffffff8111156122c5576122c5600080fd5b6122d188828901611b39565b935050606086013567ffffffffffffffff8111156122f1576122f1600080fd5b6122fd88828901611b39565b92505061230d8760808801612267565b90509295509295909350565b6000806020838503121561232f5761232f600080fd5b823567ffffffffffffffff81111561234957612349600080fd5b61235585828601611caf565b92509250509250929050565b600061236b825190565b612379818560208601611f4e565b9290920192915050565b6114c68183612361565b634e487b7160e01b600052602260045260246000fd5b6002810460018216806123b757607f821691505b602082108103611e9257611e9261238d565b60006114c661214c8381565b6123de836123c9565b815460001960089490940293841b1916921b91909117905550565b60006124068184846123d5565b505050565b818110156117895761241e6000826123f9565b60010161240b565b601f821115612406576000818152602090206020601f8501048101602085101561244d5750805b610eee6020601f86010483018261240b565b815167ffffffffffffffff81111561247957612479611a64565b61248382546123a3565b61248e828285612426565b506020601f8211600181146124c357600083156124ab5750848201515b600019600885021c1981166002850217855550610eee565b600084815260208120601f198516915b828110156124f357878501518255602094850194600190920191016124d3565b50848210156125105783870151600019601f87166008021c191681555b50505050600202600101905550565b604080825281016125308185611f72565b9050611b326020830184611e47565b600e8152602081017f496e76616c696420666f726b49440000000000000000000000000000000000008152905061209e565b602080825281016114c68161253f565b600061258b825190565b808452602084019350836020820285016125a58560200190565b60005b848110156120fc57838303885281516125c18482612092565b935050602082016020989098019791506001016125a8565b608081016125e78287611a4e565b6125f46020830186611a4e565b6126016040830185611a4e565b81810360608301526126138184612581565b9695505050505050565b60168152602081017f656e636c6176654944206e6f74206174746573746564000000000000000000008152905061209e565b602080825281016114c68161261d565b634e487b7160e01b600052603260045260246000fd5b60006114c6825190565b6000612689825190565b6020830161269681612675565b9250506020811015611e92576000196020919091036008021b16919050565b604081016126c38285611a4e565b611b326020830184611a4e565b5060006114c66020830183611b81565b5060006114c66020830183611be7565b67ffffffffffffffff8116611b76565b80356114c6816126f0565b5060006114c66020830183612700565b67ffffffffffffffff8116611a50565b61273581806126d0565b61273f8382611e47565b5061274d60208201826126d0565b61275a6020840182611e47565b5061276860408201826126e0565b6127756040840182611a4e565b50612783606082018261270b565b612406606084018261271b565b82818337505050565b81835260208301925060007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8311156127d4576127d4600080fd5b6020830292506127e5838584612790565b50500190565b60c081016127f9828761272b565b818103608083015261280c818587612799565b905061281b60a0830184611a4e565b95945050505050565b608081016114c6828461272b565b60188152602081017f7769746864726177616c20616c7265616479207370656e7400000000000000008152905061209e565b602080825281016114c681612832565b604081016126c38285611e47565b60228152602081017f6e6574776f726b2073656372657420616c726561647920696e697469616c697a81527f6564000000000000000000000000000000000000000000000000000000000000602082015290505b60400190565b602080825281016114c681612882565b60198152602081017f656e636c6176654944206e6f7420612073657175656e636572000000000000008152905061209e565b602080825281016114c6816128ec565b600067ffffffffffffffff82166114c6565b611a508161292e565b602081016114c68284612940565b6000808335601e193685900301811261297257612972600080fd5b8301915050803567ffffffffffffffff81111561299157612991600080fd5b602082019150600181023603821315611cfa57611cfa600080fd5b60238152602081017f726573706f6e64696e67206174746573746572206973206e6f7420617474657381527f7465640000000000000000000000000000000000000000000000000000000000602082015290506128d6565b602080825281016114c6816129ac565b60006114c68260601b90565b60006114c682612a14565b611a50612a3782611b5c565b612a20565b612a468185612a2b565b601401612a538184612a2b565b601401611e3f8183612361565b602c8152602081017f63616c63756c61746564206164647265737320616e642061747465737465724981527f4420646f6e74206d617463680000000000000000000000000000000000000000602082015290506128d6565b602080825281016114c681612a60565b818352602083019250612adc828483611aee565b50601f01601f19160190565b60208082528101611e3f818486612ac8565b600081356114c681611be1565b6000816114c6565b612b1882612b07565b612b2461214c82612b07565b8255505050565b8267ffffffffffffffff811115612b4457612b44611a64565b612b4e82546123a3565b612b59828285612426565b506000601f821160018114612b8e5760008315612b765750848201355b600019600885021c1981166002850217855550612be8565b600084815260209020601f19841690835b82811015612bbf5787850135825560209485019460019092019101612b9f565b5084821015612bdc576000196008601f8716021c19878501351681555b50506001600284020184555b505050505050565b612406838383612b2b565b612c04826123c9565b80612b24565b8180612c1581612afa565b9050612c218184612b0f565b5050612c306020830183612957565b612c3e818360018601612bf0565b50506040820180612c4e82612afa565b9050610d148160028501612bfb565b6117898282612c0a565b634e487b7160e01b600052601160045260246000fd5b818103818111156114c6576114c6612c67565b600060018201612ca257612ca2612c67565b5060010190565b7f19457468657265756d205369676e6564204d6573736167653a0a0000000000008152601a01612cd98184612361565b9050611b328183612361565b634e487b7160e01b600052602160045260246000fd5b60ff8116611a50565b60808101612d128287611a4e565b612d1f6020830186612cfb565b612d2c6040830185611a4e565b61281b6060830184611a4e56fe608060405234801561001057600080fd5b5061001a33610027565b610022610098565b61014a565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100e85760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101475780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6123c3806101596000396000f3fe6080604052600436106100ec5760003560e01c80638da5cb5b1161008a578063b201246f11610059578063b201246f14610311578063b6aed0cb14610331578063e138a8d214610351578063f2fde38b1461037157610160565b80638da5cb5b1461026c5780639730886d146102b157806399a3ad21146102d1578063b1454caa146102f157610160565b8063346633fb116100c6578063346633fb1461020457806336d2da9014610217578063485cc95514610237578063715018a61461025757610160565b80630fcfbd11146101815780630fe9188e146101b757806333a88c72146101d757610160565b36610160576040517f346633fb000000000000000000000000000000000000000000000000000000008152309063346633fb9034906101319033908390600401611141565b6000604051808303818588803b15801561014a57600080fd5b505af115801561015e573d6000803e3d6000fd5b005b60405162461bcd60e51b815260040161017890611190565b60405180910390fd5b34801561018d57600080fd5b506101a161019c3660046111bb565b610391565b6040516101ae91906111f6565b60405180910390f35b3480156101c357600080fd5b5061015e6101d236600461121c565b6103f0565b3480156101e357600080fd5b506101f76101f23660046111bb565b610436565b6040516101ae9190611243565b61015e610212366004611265565b610488565b34801561022357600080fd5b5061015e61023236600461129d565b6105d7565b34801561024357600080fd5b5061015e6102523660046112bc565b610656565b34801561026357600080fd5b5061015e6107c1565b34801561027857600080fd5b507f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b03166040516101ae91906112eb565b3480156102bd57600080fd5b5061015e6102cc3660046112f9565b6107d5565b3480156102dd57600080fd5b5061015e6102ec366004611265565b610941565b6103046102ff3660046113c2565b6109c1565b6040516101ae919061144f565b34801561031d57600080fd5b5061015e61032c3660046114bd565b610ac9565b34801561033d57600080fd5b5061015e61034c366004611528565b610bca565b34801561035d57600080fd5b5061015e61036c366004611548565b610c10565b34801561037d57600080fd5b5061015e61038c36600461129d565b610d5b565b600080826040516020016103a59190611764565b60408051601f198184030181529181528151602092830120600081815292839052912054909150806103e95760405162461bcd60e51b8152600401610178906117b3565b9392505050565b6103f8610db2565b60008181526004602052604081205490036104255760405162461bcd60e51b8152600401610178906117f5565b600090815260046020526040812055565b6000808260405160200161044a9190611764565b60408051601f19818403018152918152815160209283012060008181529283905291205490915080158015906104805750428111155b949350505050565b60003411801561049757508034145b6104b35760405162461bcd60e51b81526004016101789061185d565b60035434906001600160a01b0316156105775760006104d0610e26565b9050803410156104f25760405162461bcd60e51b81526004016101789061189d565b6104fc81346118c3565b6003546040519193506000916001600160a01b039091169083908381818185875af1925050503d806000811461054e576040519150601f19603f3d011682016040523d82523d6000602084013e610553565b606091505b50509050806105745760405162461bcd60e51b81526004016101789061192e565b50505b600061058233610eb7565b9050836001600160a01b0316336001600160a01b03167f50c536ac33a920f00755865b831d17bf4cff0b2e0345f65b16d52bfc004068b684846040516105c992919061193e565b60405180910390a350505050565b6105df610db2565b6000816001600160a01b03164760405160006040518083038185875af1925050503d806000811461062c576040519150601f19603f3d011682016040523d82523d6000602084013e610631565b606091505b50509050806106525760405162461bcd60e51b81526004016101789061198b565b5050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff166000811580156106a15750825b905060008267ffffffffffffffff1660011480156106be5750303b155b9050811580156106cc575080155b15610703576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561073757845468ff00000000000000001916680100000000000000001785555b61074087610f15565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03881617905583156107b857845468ff0000000000000000191685556040517fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906107af906001906119bf565b60405180910390a15b50505050505050565b6107c9610db2565b6107d36000610f26565b565b60006107e26001306119cd565b90506108157f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b0316336001600160a01b0316148061083c5750336001600160a01b038216145b6108585760405162461bcd60e51b815260040161017890611a22565b60006108648342611a32565b90506000846040516020016108799190611764565b60408051601f198184030181529181528151602092830120600081815292839052912054909150156108bd5760405162461bcd60e51b815260040161017890611a9d565b6000818152602081815260408220849055600191906108de9088018861129d565b6001600160a01b03168152602081019190915260400160009081209061090a6080880160608901611aad565b63ffffffff168152602080820192909252604001600090812080546001810182559082529190208691600402016107b88282611eeb565b610949610db2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610996576040519150601f19603f3d011682016040523d82523d6000602084013e61099b565b606091505b50509050806109bc5760405162461bcd60e51b81526004016101789061198b565b505050565b6003546000906001600160a01b031615610a72576109de83610fa4565b3410156109fd5760405162461bcd60e51b815260040161017890611f4d565b6003546040516000916001600160a01b03169034908381818185875af1925050503d8060008114610a4a576040519150601f19603f3d011682016040523d82523d6000602084013e610a4f565b606091505b5050905080610a705760405162461bcd60e51b81526004016101789061192e565b505b610a7b33610eb7565b90507fb93c37389233beb85a3a726c3f15c2d15533ee74cb602f20f490dfffef77593733828888888888604051610ab89796959493929190611f5d565b60405180910390a195945050505050565b6000818152600460205260408120549003610af65760405162461bcd60e51b815260040161017890612018565b600081815260046020526040902054421015610b245760405162461bcd60e51b815260040161017890612064565b600084604051602001610b3791906120e9565b60405160208183030381529060405280519060200120604051602001610b5d9190612129565b604051602081830303815290604052805190602001209050610ba784848484604051602001610b8c9190612148565b60405160208183030381529060405280519060200120611026565b610bc35760405162461bcd60e51b8152600401610178906121b2565b5050505050565b610bd2610db2565b60008281526004602052604090205415610bfe5760405162461bcd60e51b81526004016101789061221a565b60009182526004602052604090912055565b6000818152600460205260408120549003610c3d5760405162461bcd60e51b815260040161017890612018565b600081815260046020526040902054421015610c6b5760405162461bcd60e51b815260040161017890612064565b6000610c7a602086018661129d565b610c8a604087016020880161222a565b610c9a6060880160408901611aad565b610caa6080890160608a01611aad565b610cb760808a018a611c04565b610cc760c08c0160a08d01612249565b604051602001610cdd9796959493929190611f5d565b604051602081830303815290604052805190602001209050600081604051602001610d08919061229a565b604051602081830303815290604052805190602001209050610d3785858584604051602001610b8c9190612148565b610d535760405162461bcd60e51b815260040161017890612302565b505050505050565b610d63610db2565b6001600160a01b038116610da65760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161017891906112eb565b610daf81610f26565b50565b33610de47f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b0316146107d357336040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161017891906112eb565b6003546040517ff1d44d510000000000000000000000000000000000000000000000000000000081526000916001600160a01b03169063f1d44d5190610e719060209060040161231b565b602060405180830381865afa158015610e8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb29190612334565b905090565b6001600160a01b0381166000908152600260205260408120805467ffffffffffffffff169160019190610eea8385612353565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550919050565b610f1d61103e565b610daf816110a5565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300805473ffffffffffffffffffffffffffffffffffffffff1981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b6003546000906001600160a01b031663f1d44d51610fc3601185611a32565b6040518263ffffffff1660e01b8152600401610fdf91906111f6565b602060405180830381865afa158015610ffc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110209190612334565b92915050565b6000826110348686856110ad565b1495945050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff166107d3576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d6361103e565b600081815b848110156110e6576110dc828787848181106110d0576110d0612377565b905060200201356110ef565b91506001016110b2565b50949350505050565b600081831061110b5760008281526020849052604090206103e9565b5060009182526020526040902090565b60006001600160a01b038216611020565b6111358161111b565b82525050565b80611135565b6040810161114f828561112c565b6103e9602083018461113b565b600b8152602081017f756e737570706f72746564000000000000000000000000000000000000000000815290505b60200190565b602080825281016110208161115c565b600060c082840312156111b5576111b5600080fd5b50919050565b6000602082840312156111d0576111d0600080fd5b813567ffffffffffffffff8111156111ea576111ea600080fd5b610480848285016111a0565b60208101611020828461113b565b805b8114610daf57600080fd5b803561102081611204565b60006020828403121561123157611231600080fd5b6103e98383611211565b801515611135565b60208101611020828461123b565b6112068161111b565b803561102081611251565b6000806040838503121561127b5761127b600080fd5b611285848461125a565b91506112948460208501611211565b90509250929050565b6000602082840312156112b2576112b2600080fd5b6103e9838361125a565b600080604083850312156112d2576112d2600080fd5b6112dc848461125a565b9150611294846020850161125a565b60208101611020828461112c565b6000806040838503121561130f5761130f600080fd5b823567ffffffffffffffff81111561132957611329600080fd5b611335858286016111a0565b9250506112948460208501611211565b63ffffffff8116611206565b803561102081611345565b60008083601f84011261137157611371600080fd5b50813567ffffffffffffffff81111561138c5761138c600080fd5b6020830191508360018202830111156113a7576113a7600080fd5b9250929050565b60ff8116611206565b8035611020816113ae565b6000806000806000608086880312156113dd576113dd600080fd5b6113e78787611351565b94506113f68760208801611351565b9350604086013567ffffffffffffffff81111561141557611415600080fd5b6114218882890161135c565b935093505061143387606088016113b7565b90509295509295909350565b67ffffffffffffffff8116611135565b60208101611020828461143f565b6000608082840312156111b5576111b5600080fd5b60008083601f84011261148757611487600080fd5b50813567ffffffffffffffff8111156114a2576114a2600080fd5b6020830191508360208202830111156113a7576113a7600080fd5b60008060008060c085870312156114d6576114d6600080fd5b6114e0868661145d565b9350608085013567ffffffffffffffff8111156114ff576114ff600080fd5b61150b87828801611472565b935093505061151d8660a08701611211565b905092959194509250565b6000806040838503121561153e5761153e600080fd5b6112858484611211565b6000806000806060858703121561156157611561600080fd5b843567ffffffffffffffff81111561157b5761157b600080fd5b611587878288016111a0565b945050602085013567ffffffffffffffff8111156115a7576115a7600080fd5b6115b387828801611472565b935093505061151d8660408701611211565b506000611020602083018361125a565b67ffffffffffffffff8116611206565b8035611020816115d5565b50600061102060208301836115e5565b5060006110206020830183611351565b63ffffffff8116611135565b6000808335601e193685900301811261163757611637600080fd5b830160208101925035905067ffffffffffffffff81111561165a5761165a600080fd5b368190038213156113a7576113a7600080fd5b82818337506000910152565b81835260208301925061168d82848361166d565b50601f01601f19160190565b50600061102060208301836113b7565b60ff8116611135565b600060c083016116c283806115c5565b6116cc858261112c565b506116da60208401846115f0565b6116e7602086018261143f565b506116f56040840184611600565b6117026040860182611610565b506117106060840184611600565b61171d6060860182611610565b5061172b608084018461161c565b858303608087015261173e838284611679565b9250505061174f60a0840184611699565b61175c60a08601826116a9565b509392505050565b602080825281016103e981846116b2565b60218152602081017f54686973206d65737361676520776173206e65766572207375626d69747465648152601760f91b602082015290505b60400190565b6020808252810161102081611775565b601a8152602081017f537461746520726f6f7420646f6573206e6f742065786973742e0000000000008152905061118a565b60208082528101611020816117c3565b60308152602081017f417474656d7074696e6720746f2073656e642076616c756520776974686f757481527f2070726f766964696e6720457468657200000000000000000000000000000000602082015290506117ad565b6020808252810161102081611805565b60208082527f496e73756666696369656e742066756e647320746f2073656e642076616c7565910190815261118a565b602080825281016110208161186d565b634e487b7160e01b600052601160045260246000fd5b81810381811115611020576110206118ad565b60248152602081017f4661696c656420746f2073656e64206665657320746f206665657320636f6e7481527f7261637400000000000000000000000000000000000000000000000000000000602082015290506117ad565b60208082528101611020816118d6565b6040810161194c828561113b565b6103e9602083018461143f565b60148152602081017f6661696c65642073656e64696e672076616c75650000000000000000000000008152905061118a565b6020808252810161102081611959565b6000611020826119a9565b90565b67ffffffffffffffff1690565b6111358161199b565b6020810161102082846119b6565b6001600160a01b03918216919081169082820390811115611020576110206118ad565b60118152602081017f4e6f74206f776e6572206f722073656c660000000000000000000000000000008152905061118a565b60208082528101611020816119f0565b80820180821115611020576110206118ad565b60218152602081017f4d657373616765207375626d6974746564206d6f7265207468616e206f6e636581527f2100000000000000000000000000000000000000000000000000000000000000602082015290506117ad565b6020808252810161102081611a45565b600060208284031215611ac257611ac2600080fd5b6103e98383611351565b6000813561102081611251565b60006001600160a01b03835b81169019929092169190911792915050565b60006110208261111b565b600061102082611af7565b611b1682611b02565b611b21818354611ad9565b8255505050565b60008135611020816115d5565b60007bffffffffffffffff0000000000000000000000000000000000000000611ae58460a01b90565b600061102067ffffffffffffffff83166119a9565b611b7c82611b5e565b611b21818354611b35565b6000813561102081611345565b60007fffffffff00000000000000000000000000000000000000000000000000000000611ae58460e01b90565b600063ffffffff8216611020565b611bd882611bc1565b611b21818354611b94565b600063ffffffff83611ae5565b611bf982611bc1565b611b21818354611be3565b6000808335601e1936859003018112611c1f57611c1f600080fd5b8301915050803567ffffffffffffffff811115611c3e57611c3e600080fd5b6020820191506001810236038213156113a7576113a7600080fd5b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052602260045260246000fd5b600281046001821680611c9957607f821691505b6020821081036111b5576111b5611c6f565b60006110206119a68381565b611cc083611cab565b815460001960089490940293841b1916921b91909117905550565b60006109bc818484611cb7565b8181101561065257611cfb600082611cdb565b600101611ce8565b601f8211156109bc576000818152602090206020601f85010481016020851015611d2a5750805b610bc36020601f860104830182611ce8565b8267ffffffffffffffff811115611d5557611d55611c59565b611d5f8254611c85565b611d6a828285611d03565b506000601f821160018114611d9f5760008315611d875750848201355b600019600885021c1981166002850217855550610d53565b600084815260209020601f19841690835b82811015611dd05787850135825560209485019460019092019101611db0565b5084821015611ded576000196008601f8716021c19878501351681555b5050505060020260010190555050565b6109bc838383611d3c565b60008135611020816113ae565b600060ff8216611020565b611e2982611e15565b815460ff191660ff821617611b21565b808280611e4581611acc565b9050611e518184611b0d565b50506020830180611e6182611b28565b9050611e6d8184611b73565b50506040830180611e7d82611b87565b9050611e898184611bcf565b5050506060820180611e9a82611b87565b9050611ea98160018501611bf0565b5050611eb86080830183611c04565b611ec6818360028601611dfd565b505060a0820180611ed682611e08565b9050611ee58160038501611e20565b50505050565b6106528282611e39565b60258152602081017f496e73756666696369656e742066756e647320746f207075626c697368206d6581527f7373616765000000000000000000000000000000000000000000000000000000602082015290506117ad565b6020808252810161102081611ef5565b60c08101611f6b828a61112c565b611f78602083018961143f565b611f856040830188611610565b611f926060830187611610565b8181036080830152611fa5818587611679565b9050611fb460a08301846116a9565b98975050505050505050565b602a8152602081017f526f6f74206973206e6f74207075626c6973686564206f6e2074686973206d6581527f7373616765206275732e00000000000000000000000000000000000000000000602082015290506117ad565b6020808252810161102081611fc0565b60218152602081017f526f6f74206973206e6f7420636f6e736964657265642066696e616c207965748152601760f91b602082015290506117ad565b6020808252810161102081612028565b5060006110206020830183611211565b61208e81806115c5565b612098838261112c565b506120a660208201826115c5565b6120b3602084018261112c565b506120c16040820182612074565b6120ce604084018261113b565b506120dc60608201826115f0565b6109bc606084018261143f565b608081016110208284612084565b60018152602081017f76000000000000000000000000000000000000000000000000000000000000008152905061118a565b60408082528101612139816120f7565b9050611020602083018461113b565b612152818361113b565b602001919050565b60338152602081017f496e76616c696420696e636c7573696f6e2070726f6f6620666f722076616c7581527f65207472616e73666572206d6573736167652e00000000000000000000000000602082015290506117ad565b602080825281016110208161215a565b60258152602081017f526f6f7420616c726561647920616464656420746f20746865206d657373616781527f6520627573000000000000000000000000000000000000000000000000000000602082015290506117ad565b60208082528101611020816121c2565b60006020828403121561223f5761223f600080fd5b6103e983836115e5565b60006020828403121561225e5761225e600080fd5b6103e983836113b7565b60018152602081017f6d000000000000000000000000000000000000000000000000000000000000008152905061118a565b6040808252810161213981612268565b60308152602081017f496e76616c696420696e636c7573696f6e2070726f6f6620666f722063726f7381527f7320636861696e206d6573736167652e00000000000000000000000000000000602082015290506117ad565b60208082528101611020816122aa565b61113581611cab565b602081016110208284612312565b805161102081611204565b60006020828403121561234957612349600080fd5b6103e98383612329565b67ffffffffffffffff918216919081169082820190811115611020576110206118ad565b634e487b7160e01b600052603260045260246000fdfea26469706673582212205f0c1796be571837ef69dfd77006b06b112da38d22456c6adc83f344d4c840f664736f6c634300081c0033a26469706673582212201d150f5aebfb49733943338f50b01361dc3937c829fe1c72cb6e56ec6de3764e64736f6c634300081c0033", + Bin: "0x6080604052348015600f57600080fd5b50601733601b565b608c565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b61537f8061009b6000396000f3fe608060405234801561001057600080fd5b50600436106101d95760003560e01c80638129fc1c11610104578063a25eb31c116100a2578063db5d91b111610071578063db5d91b114610475578063e34fbfc8146104a1578063e874eb20146104b4578063f2fde38b146104c757600080fd5b8063a25eb31c1461042c578063a4ab2faa1461043f578063a52f433c14610452578063d4fab8871461046257600080fd5b806387059edb116100de57806387059edb146103a95780638da5cb5b146103bc57806398077e86146103ec578063a1a227fa1461040c57600080fd5b80638129fc1c1461035d5780638236a7ba14610365578063841548261461038657600080fd5b8063476657381161017c5780636a30d26c1161014b5780636a30d26c146103255780636b9707d61461033a578063715018a61461034d578063728109961461035557600080fd5b806347665738146102cb5780635371a216146102de578063568699c8146102f157806368e103831461031257600080fd5b80632f0cb9e3116101b85780632f0cb9e3146102255780633e60a22f1461025557806343348b2f14610296578063440c953b146102c257600080fd5b80620ddd27146101de57806303e72e48146101fd578063073b6ef314610212575b600080fd5b6101e7600e5481565b6040516101f49190611a56565b60405180910390f35b61021061020b366004611b8c565b6104da565b005b610210610220366004611d01565b6105e2565b610248610233366004611dcf565b600c6020526000908152604090205460ff1681565b6040516101f49190611df6565b610289610263366004611e04565b80516020818301810180516003825292820191909301209152546001600160a01b031681565b6040516101f49190611e50565b6102486102a4366004611e5e565b6001600160a01b031660009081526020819052604090205460ff1690565b6101e760055481565b6102106102d9366004611e5e565b6107d9565b6102106102ec366004611ee3565b610879565b6103046102ff366004611dcf565b610a1e565b6040516101f4929190611fe5565b610210610320366004612005565b610a74565b61032d610b18565b6040516101f49190612108565b610210610348366004611e5e565b610bf1565b610210610c81565b610210610c95565b610210610d1a565b610378610373366004611dcf565b610ef5565b6040516101f4929190612119565b610248610394366004611dcf565b600d6020526000908152604090205460ff1681565b6103786103b7366004611dcf565b610fdd565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b0316610289565b6103ff6103fa366004611dcf565b611054565b6040516101f49190612127565b600a5461041f906001600160a01b031681565b6040516101f4919061217a565b61021061043a3660046121b2565b611100565b61024861044d366004612224565b611208565b600454610100900460ff16610248565b610210610470366004612272565b611286565b610248610483366004611e5e565b6001600160a01b031660009081526001602052604090205460ff1690565b6102106104af366004612319565b61138e565b600b5461041f906001600160a01b031681565b6102106104d5366004611e5e565b6113d5565b6104e261142c565b60006001600160a01b03166003836040516104fd9190612383565b908152604051908190036020019020546001600160a01b03160361055957600280546001810182556000919091527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01610557838261245f565b505b8060038360405161056a9190612383565b90815260405190819003602001812080546001600160a01b039390931673ffffffffffffffffffffffffffffffffffffffff19909316929092179091557f17b2f9f5748931099ffee882b5b64f4a560b5c55da9b4f4e396dae3bb9f98cb5906105d6908490849061251f565b60405180910390a15050565b60008281526008602052604090205481146106185760405162461bcd60e51b815260040161060f90612571565b60405180910390fd5b60006106868989898960405160200161063494939291906125d9565b6040516020818303038152906040528051906020012086868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506114a092505050565b6001600160a01b03811660009081526020819052604090205490915060ff166106c15760405162461bcd60e51b815260040161060f9061264f565b600e8990556000805b87518110156107b457600b5488516001600160a01b039091169063b6aed0cb908a90849081106106fc576106fc61265f565b602002602001015161070d9061267f565b426040518363ffffffff1660e01b815260040161072b9291906126b5565b600060405180830381600087803b15801561074557600080fd5b505af1158015610759573d6000803e3d6000fd5b50505050818882815181106107705761077061265f565b60200260200101516107819061267f565b6040516020016107929291906126b5565b60408051601f19818403018152919052805160209091012091506001016106ca565b506000908152600d60205260409020805460ff19166001179055505050505050505050565b6107e161142c565b6001600160a01b03811660009081526020819052604090205460ff166108195760405162461bcd60e51b815260040161060f9061264f565b6001600160a01b038116600090815260016020819052604091829020805460ff19169091179055517ffe64c7181f0fc60e300dc02cca368cdfa94d7ca45902de3b9a9d80070e7609369061086e908390611e50565b60405180910390a150565b600b546040517fb201246f0000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063b201246f906108c89087908790879087906004016127eb565b60006040518083038186803b1580156108e057600080fd5b505afa1580156108f4573d6000803e3d6000fd5b5050505060008460405160200161090b9190612824565b60408051601f1981840301815291815281516020928301206000818152600c90935291205490915060ff16156109535760405162461bcd60e51b815260040161060f90612864565b6001600c60008760405160200161096a9190612824565b60408051808303601f190181529181528151602092830120835282820193909352908201600020805460ff191693151593909317909255600a546001600160a01b0316916399a3ad21916109c391908901908901611e5e565b87604001356040518363ffffffff1660e01b81526004016109e5929190612874565b600060405180830381600087803b1580156109ff57600080fd5b505af1158015610a13573d6000803e3d6000fd5b505050505050505050565b604080516060808201835260008083526020830191909152918101829052600080610a4885610fdd565b9150915081610a5d5760009590945092505050565b600094855260086020526040909420549492505050565b60045460ff1615610a975760405162461bcd60e51b815260040161060f906128dc565b60048054600160ff1991821681179092556001600160a01b0387166000908152602081815260408083208054851686179055908490529081902080549092169092179055517ffe64c7181f0fc60e300dc02cca368cdfa94d7ca45902de3b9a9d80070e76093690610b09908790611e50565b60405180910390a15050505050565b60606002805480602002602001604051908101604052809291908181526020016000905b82821015610be8578382906000526020600020018054610b5b906123a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b87906123a3565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b505050505081526020019060010190610b3c565b50505050905090565b610bf961142c565b6001600160a01b03811660009081526001602052604090205460ff16610c315760405162461bcd60e51b815260040161060f9061291e565b6001600160a01b03811660009081526001602052604090819020805460ff19169055517f0f279980343c7ca542fde9fa5396555068efb5cd560d9cf9c191aa2911079b479061086e908390611e50565b610c8961142c565b610c9360006114cc565b565b610c9d61142c565b600a546040517f36d2da900000000000000000000000000000000000000000000000000000000081526001600160a01b03909116906336d2da9090610ce6903390600401611e50565b600060405180830381600087803b158015610d0057600080fd5b505af1158015610d14573d6000803e3d6000fd5b50505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff16600081158015610d655750825b905060008267ffffffffffffffff166001148015610d825750303b155b905081158015610d90575080155b15610dc7576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610dfb57845468ff00000000000000001916680100000000000000001785555b610e043361154a565b60006005556001600955604051610e1a90611a41565b604051809103906000f080158015610e36573d6000803e3d6000fd5b50600b80546001600160a01b039290921673ffffffffffffffffffffffffffffffffffffffff199283168117909155600a805490921681179091556040517fbd726cf82ac9c3260b1495107182e336e0654b25c10915648c0cc15b2bb72cbf91610e9f91611e50565b60405180910390a18315610eee57845468ff0000000000000000191685556040517fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290610b0990600190612949565b5050505050565b604080516060808201835260008083526020808401839052838501829052858252600681528482208551938401909552845483526001850180549295869493909284019190610f43906123a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6f906123a3565b8015610fbc5780601f10610f9157610100808354040283529160200191610fbc565b820191906000526020600020905b815481529060010190602001808311610f9f57829003601f168201915b50505091835250506002919091015460209091015280519094149492505050565b6040805160608082018352600080835260208301919091529181018290526000838152600760205260408120549081900361104157505060408051606081018252600080825282516020818101855282825283015291810182905290939092509050565b61104a81610ef5565b9250925050915091565b6002818154811061106457600080fd5b90600052602060002001600091509050805461107f906123a3565b80601f01602080910402602001604051908101604052809291908181526020018280546110ab906123a3565b80156110f85780601f106110cd576101008083540402835291602001916110f8565b820191906000526020600020905b8154815290600101906020018083116110db57829003601f168201915b505050505081565b600061114e83356111146020860186612957565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506114a092505050565b6001600160a01b03811660009081526020819052604090205490915060ff166111895760405162461bcd60e51b815260040161060f9061264f565b6001600160a01b03811660009081526001602052604090205460ff166111c15760405162461bcd60e51b815260040161060f9061291e565b6111ca8361155b565b6040517fd6555bff8670bd3008dc064c30bb56d6ac7cb14ae801e36146fe4e7c6a504a58906111fb90853590611a56565b60405180910390a1505050565b600080805b835181101561126d57818482815181106112295761122961265f565b602002602001015161123a9061267f565b60405160200161124b9291906126b5565b60408051601f198184030181529190528051602090910120915060010161120d565b506000908152600d602052604090205460ff1692915050565b6001600160a01b03851660009081526020819052604090205460ff16806112bf5760405162461bcd60e51b815260040161060f90612a04565b81156113375760006112f38787866040516020016112df93929190612a3c565b6040516020818303038152906040526115ff565b9050600061130182876114a0565b9050876001600160a01b0316816001600160a01b0316146113345760405162461bcd60e51b815260040161060f90612ab8565b50505b6001600160a01b03808616600081815260208190526040808220805460ff191660011790555191928916917fb869e23ebc7c717d76e345eee8ec282612603e45c44f7ae5494b197c8d9d1be19190a3505050505050565b336001600160a01b03167f0b0ecdedd12079aa2d6c5e0186026c711cb0c8d04f1b724ba5880fb6328d430183836040516113c9929190612ae8565b60405180910390a25050565b6113dd61142c565b6001600160a01b0381166114205760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161060f9190611e50565b611429816114cc565b50565b3361145e7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b031614610c9357336040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161060f9190611e50565b6000806000806114b0868661163a565b9250925092506114c08282611687565b50909150505b92915050565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300805473ffffffffffffffffffffffffffffffffffffffff1981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b61155261178d565b611429816117f4565b8035600090815260066020526040902081906115778282612c5d565b5050600954600090815260076020526040902081359081905561159b600143612c7d565b406040516020016115ad9291906126b5565b60408051601f1981840301815291815281516020928301206009805460009081526008909452918320558054916115e383612c90565b9190505550600554816040013511156114295760400135600555565b600061160b82516117fc565b8260405160200161161d929190612ca9565b604051602081830303815290604052805190602001209050919050565b600080600083516041036116745760208401516040850151606086015160001a6116668882858561189d565b955095509550505050611680565b50508151600091506002905b9250925092565b600082600381111561169b5761169b612ce5565b036116a4575050565b60018260038111156116b8576116b8612ce5565b036116ef576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600282600381111561170357611703612ce5565b0361173c576040517ffce698f700000000000000000000000000000000000000000000000000000000815261060f908290600401611a56565b600382600381111561175057611750612ce5565b0361178957806040517fd78bce0c00000000000000000000000000000000000000000000000000000000815260040161060f9190611a56565b5050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16610c93576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113dd61178d565b606060006118098361195f565b600101905060008167ffffffffffffffff81111561182957611829611a64565b6040519080825280601f01601f191660200182016040528015611853576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461185d575b509392505050565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411156118d85750600091506003905082611955565b6000600188888888604051600081526020016040526040516118fd9493929190612d04565b6020604051602081039080840390855afa15801561191f573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661194b57506000925060019150829050611955565b9250600091508190505b9450945094915050565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106119a8577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106119d4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106119f257662386f26fc10000830492506010015b6305f5e1008310611a0a576305f5e100830492506008015b6127108310611a1e57612710830492506004015b60648310611a30576064830492506002015b600a83106114c65760010192915050565b61261080612d3a83390190565b805b82525050565b602081016114c68284611a4e565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715611aa057611aa0611a64565b6040525050565b6000611ab260405190565b9050611abe8282611a7a565b919050565b600067ffffffffffffffff821115611add57611add611a64565b601f19601f83011660200192915050565b82818337506000910152565b6000611b0d611b0884611ac3565b611aa7565b9050828152838383011115611b2457611b24600080fd5b611b32836020830184611aee565b9392505050565b600082601f830112611b4d57611b4d600080fd5b611b3283833560208501611afa565b60006001600160a01b0382166114c6565b611b7681611b5c565b811461142957600080fd5b80356114c681611b6d565b60008060408385031215611ba257611ba2600080fd5b823567ffffffffffffffff811115611bbc57611bbc600080fd5b611bc885828601611b39565b925050611bd88460208501611b81565b90509250929050565b80611b76565b80356114c681611be1565b600067ffffffffffffffff821115611c0c57611c0c611a64565b5060209081020190565b6000611c24611b0884611bf2565b83815290506020808201908402830185811115611c4357611c43600080fd5b835b81811015611c8257803567ffffffffffffffff811115611c6757611c67600080fd5b611c7388828801611b39565b84525060209283019201611c45565b5050509392505050565b600082601f830112611ca057611ca0600080fd5b611b3283833560208501611c16565b60008083601f840112611cc457611cc4600080fd5b50813567ffffffffffffffff811115611cdf57611cdf600080fd5b602083019150836001820283011115611cfa57611cfa600080fd5b9250929050565b60008060008060008060008060e0898b031215611d2057611d20600080fd5b611d2a8a8a611be7565b9750611d398a60208b01611be7565b9650611d488a60408b01611be7565b9550606089013567ffffffffffffffff811115611d6757611d67600080fd5b611d738b828c01611c8c565b955050608089013567ffffffffffffffff811115611d9357611d93600080fd5b611d9f8b828c01611caf565b9450945050611db18a60a08b01611be7565b9150611dc08a60c08b01611be7565b90509295985092959890939650565b600060208284031215611de457611de4600080fd5b611b328383611be7565b801515611a50565b602081016114c68284611dee565b600060208284031215611e1957611e19600080fd5b813567ffffffffffffffff811115611e3357611e33600080fd5b611e3f84828501611b39565b949350505050565b611a5081611b5c565b602081016114c68284611e47565b600060208284031215611e7357611e73600080fd5b611b328383611b81565b600060808284031215611e9257611e92600080fd5b50919050565b60008083601f840112611ead57611ead600080fd5b50813567ffffffffffffffff811115611ec857611ec8600080fd5b602083019150836020820283011115611cfa57611cfa600080fd5b60008060008060c08587031215611efc57611efc600080fd5b611f068686611e7d565b9350608085013567ffffffffffffffff811115611f2557611f25600080fd5b611f3187828801611e98565b9350935050611f438660a08701611be7565b905092959194509250565b60005b83811015611f69578181015183820152602001611f51565b50506000910152565b6000611f7c825190565b808452602084019350611f93818560208601611f4e565b601f01601f19169290920192915050565b80516000906060840190611fb88582611a4e565b5060208301518482036020860152611fd08282611f72565b91505060408301516118956040860182611a4e565b60408101611ff38285611a4e565b8181036020830152611e3f8184611fa4565b60008060008060006060868803121561202057612020600080fd5b61202a8787611b81565b9450602086013567ffffffffffffffff81111561204957612049600080fd5b61205588828901611caf565b9450945050604086013567ffffffffffffffff81111561207757612077600080fd5b61208388828901611caf565b92509250509295509295909350565b6000611b328383611f72565b60200190565b60006120ae825190565b808452602084019350836020820285016120c88560200190565b60005b848110156120fc57838303885281516120e48482612092565b935050602082016020989098019791506001016120cb565b50909695505050505050565b60208082528101611b3281846120a4565b60408101611ff38285611dee565b60208082528101611b328184611f72565b60006114c66001600160a01b03831661214f565b90565b6001600160a01b031690565b60006114c682612138565b60006114c68261215b565b611a5081612166565b602081016114c68284612171565b600060608284031215611e9257611e92600080fd5b600060208284031215611e9257611e92600080fd5b600080604083850312156121c8576121c8600080fd5b823567ffffffffffffffff8111156121e2576121e2600080fd5b6121ee85828601612188565b925050602083013567ffffffffffffffff81111561220e5761220e600080fd5b61221a8582860161219d565b9150509250929050565b60006020828403121561223957612239600080fd5b813567ffffffffffffffff81111561225357612253600080fd5b611e3f84828501611c8c565b801515611b76565b80356114c68161225f565b600080600080600060a0868803121561228d5761228d600080fd5b6122978787611b81565b94506122a68760208801611b81565b9350604086013567ffffffffffffffff8111156122c5576122c5600080fd5b6122d188828901611b39565b935050606086013567ffffffffffffffff8111156122f1576122f1600080fd5b6122fd88828901611b39565b92505061230d8760808801612267565b90509295509295909350565b6000806020838503121561232f5761232f600080fd5b823567ffffffffffffffff81111561234957612349600080fd5b61235585828601611caf565b92509250509250929050565b600061236b825190565b612379818560208601611f4e565b9290920192915050565b6114c68183612361565b634e487b7160e01b600052602260045260246000fd5b6002810460018216806123b757607f821691505b602082108103611e9257611e9261238d565b60006114c661214c8381565b6123de836123c9565b815460001960089490940293841b1916921b91909117905550565b60006124068184846123d5565b505050565b818110156117895761241e6000826123f9565b60010161240b565b601f821115612406576000818152602090206020601f8501048101602085101561244d5750805b610eee6020601f86010483018261240b565b815167ffffffffffffffff81111561247957612479611a64565b61248382546123a3565b61248e828285612426565b506020601f8211600181146124c357600083156124ab5750848201515b600019600885021c1981166002850217855550610eee565b600084815260208120601f198516915b828110156124f357878501518255602094850194600190920191016124d3565b50848210156125105783870151600019601f87166008021c191681555b50505050600202600101905550565b604080825281016125308185611f72565b9050611b326020830184611e47565b600e8152602081017f496e76616c696420666f726b49440000000000000000000000000000000000008152905061209e565b602080825281016114c68161253f565b600061258b825190565b808452602084019350836020820285016125a58560200190565b60005b848110156120fc57838303885281516125c18482612092565b935050602082016020989098019791506001016125a8565b608081016125e78287611a4e565b6125f46020830186611a4e565b6126016040830185611a4e565b81810360608301526126138184612581565b9695505050505050565b60168152602081017f656e636c6176654944206e6f74206174746573746564000000000000000000008152905061209e565b602080825281016114c68161261d565b634e487b7160e01b600052603260045260246000fd5b60006114c6825190565b6000612689825190565b6020830161269681612675565b9250506020811015611e92576000196020919091036008021b16919050565b604081016126c38285611a4e565b611b326020830184611a4e565b5060006114c66020830183611b81565b5060006114c66020830183611be7565b67ffffffffffffffff8116611b76565b80356114c6816126f0565b5060006114c66020830183612700565b67ffffffffffffffff8116611a50565b61273581806126d0565b61273f8382611e47565b5061274d60208201826126d0565b61275a6020840182611e47565b5061276860408201826126e0565b6127756040840182611a4e565b50612783606082018261270b565b612406606084018261271b565b82818337505050565b81835260208301925060007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8311156127d4576127d4600080fd5b6020830292506127e5838584612790565b50500190565b60c081016127f9828761272b565b818103608083015261280c818587612799565b905061281b60a0830184611a4e565b95945050505050565b608081016114c6828461272b565b60188152602081017f7769746864726177616c20616c7265616479207370656e7400000000000000008152905061209e565b602080825281016114c681612832565b604081016126c38285611e47565b60228152602081017f6e6574776f726b2073656372657420616c726561647920696e697469616c697a81527f6564000000000000000000000000000000000000000000000000000000000000602082015290505b60400190565b602080825281016114c681612882565b60198152602081017f656e636c6176654944206e6f7420612073657175656e636572000000000000008152905061209e565b602080825281016114c6816128ec565b600067ffffffffffffffff82166114c6565b611a508161292e565b602081016114c68284612940565b6000808335601e193685900301811261297257612972600080fd5b8301915050803567ffffffffffffffff81111561299157612991600080fd5b602082019150600181023603821315611cfa57611cfa600080fd5b60238152602081017f726573706f6e64696e67206174746573746572206973206e6f7420617474657381527f7465640000000000000000000000000000000000000000000000000000000000602082015290506128d6565b602080825281016114c6816129ac565b60006114c68260601b90565b60006114c682612a14565b611a50612a3782611b5c565b612a20565b612a468185612a2b565b601401612a538184612a2b565b601401611e3f8183612361565b602c8152602081017f63616c63756c61746564206164647265737320616e642061747465737465724981527f4420646f6e74206d617463680000000000000000000000000000000000000000602082015290506128d6565b602080825281016114c681612a60565b818352602083019250612adc828483611aee565b50601f01601f19160190565b60208082528101611e3f818486612ac8565b600081356114c681611be1565b6000816114c6565b612b1882612b07565b612b2461214c82612b07565b8255505050565b8267ffffffffffffffff811115612b4457612b44611a64565b612b4e82546123a3565b612b59828285612426565b506000601f821160018114612b8e5760008315612b765750848201355b600019600885021c1981166002850217855550612be8565b600084815260209020601f19841690835b82811015612bbf5787850135825560209485019460019092019101612b9f565b5084821015612bdc576000196008601f8716021c19878501351681555b50506001600284020184555b505050505050565b612406838383612b2b565b612c04826123c9565b80612b24565b8180612c1581612afa565b9050612c218184612b0f565b5050612c306020830183612957565b612c3e818360018601612bf0565b50506040820180612c4e82612afa565b9050610d148160028501612bfb565b6117898282612c0a565b634e487b7160e01b600052601160045260246000fd5b818103818111156114c6576114c6612c67565b600060018201612ca257612ca2612c67565b5060010190565b7f19457468657265756d205369676e6564204d6573736167653a0a0000000000008152601a01612cd98184612361565b9050611b328183612361565b634e487b7160e01b600052602160045260246000fd5b60ff8116611a50565b60808101612d128287611a4e565b612d1f6020830186612cfb565b612d2c6040830185611a4e565b61281b6060830184611a4e56fe608060405234801561001057600080fd5b5061001a33610027565b610022610098565b61014a565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156100e85760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146101475780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6124b7806101596000396000f3fe6080604052600436106100f75760003560e01c80639730886d1161008a578063b201246f11610059578063b201246f1461033c578063b6aed0cb1461035c578063e138a8d21461037c578063f2fde38b1461039c5761016b565b80639730886d146102bc57806399a3ad21146102dc578063ab53bddc146102fc578063b1454caa1461031c5761016b565b806336d2da90116100c657806336d2da9014610222578063485cc95514610242578063715018a6146102625780638da5cb5b146102775761016b565b80630fcfbd111461018c5780630fe9188e146101c257806333a88c72146101e2578063346633fb1461020f5761016b565b3661016b576040517f346633fb000000000000000000000000000000000000000000000000000000008152309063346633fb90349061013c9033908390600401611235565b6000604051808303818588803b15801561015557600080fd5b505af1158015610169573d6000803e3d6000fd5b005b60405162461bcd60e51b815260040161018390611284565b60405180910390fd5b34801561019857600080fd5b506101ac6101a73660046112af565b6103bc565b6040516101b991906112ea565b60405180910390f35b3480156101ce57600080fd5b506101696101dd366004611310565b61041b565b3480156101ee57600080fd5b506102026101fd3660046112af565b610461565b6040516101b99190611337565b61016961021d366004611359565b6104b3565b34801561022e57600080fd5b5061016961023d366004611391565b610602565b34801561024e57600080fd5b5061016961025d3660046113b0565b610681565b34801561026e57600080fd5b506101696107ec565b34801561028357600080fd5b507f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b03166040516101b991906113df565b3480156102c857600080fd5b506101696102d73660046113ed565b610800565b3480156102e857600080fd5b506101696102f7366004611359565b61096c565b34801561030857600080fd5b50610169610317366004611359565b6109ec565b61032f61032a3660046114b6565b610ab5565b6040516101b99190611543565b34801561034857600080fd5b506101696103573660046115b1565b610bbd565b34801561036857600080fd5b5061016961037736600461161c565b610cbe565b34801561038857600080fd5b5061016961039736600461163c565b610d04565b3480156103a857600080fd5b506101696103b7366004611391565b610e4f565b600080826040516020016103d09190611858565b60408051601f198184030181529181528151602092830120600081815292839052912054909150806104145760405162461bcd60e51b8152600401610183906118a7565b9392505050565b610423610ea6565b60008181526004602052604081205490036104505760405162461bcd60e51b8152600401610183906118e9565b600090815260046020526040812055565b600080826040516020016104759190611858565b60408051601f19818403018152918152815160209283012060008181529283905291205490915080158015906104ab5750428111155b949350505050565b6000341180156104c257508034145b6104de5760405162461bcd60e51b815260040161018390611951565b60035434906001600160a01b0316156105a25760006104fb610f1a565b90508034101561051d5760405162461bcd60e51b815260040161018390611991565b61052781346119b7565b6003546040519193506000916001600160a01b039091169083908381818185875af1925050503d8060008114610579576040519150601f19603f3d011682016040523d82523d6000602084013e61057e565b606091505b505090508061059f5760405162461bcd60e51b815260040161018390611a22565b50505b60006105ad33610fab565b9050836001600160a01b0316336001600160a01b03167f50c536ac33a920f00755865b831d17bf4cff0b2e0345f65b16d52bfc004068b684846040516105f4929190611a32565b60405180910390a350505050565b61060a610ea6565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610657576040519150601f19603f3d011682016040523d82523d6000602084013e61065c565b606091505b505090508061067d5760405162461bcd60e51b815260040161018390611a7f565b5050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff166000811580156106cc5750825b905060008267ffffffffffffffff1660011480156106e95750303b155b9050811580156106f7575080155b1561072e576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561076257845468ff00000000000000001916680100000000000000001785555b61076b87611009565b6003805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03881617905583156107e357845468ff0000000000000000191685556040517fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906107da90600190611ab3565b60405180910390a15b50505050505050565b6107f4610ea6565b6107fe600061101a565b565b600061080d600130611ac1565b90506108407f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b0316336001600160a01b031614806108675750336001600160a01b038216145b6108835760405162461bcd60e51b815260040161018390611b16565b600061088f8342611b26565b90506000846040516020016108a49190611858565b60408051601f198184030181529181528151602092830120600081815292839052912054909150156108e85760405162461bcd60e51b815260040161018390611b91565b60008181526020818152604082208490556001919061090990880188611391565b6001600160a01b0316815260208101919091526040016000908120906109356080880160608901611ba1565b63ffffffff168152602080820192909252604001600090812080546001810182559082529190208691600402016107e38282611fdf565b610974610ea6565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146109c1576040519150601f19603f3d011682016040523d82523d6000602084013e6109c6565b606091505b50509050806109e75760405162461bcd60e51b815260040161018390611a7f565b505050565b60006109f9600130611ac1565b9050610a2c7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b0316336001600160a01b03161480610a535750336001600160a01b038216145b610a6f5760405162461bcd60e51b815260040161018390611b16565b826001600160a01b03167fcd9850463422a7449c406a036e35e5edb6fbe35a64c9f12a2354be98a750c0d383604051610aa891906112ea565b60405180910390a2505050565b6003546000906001600160a01b031615610b6657610ad283611098565b341015610af15760405162461bcd60e51b815260040161018390612041565b6003546040516000916001600160a01b03169034908381818185875af1925050503d8060008114610b3e576040519150601f19603f3d011682016040523d82523d6000602084013e610b43565b606091505b5050905080610b645760405162461bcd60e51b815260040161018390611a22565b505b610b6f33610fab565b90507fb93c37389233beb85a3a726c3f15c2d15533ee74cb602f20f490dfffef77593733828888888888604051610bac9796959493929190612051565b60405180910390a195945050505050565b6000818152600460205260408120549003610bea5760405162461bcd60e51b81526004016101839061210c565b600081815260046020526040902054421015610c185760405162461bcd60e51b815260040161018390612158565b600084604051602001610c2b91906121dd565b60405160208183030381529060405280519060200120604051602001610c51919061221d565b604051602081830303815290604052805190602001209050610c9b84848484604051602001610c80919061223c565b6040516020818303038152906040528051906020012061111a565b610cb75760405162461bcd60e51b8152600401610183906122a6565b5050505050565b610cc6610ea6565b60008281526004602052604090205415610cf25760405162461bcd60e51b81526004016101839061230e565b60009182526004602052604090912055565b6000818152600460205260408120549003610d315760405162461bcd60e51b81526004016101839061210c565b600081815260046020526040902054421015610d5f5760405162461bcd60e51b815260040161018390612158565b6000610d6e6020860186611391565b610d7e604087016020880161231e565b610d8e6060880160408901611ba1565b610d9e6080890160608a01611ba1565b610dab60808a018a611cf8565b610dbb60c08c0160a08d0161233d565b604051602001610dd19796959493929190612051565b604051602081830303815290604052805190602001209050600081604051602001610dfc919061238e565b604051602081830303815290604052805190602001209050610e2b85858584604051602001610c80919061223c565b610e475760405162461bcd60e51b8152600401610183906123f6565b505050505050565b610e57610ea6565b6001600160a01b038116610e9a5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161018391906113df565b610ea38161101a565b50565b33610ed87f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b0316146107fe57336040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161018391906113df565b6003546040517ff1d44d510000000000000000000000000000000000000000000000000000000081526000916001600160a01b03169063f1d44d5190610f659060209060040161240f565b602060405180830381865afa158015610f82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa69190612428565b905090565b6001600160a01b0381166000908152600260205260408120805467ffffffffffffffff169160019190610fde8385612447565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550919050565b611011611132565b610ea381611199565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300805473ffffffffffffffffffffffffffffffffffffffff1981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b6003546000906001600160a01b031663f1d44d516110b7601185611b26565b6040518263ffffffff1660e01b81526004016110d391906112ea565b602060405180830381865afa1580156110f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111149190612428565b92915050565b6000826111288686856111a1565b1495945050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff166107fe576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e57611132565b600081815b848110156111da576111d0828787848181106111c4576111c461246b565b905060200201356111e3565b91506001016111a6565b50949350505050565b60008183106111ff576000828152602084905260409020610414565b5060009182526020526040902090565b60006001600160a01b038216611114565b6112298161120f565b82525050565b80611229565b604081016112438285611220565b610414602083018461122f565b600b8152602081017f756e737570706f72746564000000000000000000000000000000000000000000815290505b60200190565b6020808252810161111481611250565b600060c082840312156112a9576112a9600080fd5b50919050565b6000602082840312156112c4576112c4600080fd5b813567ffffffffffffffff8111156112de576112de600080fd5b6104ab84828501611294565b60208101611114828461122f565b805b8114610ea357600080fd5b8035611114816112f8565b60006020828403121561132557611325600080fd5b6104148383611305565b801515611229565b60208101611114828461132f565b6112fa8161120f565b803561111481611345565b6000806040838503121561136f5761136f600080fd5b611379848461134e565b91506113888460208501611305565b90509250929050565b6000602082840312156113a6576113a6600080fd5b610414838361134e565b600080604083850312156113c6576113c6600080fd5b6113d0848461134e565b9150611388846020850161134e565b602081016111148284611220565b6000806040838503121561140357611403600080fd5b823567ffffffffffffffff81111561141d5761141d600080fd5b61142985828601611294565b9250506113888460208501611305565b63ffffffff81166112fa565b803561111481611439565b60008083601f84011261146557611465600080fd5b50813567ffffffffffffffff81111561148057611480600080fd5b60208301915083600182028301111561149b5761149b600080fd5b9250929050565b60ff81166112fa565b8035611114816114a2565b6000806000806000608086880312156114d1576114d1600080fd5b6114db8787611445565b94506114ea8760208801611445565b9350604086013567ffffffffffffffff81111561150957611509600080fd5b61151588828901611450565b935093505061152787606088016114ab565b90509295509295909350565b67ffffffffffffffff8116611229565b602081016111148284611533565b6000608082840312156112a9576112a9600080fd5b60008083601f84011261157b5761157b600080fd5b50813567ffffffffffffffff81111561159657611596600080fd5b60208301915083602082028301111561149b5761149b600080fd5b60008060008060c085870312156115ca576115ca600080fd5b6115d48686611551565b9350608085013567ffffffffffffffff8111156115f3576115f3600080fd5b6115ff87828801611566565b93509350506116118660a08701611305565b905092959194509250565b6000806040838503121561163257611632600080fd5b6113798484611305565b6000806000806060858703121561165557611655600080fd5b843567ffffffffffffffff81111561166f5761166f600080fd5b61167b87828801611294565b945050602085013567ffffffffffffffff81111561169b5761169b600080fd5b6116a787828801611566565b93509350506116118660408701611305565b506000611114602083018361134e565b67ffffffffffffffff81166112fa565b8035611114816116c9565b50600061111460208301836116d9565b5060006111146020830183611445565b63ffffffff8116611229565b6000808335601e193685900301811261172b5761172b600080fd5b830160208101925035905067ffffffffffffffff81111561174e5761174e600080fd5b3681900382131561149b5761149b600080fd5b82818337506000910152565b818352602083019250611781828483611761565b50601f01601f19160190565b50600061111460208301836114ab565b60ff8116611229565b600060c083016117b683806116b9565b6117c08582611220565b506117ce60208401846116e4565b6117db6020860182611533565b506117e960408401846116f4565b6117f66040860182611704565b5061180460608401846116f4565b6118116060860182611704565b5061181f6080840184611710565b858303608087015261183283828461176d565b9250505061184360a084018461178d565b61185060a086018261179d565b509392505050565b6020808252810161041481846117a6565b60218152602081017f54686973206d65737361676520776173206e65766572207375626d69747465648152601760f91b602082015290505b60400190565b6020808252810161111481611869565b601a8152602081017f537461746520726f6f7420646f6573206e6f742065786973742e0000000000008152905061127e565b60208082528101611114816118b7565b60308152602081017f417474656d7074696e6720746f2073656e642076616c756520776974686f757481527f2070726f766964696e6720457468657200000000000000000000000000000000602082015290506118a1565b60208082528101611114816118f9565b60208082527f496e73756666696369656e742066756e647320746f2073656e642076616c7565910190815261127e565b6020808252810161111481611961565b634e487b7160e01b600052601160045260246000fd5b81810381811115611114576111146119a1565b60248152602081017f4661696c656420746f2073656e64206665657320746f206665657320636f6e7481527f7261637400000000000000000000000000000000000000000000000000000000602082015290506118a1565b60208082528101611114816119ca565b60408101611a40828561122f565b6104146020830184611533565b60148152602081017f6661696c65642073656e64696e672076616c75650000000000000000000000008152905061127e565b6020808252810161111481611a4d565b600061111482611a9d565b90565b67ffffffffffffffff1690565b61122981611a8f565b602081016111148284611aaa565b6001600160a01b03918216919081169082820390811115611114576111146119a1565b60118152602081017f4e6f74206f776e6572206f722073656c660000000000000000000000000000008152905061127e565b6020808252810161111481611ae4565b80820180821115611114576111146119a1565b60218152602081017f4d657373616765207375626d6974746564206d6f7265207468616e206f6e636581527f2100000000000000000000000000000000000000000000000000000000000000602082015290506118a1565b6020808252810161111481611b39565b600060208284031215611bb657611bb6600080fd5b6104148383611445565b6000813561111481611345565b60006001600160a01b03835b81169019929092169190911792915050565b60006111148261120f565b600061111482611beb565b611c0a82611bf6565b611c15818354611bcd565b8255505050565b60008135611114816116c9565b60007bffffffffffffffff0000000000000000000000000000000000000000611bd98460a01b90565b600061111467ffffffffffffffff8316611a9d565b611c7082611c52565b611c15818354611c29565b6000813561111481611439565b60007fffffffff00000000000000000000000000000000000000000000000000000000611bd98460e01b90565b600063ffffffff8216611114565b611ccc82611cb5565b611c15818354611c88565b600063ffffffff83611bd9565b611ced82611cb5565b611c15818354611cd7565b6000808335601e1936859003018112611d1357611d13600080fd5b8301915050803567ffffffffffffffff811115611d3257611d32600080fd5b60208201915060018102360382131561149b5761149b600080fd5b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052602260045260246000fd5b600281046001821680611d8d57607f821691505b6020821081036112a9576112a9611d63565b6000611114611a9a8381565b611db483611d9f565b815460001960089490940293841b1916921b91909117905550565b60006109e7818484611dab565b8181101561067d57611def600082611dcf565b600101611ddc565b601f8211156109e7576000818152602090206020601f85010481016020851015611e1e5750805b610cb76020601f860104830182611ddc565b8267ffffffffffffffff811115611e4957611e49611d4d565b611e538254611d79565b611e5e828285611df7565b506000601f821160018114611e935760008315611e7b5750848201355b600019600885021c1981166002850217855550610e47565b600084815260209020601f19841690835b82811015611ec45787850135825560209485019460019092019101611ea4565b5084821015611ee1576000196008601f8716021c19878501351681555b5050505060020260010190555050565b6109e7838383611e30565b60008135611114816114a2565b600060ff8216611114565b611f1d82611f09565b815460ff191660ff821617611c15565b808280611f3981611bc0565b9050611f458184611c01565b50506020830180611f5582611c1c565b9050611f618184611c67565b50506040830180611f7182611c7b565b9050611f7d8184611cc3565b5050506060820180611f8e82611c7b565b9050611f9d8160018501611ce4565b5050611fac6080830183611cf8565b611fba818360028601611ef1565b505060a0820180611fca82611efc565b9050611fd98160038501611f14565b50505050565b61067d8282611f2d565b60258152602081017f496e73756666696369656e742066756e647320746f207075626c697368206d6581527f7373616765000000000000000000000000000000000000000000000000000000602082015290506118a1565b6020808252810161111481611fe9565b60c0810161205f828a611220565b61206c6020830189611533565b6120796040830188611704565b6120866060830187611704565b818103608083015261209981858761176d565b90506120a860a083018461179d565b98975050505050505050565b602a8152602081017f526f6f74206973206e6f74207075626c6973686564206f6e2074686973206d6581527f7373616765206275732e00000000000000000000000000000000000000000000602082015290506118a1565b60208082528101611114816120b4565b60218152602081017f526f6f74206973206e6f7420636f6e736964657265642066696e616c207965748152601760f91b602082015290506118a1565b602080825281016111148161211c565b5060006111146020830183611305565b61218281806116b9565b61218c8382611220565b5061219a60208201826116b9565b6121a76020840182611220565b506121b56040820182612168565b6121c2604084018261122f565b506121d060608201826116e4565b6109e76060840182611533565b608081016111148284612178565b60018152602081017f76000000000000000000000000000000000000000000000000000000000000008152905061127e565b6040808252810161222d816121eb565b9050611114602083018461122f565b612246818361122f565b602001919050565b60338152602081017f496e76616c696420696e636c7573696f6e2070726f6f6620666f722076616c7581527f65207472616e73666572206d6573736167652e00000000000000000000000000602082015290506118a1565b602080825281016111148161224e565b60258152602081017f526f6f7420616c726561647920616464656420746f20746865206d657373616781527f6520627573000000000000000000000000000000000000000000000000000000602082015290506118a1565b60208082528101611114816122b6565b60006020828403121561233357612333600080fd5b61041483836116d9565b60006020828403121561235257612352600080fd5b61041483836114ab565b60018152602081017f6d000000000000000000000000000000000000000000000000000000000000008152905061127e565b6040808252810161222d8161235c565b60308152602081017f496e76616c696420696e636c7573696f6e2070726f6f6620666f722063726f7381527f7320636861696e206d6573736167652e00000000000000000000000000000000602082015290506118a1565b602080825281016111148161239e565b61122981611d9f565b602081016111148284612406565b8051611114816112f8565b60006020828403121561243d5761243d600080fd5b610414838361241d565b67ffffffffffffffff918216919081169082820190811115611114576111146119a1565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d3bd88e19eb5e0e03473c1583cfcd854a520d8329b1baacacdfe3579c28bb44c64736f6c634300081c0033a26469706673582212204907953eabc12a89f2897c1d871a2a71b3e4552429bf47590dec5f96ea88414064736f6c634300081c0033", } // ManagementContractABI is the input ABI used to generate the binding from. @@ -1438,6 +1438,304 @@ func (_ManagementContract *ManagementContractFilterer) ParseLogManagementContrac return event, nil } +// ManagementContractNetworkSecretRequestedIterator is returned from FilterNetworkSecretRequested and is used to iterate over the raw logs and unpacked data for NetworkSecretRequested events raised by the ManagementContract contract. +type ManagementContractNetworkSecretRequestedIterator struct { + Event *ManagementContractNetworkSecretRequested // Event containing the contract specifics and raw log + + contract *bind.BoundContract // Generic contract to use for unpacking event data + event string // Event name to use for unpacking event data + + logs chan types.Log // Log channel receiving the found contract events + sub ethereum.Subscription // Subscription for errors, completion and termination + done bool // Whether the subscription completed delivering logs + fail error // Occurred error to stop iteration +} + +// Next advances the iterator to the subsequent event, returning whether there +// are any more events found. In case of a retrieval or parsing error, false is +// returned and Error() can be queried for the exact failure. +func (it *ManagementContractNetworkSecretRequestedIterator) Next() bool { + // If the iterator failed, stop iterating + if it.fail != nil { + return false + } + // If the iterator completed, deliver directly whatever's available + if it.done { + select { + case log := <-it.logs: + it.Event = new(ManagementContractNetworkSecretRequested) + if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil { + it.fail = err + return false + } + it.Event.Raw = log + return true + + default: + return false + } + } + // Iterator still in progress, wait for either a data or an error event + select { + case log := <-it.logs: + it.Event = new(ManagementContractNetworkSecretRequested) + if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil { + it.fail = err + return false + } + it.Event.Raw = log + return true + + case err := <-it.sub.Err(): + it.done = true + it.fail = err + return it.Next() + } +} + +// Error returns any retrieval or parsing error occurred during filtering. +func (it *ManagementContractNetworkSecretRequestedIterator) Error() error { + return it.fail +} + +// Close terminates the iteration process, releasing any pending underlying +// resources. +func (it *ManagementContractNetworkSecretRequestedIterator) Close() error { + it.sub.Unsubscribe() + return nil +} + +// ManagementContractNetworkSecretRequested represents a NetworkSecretRequested event raised by the ManagementContract contract. +type ManagementContractNetworkSecretRequested struct { + Requester common.Address + RequestReport string + Raw types.Log // Blockchain specific contextual infos +} + +// FilterNetworkSecretRequested is a free log retrieval operation binding the contract event 0x0b0ecdedd12079aa2d6c5e0186026c711cb0c8d04f1b724ba5880fb6328d4301. +// +// Solidity: event NetworkSecretRequested(address indexed requester, string requestReport) +func (_ManagementContract *ManagementContractFilterer) FilterNetworkSecretRequested(opts *bind.FilterOpts, requester []common.Address) (*ManagementContractNetworkSecretRequestedIterator, error) { + + var requesterRule []interface{} + for _, requesterItem := range requester { + requesterRule = append(requesterRule, requesterItem) + } + + logs, sub, err := _ManagementContract.contract.FilterLogs(opts, "NetworkSecretRequested", requesterRule) + if err != nil { + return nil, err + } + return &ManagementContractNetworkSecretRequestedIterator{contract: _ManagementContract.contract, event: "NetworkSecretRequested", logs: logs, sub: sub}, nil +} + +// WatchNetworkSecretRequested is a free log subscription operation binding the contract event 0x0b0ecdedd12079aa2d6c5e0186026c711cb0c8d04f1b724ba5880fb6328d4301. +// +// Solidity: event NetworkSecretRequested(address indexed requester, string requestReport) +func (_ManagementContract *ManagementContractFilterer) WatchNetworkSecretRequested(opts *bind.WatchOpts, sink chan<- *ManagementContractNetworkSecretRequested, requester []common.Address) (event.Subscription, error) { + + var requesterRule []interface{} + for _, requesterItem := range requester { + requesterRule = append(requesterRule, requesterItem) + } + + logs, sub, err := _ManagementContract.contract.WatchLogs(opts, "NetworkSecretRequested", requesterRule) + if err != nil { + return nil, err + } + return event.NewSubscription(func(quit <-chan struct{}) error { + defer sub.Unsubscribe() + for { + select { + case log := <-logs: + // New log arrived, parse the event and forward to the user + event := new(ManagementContractNetworkSecretRequested) + if err := _ManagementContract.contract.UnpackLog(event, "NetworkSecretRequested", log); err != nil { + return err + } + event.Raw = log + + select { + case sink <- event: + case err := <-sub.Err(): + return err + case <-quit: + return nil + } + case err := <-sub.Err(): + return err + case <-quit: + return nil + } + } + }), nil +} + +// ParseNetworkSecretRequested is a log parse operation binding the contract event 0x0b0ecdedd12079aa2d6c5e0186026c711cb0c8d04f1b724ba5880fb6328d4301. +// +// Solidity: event NetworkSecretRequested(address indexed requester, string requestReport) +func (_ManagementContract *ManagementContractFilterer) ParseNetworkSecretRequested(log types.Log) (*ManagementContractNetworkSecretRequested, error) { + event := new(ManagementContractNetworkSecretRequested) + if err := _ManagementContract.contract.UnpackLog(event, "NetworkSecretRequested", log); err != nil { + return nil, err + } + event.Raw = log + return event, nil +} + +// ManagementContractNetworkSecretRespondedIterator is returned from FilterNetworkSecretResponded and is used to iterate over the raw logs and unpacked data for NetworkSecretResponded events raised by the ManagementContract contract. +type ManagementContractNetworkSecretRespondedIterator struct { + Event *ManagementContractNetworkSecretResponded // Event containing the contract specifics and raw log + + contract *bind.BoundContract // Generic contract to use for unpacking event data + event string // Event name to use for unpacking event data + + logs chan types.Log // Log channel receiving the found contract events + sub ethereum.Subscription // Subscription for errors, completion and termination + done bool // Whether the subscription completed delivering logs + fail error // Occurred error to stop iteration +} + +// Next advances the iterator to the subsequent event, returning whether there +// are any more events found. In case of a retrieval or parsing error, false is +// returned and Error() can be queried for the exact failure. +func (it *ManagementContractNetworkSecretRespondedIterator) Next() bool { + // If the iterator failed, stop iterating + if it.fail != nil { + return false + } + // If the iterator completed, deliver directly whatever's available + if it.done { + select { + case log := <-it.logs: + it.Event = new(ManagementContractNetworkSecretResponded) + if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil { + it.fail = err + return false + } + it.Event.Raw = log + return true + + default: + return false + } + } + // Iterator still in progress, wait for either a data or an error event + select { + case log := <-it.logs: + it.Event = new(ManagementContractNetworkSecretResponded) + if err := it.contract.UnpackLog(it.Event, it.event, log); err != nil { + it.fail = err + return false + } + it.Event.Raw = log + return true + + case err := <-it.sub.Err(): + it.done = true + it.fail = err + return it.Next() + } +} + +// Error returns any retrieval or parsing error occurred during filtering. +func (it *ManagementContractNetworkSecretRespondedIterator) Error() error { + return it.fail +} + +// Close terminates the iteration process, releasing any pending underlying +// resources. +func (it *ManagementContractNetworkSecretRespondedIterator) Close() error { + it.sub.Unsubscribe() + return nil +} + +// ManagementContractNetworkSecretResponded represents a NetworkSecretResponded event raised by the ManagementContract contract. +type ManagementContractNetworkSecretResponded struct { + Attester common.Address + Requester common.Address + Raw types.Log // Blockchain specific contextual infos +} + +// FilterNetworkSecretResponded is a free log retrieval operation binding the contract event 0xb869e23ebc7c717d76e345eee8ec282612603e45c44f7ae5494b197c8d9d1be1. +// +// Solidity: event NetworkSecretResponded(address indexed attester, address indexed requester) +func (_ManagementContract *ManagementContractFilterer) FilterNetworkSecretResponded(opts *bind.FilterOpts, attester []common.Address, requester []common.Address) (*ManagementContractNetworkSecretRespondedIterator, error) { + + var attesterRule []interface{} + for _, attesterItem := range attester { + attesterRule = append(attesterRule, attesterItem) + } + var requesterRule []interface{} + for _, requesterItem := range requester { + requesterRule = append(requesterRule, requesterItem) + } + + logs, sub, err := _ManagementContract.contract.FilterLogs(opts, "NetworkSecretResponded", attesterRule, requesterRule) + if err != nil { + return nil, err + } + return &ManagementContractNetworkSecretRespondedIterator{contract: _ManagementContract.contract, event: "NetworkSecretResponded", logs: logs, sub: sub}, nil +} + +// WatchNetworkSecretResponded is a free log subscription operation binding the contract event 0xb869e23ebc7c717d76e345eee8ec282612603e45c44f7ae5494b197c8d9d1be1. +// +// Solidity: event NetworkSecretResponded(address indexed attester, address indexed requester) +func (_ManagementContract *ManagementContractFilterer) WatchNetworkSecretResponded(opts *bind.WatchOpts, sink chan<- *ManagementContractNetworkSecretResponded, attester []common.Address, requester []common.Address) (event.Subscription, error) { + + var attesterRule []interface{} + for _, attesterItem := range attester { + attesterRule = append(attesterRule, attesterItem) + } + var requesterRule []interface{} + for _, requesterItem := range requester { + requesterRule = append(requesterRule, requesterItem) + } + + logs, sub, err := _ManagementContract.contract.WatchLogs(opts, "NetworkSecretResponded", attesterRule, requesterRule) + if err != nil { + return nil, err + } + return event.NewSubscription(func(quit <-chan struct{}) error { + defer sub.Unsubscribe() + for { + select { + case log := <-logs: + // New log arrived, parse the event and forward to the user + event := new(ManagementContractNetworkSecretResponded) + if err := _ManagementContract.contract.UnpackLog(event, "NetworkSecretResponded", log); err != nil { + return err + } + event.Raw = log + + select { + case sink <- event: + case err := <-sub.Err(): + return err + case <-quit: + return nil + } + case err := <-sub.Err(): + return err + case <-quit: + return nil + } + } + }), nil +} + +// ParseNetworkSecretResponded is a log parse operation binding the contract event 0xb869e23ebc7c717d76e345eee8ec282612603e45c44f7ae5494b197c8d9d1be1. +// +// Solidity: event NetworkSecretResponded(address indexed attester, address indexed requester) +func (_ManagementContract *ManagementContractFilterer) ParseNetworkSecretResponded(log types.Log) (*ManagementContractNetworkSecretResponded, error) { + event := new(ManagementContractNetworkSecretResponded) + if err := _ManagementContract.contract.UnpackLog(event, "NetworkSecretResponded", log); err != nil { + return nil, err + } + event.Raw = log + return event, nil +} + // ManagementContractOwnershipTransferredIterator is returned from FilterOwnershipTransferred and is used to iterate over the raw logs and unpacked data for OwnershipTransferred events raised by the ManagementContract contract. type ManagementContractOwnershipTransferredIterator struct { Event *ManagementContractOwnershipTransferred // Event containing the contract specifics and raw log diff --git a/go/common/l1_transaction.go b/go/common/l1_transaction.go index fcc6144ade..66afcce840 100644 --- a/go/common/l1_transaction.go +++ b/go/common/l1_transaction.go @@ -104,10 +104,10 @@ type ProcessedL1Data struct { // L1TxData represents an L1 transaction that are relevant to us type L1TxData struct { - Transaction *types.Transaction - Receipt *types.Receipt - Blobs []*kzg4844.Blob // Only populated for blob transactions - SequencerEnclaveID *EnclaveID // Only populated when a new enclave is added as a sequencer + Transaction *types.Transaction + Receipt *types.Receipt + Blobs []*kzg4844.Blob // Only populated for blob transactions + //SequencerEnclaveID *EnclaveID // Only populated when a new enclave is added as a sequencer CrossChainMessages *CrossChainMessages // Only populated for xchain messages ValueTransfers *ValueTransferEvents // Only populated for xchain transfers Proof []byte // Some merkle proof TBC diff --git a/go/enclave/crosschain/block_message_extractor.go b/go/enclave/crosschain/block_message_extractor.go index b3b35238a7..8b6e5ff7a2 100644 --- a/go/enclave/crosschain/block_message_extractor.go +++ b/go/enclave/crosschain/block_message_extractor.go @@ -45,6 +45,7 @@ func (m *blockMessageExtractor) StoreCrossChainValueTransfers(ctx context.Contex // collect all value transfer events from processed data var transfers common.ValueTransferEvents for _, txData := range processedData.GetEvents(common.CrossChainValueTranserTx) { + println("VALUE TRANSFER EVENT FOUND") if txData.ValueTransfers != nil { transfers = append(transfers, *txData.ValueTransfers...) } diff --git a/go/enclave/enclave_admin_service.go b/go/enclave/enclave_admin_service.go index eaa4356e38..c9c62aada2 100644 --- a/go/enclave/enclave_admin_service.go +++ b/go/enclave/enclave_admin_service.go @@ -495,9 +495,11 @@ func (e *enclaveAdminService) ingestL1Block(ctx context.Context, processed *comm } sequencerAddedTxs := processed.GetEvents(common.SequencerAddedTx) - for _, tx := range sequencerAddedTxs { - println("Sequencer ADDED: ", tx.Transaction.Hash().Hex()) + if len(sequencerAddedTxs) > 0 { + println("Sequencer ADDED tx hash: ", sequencerAddedTxs[0].Transaction.Hash().Hex()) } + //for _, tx := range sequencerAddedTxs { + //} //TODO call AddSequencer if event present if ingestion.IsFork() { diff --git a/go/host/l1/blockrepository.go b/go/host/l1/blockrepository.go index 4b734c57d8..1bb5ec5433 100644 --- a/go/host/l1/blockrepository.go +++ b/go/host/l1/blockrepository.go @@ -283,11 +283,7 @@ func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.Proc } if len(txLogs.sequencerLogs) > 0 { - println("SEQUENCER ENCLAVE ADDED ") - //if enclaveIDs, err := crosschain.ConvertLogsToSequencerEnclaves(txLogs.sequencerLogs, crosschain.SequencerEnclaveGrantedEventName, crosschain.MgmtContractABI); err == nil { - // txData.SequencerEnclaveIDs = enclaveIDs - processed.AddEvent(common.SequencerAddedTx, txData) - //} + processed.AddEvent(common.SequencerAddedTx, txData) } if len(txLogs.secretRequestLogs) > 0 { diff --git a/integration/simulation/simulation.go b/integration/simulation/simulation.go index 274c150dd4..44cd8d871e 100644 --- a/integration/simulation/simulation.go +++ b/integration/simulation/simulation.go @@ -192,19 +192,19 @@ func (s *Simulation) bridgeFundingToTen() { time.Sleep(15 * time.Second) // todo - fix the wait group, for whatever reason it does not find a receipt... - //wg := sync.WaitGroup{} - //for _, tx := range transactions { - // wg.Add(1) - // transaction := tx - // go func() { - // defer wg.Done() - // err := testcommon.AwaitReceiptEth(s.ctx, s.RPCHandles.RndEthClient(), transaction.Hash(), 20*time.Second) - // if err != nil { - // panic(err) - // } - // }() - //} - //wg.Wait() + /*wg := sync.WaitGroup{} + for _, tx := range transactions { + wg.Add(1) + transaction := tx + go func() { + defer wg.Done() + err := testcommon.AwaitReceiptEth(s.ctx, s.RPCHandles.RndEthClient(), transaction.Hash(), 20*time.Second) + if err != nil { + panic(err) + } + }() + } + wg.Wait()*/ } // We subscribe to logs on every client for every wallet. @@ -332,7 +332,7 @@ func (s *Simulation) deployTenZen() { return fmt.Errorf("waiting for positive balance") } return nil - }, retry.NewTimeoutStrategy(60*time.Second, 2*time.Second)) + }, retry.NewTimeoutStrategy(1*time.Minute, 2*time.Second)) if err != nil { panic(fmt.Errorf("failed to get positive balance after timeout: %w", err)) } From 9eec9f0f8e65463b01f5306918ce2df0c3e8885a Mon Sep 17 00:00:00 2001 From: Will Hester Date: Tue, 10 Dec 2024 10:52:18 +0000 Subject: [PATCH 18/21] lint --- go/common/l1_transaction.go | 5 ++-- go/config/loader.go | 2 +- go/host/l1/publisher.go | 6 ++--- go/node/docker_node.go | 2 +- integration/simulation/devnetwork/node.go | 6 ++++- .../smartcontract/smartcontracts_test.go | 26 +++++++++---------- 6 files changed, 26 insertions(+), 21 deletions(-) diff --git a/go/common/l1_transaction.go b/go/common/l1_transaction.go index 66afcce840..27ae86a7a2 100644 --- a/go/common/l1_transaction.go +++ b/go/common/l1_transaction.go @@ -3,11 +3,12 @@ package common import ( "crypto/ecdsa" "fmt" + "math/big" + gethcommon "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/crypto/kzg4844" - "math/big" ) // TenTransaction is an abstraction that transforms an Ethereum transaction into a format that can be consumed more @@ -107,7 +108,7 @@ type L1TxData struct { Transaction *types.Transaction Receipt *types.Receipt Blobs []*kzg4844.Blob // Only populated for blob transactions - //SequencerEnclaveID *EnclaveID // Only populated when a new enclave is added as a sequencer + // SequencerEnclaveID *EnclaveID // Only populated when a new enclave is added as a sequencer CrossChainMessages *CrossChainMessages // Only populated for xchain messages ValueTransfers *ValueTransferEvents // Only populated for xchain transfers Proof []byte // Some merkle proof TBC diff --git a/go/config/loader.go b/go/config/loader.go index 7844f0a72d..33d141b6c1 100644 --- a/go/config/loader.go +++ b/go/config/loader.go @@ -88,6 +88,6 @@ func load(filePaths []string) (*TenConfig, error) { } fmt.Println("Successfully loaded Ten config.") - //tenCfg.PrettyPrint() + tenCfg.PrettyPrint() return &tenCfg, nil } diff --git a/go/host/l1/publisher.go b/go/host/l1/publisher.go index 037ad51510..efe412e91f 100644 --- a/go/host/l1/publisher.go +++ b/go/host/l1/publisher.go @@ -311,9 +311,9 @@ func (p *Publisher) PublishCrossChainBundle(bundle *common.ExtCrossChainBundle, transactor.Nonce = big.NewInt(0).SetUint64(nonce) - //println("PublishCrossChainBundle L1 block num: ", bundle.L1BlockNum.Uint64()) - //println("PublishCrossChainBundle rollupNum: ", rollupNum.Uint64()) - //println("PublishCrossChainBundle nonce: ", nonce) + // println("PublishCrossChainBundle L1 block num: ", bundle.L1BlockNum.Uint64()) + // println("PublishCrossChainBundle rollupNum: ", rollupNum.Uint64()) + // println("PublishCrossChainBundle nonce: ", nonce) tx, err := managementCtr.AddCrossChainMessagesRoot(transactor, [32]byte(bundle.LastBatchHash.Bytes()), bundle.L1BlockHash, bundle.L1BlockNum, bundle.CrossChainRootHashes, bundle.Signature, rollupNum, forkID) if err != nil { diff --git a/go/node/docker_node.go b/go/node/docker_node.go index 56e435c84b..fb94222c34 100644 --- a/go/node/docker_node.go +++ b/go/node/docker_node.go @@ -35,7 +35,7 @@ func NewDockerNode(cfg *config.TenConfig, hostImage, enclaveImage, edgelessDBIma func (d *DockerNode) Start() error { // todo (@pedro) - this should probably be removed in the future - //d.cfg.PrettyPrint() // dump config to stdout + // d.cfg.PrettyPrint() // dump config to stdout err := d.startEdgelessDB() if err != nil { diff --git a/integration/simulation/devnetwork/node.go b/integration/simulation/devnetwork/node.go index 6acb4ce4ac..8d94da3cb1 100644 --- a/integration/simulation/devnetwork/node.go +++ b/integration/simulation/devnetwork/node.go @@ -180,8 +180,12 @@ func (n *InMemNodeOperator) createHostContainer() *hostcontainer.HostContainer { } rpcServer := node.NewServer(&rpcConfig, n.logger) mgmtContractLib := mgmtcontractlib.NewMgmtContractLib(&hostConfig.ManagementContractAddress, n.logger) - l1Repo := l1.NewL1Repository(n.l1Client, []gethcommon.Address{hostConfig.ManagementContractAddress, hostConfig.MessageBusAddress}, n.logger) + contractAddresses := map[l1.ContractType][]gethcommon.Address{ + l1.MgmtContract: {hostConfig.ManagementContractAddress}, + l1.MsgBus: {hostConfig.MessageBusAddress}, + } blobResolver := l1.NewBlobResolver(ethadapter.NewL1BeaconClient(ethadapter.NewBeaconHTTPClient(new(http.Client), fmt.Sprintf("127.0.0.1:%d", n.config.L1BeaconPort)))) + l1Repo := l1.NewL1Repository(n.l1Client, n.logger, mgmtContractLib, blobResolver, contractAddresses) return hostcontainer.NewHostContainer(hostConfig, svcLocator, nodeP2p, n.l1Client, l1Repo, enclaveClients, mgmtContractLib, n.l1Wallet, rpcServer, hostLogger, metrics.New(false, 0, n.logger), blobResolver) } diff --git a/integration/smartcontract/smartcontracts_test.go b/integration/smartcontract/smartcontracts_test.go index 8914d96357..6476de8399 100644 --- a/integration/smartcontract/smartcontracts_test.go +++ b/integration/smartcontract/smartcontracts_test.go @@ -155,7 +155,7 @@ func nonAttestedNodesCannotCreateRollup(t *testing.T, mgmtContractLib *debugMgmt if err != nil { t.Error(err) } - txData, err := mgmtContractLib.CreateBlobRollup(ðadapter.L1RollupTx{Rollup: encodedRollup}) + txData, err := mgmtContractLib.CreateBlobRollup(&common.L1RollupTx{Rollup: encodedRollup}) if err != nil { t.Error(err) } @@ -170,7 +170,7 @@ func nonAttestedNodesCannotCreateRollup(t *testing.T, mgmtContractLib *debugMgmt func secretCannotBeInitializedTwice(t *testing.T, mgmtContractLib *debugMgmtContractLib, w *debugWallet, client ethadapter.EthClient) { aggregatorID := datagenerator.RandomAddress() txData := mgmtContractLib.CreateInitializeSecret( - ðadapter.L1InitializeSecretTx{ + &common.L1InitializeSecretTx{ EnclaveID: &aggregatorID, }, ) @@ -196,7 +196,7 @@ func secretCannotBeInitializedTwice(t *testing.T, mgmtContractLib *debugMgmtCont // do the same again aggregatorID = datagenerator.RandomAddress() txData = mgmtContractLib.CreateInitializeSecret( - ðadapter.L1InitializeSecretTx{ + &common.L1InitializeSecretTx{ EnclaveID: &aggregatorID, }, ) @@ -225,7 +225,7 @@ func attestedNodesCreateRollup(t *testing.T, mgmtContractLib *debugMgmtContractL // the aggregator starts the network txData := mgmtContractLib.CreateInitializeSecret( - ðadapter.L1InitializeSecretTx{ + &common.L1InitializeSecretTx{ EnclaveID: &enclaveID, }, ) @@ -256,7 +256,7 @@ func nonAttestedNodesCannotAttest(t *testing.T, mgmtContractLib *debugMgmtContra // aggregator A starts the network secret txData := mgmtContractLib.CreateInitializeSecret( - ðadapter.L1InitializeSecretTx{ + &common.L1InitializeSecretTx{ EnclaveID: &aggAID, }, ) @@ -277,7 +277,7 @@ func nonAttestedNodesCannotAttest(t *testing.T, mgmtContractLib *debugMgmtContra aggBID := crypto.PubkeyToAddress(aggBPrivateKey.PublicKey) txData = mgmtContractLib.CreateRequestSecret( - ðadapter.L1RequestSecretTx{ + &common.L1RequestSecretTx{ Attestation: datagenerator.RandomBytes(10), }, ) @@ -300,7 +300,7 @@ func nonAttestedNodesCannotAttest(t *testing.T, mgmtContractLib *debugMgmtContra fakeSecret := []byte{123} txData = mgmtContractLib.CreateRespondSecret( - (ðadapter.L1RespondSecretTx{ + (&common.L1RespondSecretTx{ AttesterID: aggCID, RequesterID: aggBID, Secret: fakeSecret, @@ -315,7 +315,7 @@ func nonAttestedNodesCannotAttest(t *testing.T, mgmtContractLib *debugMgmtContra // agg c responds to the secret AGAIN, but trying to mimick aggregator A txData = mgmtContractLib.CreateRespondSecret( - (ðadapter.L1RespondSecretTx{ + (&common.L1RespondSecretTx{ Secret: fakeSecret, RequesterID: aggBID, AttesterID: aggAID, @@ -341,7 +341,7 @@ func newlyAttestedNodesCanAttest(t *testing.T, mgmtContractLib *debugMgmtContrac // the aggregator starts the network txData := mgmtContractLib.CreateInitializeSecret( - ðadapter.L1InitializeSecretTx{ + &common.L1InitializeSecretTx{ EnclaveID: &aggAID, InitialSecret: secretBytes, }, @@ -370,7 +370,7 @@ func newlyAttestedNodesCanAttest(t *testing.T, mgmtContractLib *debugMgmtContrac aggBID := crypto.PubkeyToAddress(aggBPrivateKey.PublicKey) txData = mgmtContractLib.CreateRequestSecret( - ðadapter.L1RequestSecretTx{ + &common.L1RequestSecretTx{ Attestation: datagenerator.RandomBytes(10), }, ) @@ -390,7 +390,7 @@ func newlyAttestedNodesCanAttest(t *testing.T, mgmtContractLib *debugMgmtContrac aggCID := crypto.PubkeyToAddress(aggCPrivateKey.PublicKey) txData = mgmtContractLib.CreateRequestSecret( - ðadapter.L1RequestSecretTx{ + &common.L1RequestSecretTx{ Attestation: datagenerator.RandomBytes(10), }, ) @@ -405,7 +405,7 @@ func newlyAttestedNodesCanAttest(t *testing.T, mgmtContractLib *debugMgmtContrac // Agg A responds to Agg C request txData = mgmtContractLib.CreateRespondSecret( - (ðadapter.L1RespondSecretTx{ + (&common.L1RespondSecretTx{ Secret: secretBytes, RequesterID: aggCID, AttesterID: aggAID, @@ -432,7 +432,7 @@ func newlyAttestedNodesCanAttest(t *testing.T, mgmtContractLib *debugMgmtContrac // agg C attests agg B txData = mgmtContractLib.CreateRespondSecret( - (ðadapter.L1RespondSecretTx{ + (&common.L1RespondSecretTx{ Secret: secretBytes, RequesterID: aggBID, AttesterID: aggCID, From f7dc5788c700ffa2702945eed0399676e0006572 Mon Sep 17 00:00:00 2001 From: Will Hester Date: Tue, 10 Dec 2024 16:22:05 +0000 Subject: [PATCH 19/21] refactor extract method --- go/common/l1_transaction.go | 13 +- go/enclave/components/batch_executor.go | 30 ++ .../crosschain/block_message_extractor.go | 7 +- go/enclave/enclave_admin_service.go | 22 +- go/host/l1/blockrepository.go | 257 ++++++++++++------ integration/simulation/utils.go | 2 +- 6 files changed, 227 insertions(+), 104 deletions(-) diff --git a/go/common/l1_transaction.go b/go/common/l1_transaction.go index 27ae86a7a2..ada8b3e32e 100644 --- a/go/common/l1_transaction.go +++ b/go/common/l1_transaction.go @@ -105,15 +105,20 @@ type ProcessedL1Data struct { // L1TxData represents an L1 transaction that are relevant to us type L1TxData struct { - Transaction *types.Transaction - Receipt *types.Receipt - Blobs []*kzg4844.Blob // Only populated for blob transactions - // SequencerEnclaveID *EnclaveID // Only populated when a new enclave is added as a sequencer + Transaction *types.Transaction + Receipt *types.Receipt + Blobs []*kzg4844.Blob // Only populated for blob transactions + SequencerEnclaveID gethcommon.Address // Only non-zero when a new enclave is added as a sequencer CrossChainMessages *CrossChainMessages // Only populated for xchain messages ValueTransfers *ValueTransferEvents // Only populated for xchain transfers Proof []byte // Some merkle proof TBC } +// HasSequencerEnclaveID helper method to check if SequencerEnclaveID is set to avoid custom RLP when we send over grpc +func (tx *L1TxData) HasSequencerEnclaveID() bool { + return tx.SequencerEnclaveID != (gethcommon.Address{}) +} + func (p *ProcessedL1Data) AddEvent(txType L1TxType, tx *L1TxData) { for i := range p.Events { if p.Events[i].Type == uint8(txType) { diff --git a/go/enclave/components/batch_executor.go b/go/enclave/components/batch_executor.go index 562635c353..3eb0a925b6 100644 --- a/go/enclave/components/batch_executor.go +++ b/go/enclave/components/batch_executor.go @@ -459,6 +459,36 @@ func (executor *batchExecutor) ExecuteBatch(ctx context.Context, batch *core.Bat } if cb.Batch.Hash() != batch.Hash() { + // Debug logging to compare all header fields + // println("=== Batch Comparison ===") + // println("L1Proof - Computed:", cb.Batch.Header.L1Proof.Hex(), "Incoming:", batch.Header.L1Proof.Hex()) + // println("ParentHash - Computed:", cb.Batch.Header.ParentHash.Hex(), "Incoming:", batch.Header.ParentHash.Hex()) + // println("Time - Computed:", cb.Batch.Header.Time, "Incoming:", batch.Header.Time) + // println("SequencerOrderNo - Computed:", cb.Batch.Header.SequencerOrderNo, "Incoming:", batch.Header.SequencerOrderNo) + // println("Coinbase - Computed:", cb.Batch.Header.Coinbase.Hex(), "Incoming:", batch.Header.Coinbase.Hex()) + // println("BaseFee - Computed:", cb.Batch.Header.BaseFee, "Incoming:", batch.Header.BaseFee) + // println("TxHash - Computed:", cb.Batch.Header.TxHash.Hex(), "Incoming:", batch.Header.TxHash.Hex()) + // println("ReceiptHash - Computed:", cb.Batch.Header.ReceiptHash.Hex(), "Incoming:", batch.Header.ReceiptHash.Hex()) + // println("GasUsed - Computed:", cb.Batch.Header.GasUsed, "Incoming:", batch.Header.GasUsed) + // println("Transaction Count - Computed:", len(cb.Batch.Transactions), "Incoming:", len(batch.Transactions)) + // println("Computed Hash:", cb.Batch.Hash().Hex()) + // println("Incoming Hash:", batch.Hash().Hex()) + // println("=== End Comparison ===\n") + + // Add detailed receipt comparison + //println("\n=== Receipt Comparison ===") + //for i, txResult := range cb.TxExecResults { + // println(fmt.Sprintf("\nTransaction %d:", i)) + // println("Status - Computed:", txResult.Receipt.Status) + // println("GasUsed - Computed:", txResult.Receipt.GasUsed) + // println("CumulativeGasUsed - Computed:", txResult.Receipt.CumulativeGasUsed) + // println("TxHash - Computed:", txResult.Receipt.TxHash.Hex()) + // + // // Compare logs + // println(fmt.Sprintf("Log Count - Computed: %d, Incoming: %d", len(txResult.Receipt.Logs))) + //} + //println("=== End Receipt Comparison ===\n") + // todo @stefan - generate a validator challenge here and return it executor.logger.Error(fmt.Sprintf("Error validating batch. Calculated: %+v Incoming: %+v", cb.Batch.Header, batch.Header)) return nil, fmt.Errorf("batch is in invalid state. Incoming hash: %s Computed hash: %s", batch.Hash(), cb.Batch.Hash()) diff --git a/go/enclave/crosschain/block_message_extractor.go b/go/enclave/crosschain/block_message_extractor.go index 8b6e5ff7a2..78b108ea3e 100644 --- a/go/enclave/crosschain/block_message_extractor.go +++ b/go/enclave/crosschain/block_message_extractor.go @@ -42,15 +42,18 @@ func (m *blockMessageExtractor) Enabled() bool { func (m *blockMessageExtractor) StoreCrossChainValueTransfers(ctx context.Context, block *types.Header, processedData *common.ProcessedL1Data) error { defer core.LogMethodDuration(m.logger, measure.NewStopwatch(), "BlockHeader value transfer messages processed", log.BlockHashKey, block.Hash()) + transferEvents := processedData.GetEvents(common.CrossChainValueTranserTx) // collect all value transfer events from processed data var transfers common.ValueTransferEvents - for _, txData := range processedData.GetEvents(common.CrossChainValueTranserTx) { + for _, txData := range transferEvents { println("VALUE TRANSFER EVENT FOUND") if txData.ValueTransfers != nil { transfers = append(transfers, *txData.ValueTransfers...) } } - + if len(transferEvents) == 0 { + return nil + } m.logger.Trace("Storing value transfers for block", "nr", len(transfers), log.BlockHashKey, block.Hash()) err := m.storage.StoreValueTransfers(ctx, block.Hash(), transfers) if err != nil { diff --git a/go/enclave/enclave_admin_service.go b/go/enclave/enclave_admin_service.go index c9c62aada2..39d31bcc7d 100644 --- a/go/enclave/enclave_admin_service.go +++ b/go/enclave/enclave_admin_service.go @@ -152,11 +152,6 @@ func (e *enclaveAdminService) AddSequencer(id common.EnclaveID, proof types.Rece e.mempool.SetValidateMode(false) } - //if currentEnclaveId == id { - // todo - //} - - // todo - use the proof return nil } @@ -490,17 +485,22 @@ func (e *enclaveAdminService) ingestL1Block(ctx context.Context, processed *comm err = e.rollupConsumer.ProcessBlobsInBlock(ctx, processed) if err != nil && !errors.Is(err, components.ErrDuplicateRollup) { - e.logger.Error("Encountered error while processing l1 block", log.ErrKey, err) + e.logger.Error("Encountered error while processing l1 blobs in block", log.ErrKey, err) // Unsure what to do here; block has been stored } sequencerAddedTxs := processed.GetEvents(common.SequencerAddedTx) - if len(sequencerAddedTxs) > 0 { - println("Sequencer ADDED tx hash: ", sequencerAddedTxs[0].Transaction.Hash().Hex()) + for _, tx := range sequencerAddedTxs { + if tx.HasSequencerEnclaveID() { + //err = e.AddSequencer(tx.SequencerEnclaveID, *tx.Receipt) + //if err != nil { + // e.logger.Crit("Encountered error while adding sequencer enclaveID", log.ErrKey, err) + //} + println("Sequencer ADDED tx hash: ", sequencerAddedTxs[0].Transaction.Hash().Hex()) + + } + println("SequencerAddedTx BUT enclaveID not set") } - //for _, tx := range sequencerAddedTxs { - //} - //TODO call AddSequencer if event present if ingestion.IsFork() { e.registry.OnL1Reorg(ingestion) diff --git a/go/host/l1/blockrepository.go b/go/host/l1/blockrepository.go index 1bb5ec5433..78a1248155 100644 --- a/go/host/l1/blockrepository.go +++ b/go/host/l1/blockrepository.go @@ -193,123 +193,199 @@ func (r *Repository) FetchObscuroReceipts(block *common.L1Block) (types.Receipts return receipts, nil } -// ExtractTenTransactions does all the filtering of txs to find all the transaction types we care about on the L2. These -// are pulled from the data in the L1 blocks and then submitted to the enclave for processing +// ExtractTenTransactions processes L1 block data to find relevant transactions func (r *Repository) ExtractTenTransactions(block *common.L1Block) (*common.ProcessedL1Data, error) { processed := &common.ProcessedL1Data{ BlockHeader: block.Header(), Events: []common.L1Event{}, } - // Get all logs for our contracts - blkHash := block.Hash() + // Get all contract logs in a single query + logs, err := r.fetchContractLogs(block.Hash()) + if err != nil { + return nil, err + } + + // group logs by tx hash for efficiency + logsByTx := r.groupLogsByTransaction(logs) + + for txHash, txLogs := range logsByTx { + if err := r.processTransactionLogs(txHash, txLogs, block.Header(), processed); err != nil { + r.logger.Error("Error processing transaction logs", "txHash", txHash, "error", err) + continue + } + } + + return processed, nil +} + +// fetchContractLogs gets all logs for our tracked contracts in a single query +func (r *Repository) fetchContractLogs(blockHash gethcommon.Hash) ([]types.Log, error) { var allAddresses []gethcommon.Address allAddresses = append(allAddresses, r.contractAddresses[MgmtContract]...) allAddresses = append(allAddresses, r.contractAddresses[MsgBus]...) - logs, err := r.ethClient.GetLogs(ethereum.FilterQuery{BlockHash: &blkHash, Addresses: allAddresses}) - if err != nil { - return nil, fmt.Errorf("unable to fetch logs for L1 block - %w", err) - } + return r.ethClient.GetLogs(ethereum.FilterQuery{ + BlockHash: &blockHash, + Addresses: allAddresses, + }) +} - // FIXME clean this monster function up & look for redundant block.transactions() loops on enclave side - // group logs by transaction hash and topic - type logGroup struct { - crossChainLogs []types.Log - valueTransferLogs []types.Log - sequencerLogs []types.Log - secretRequestLogs []types.Log - secretResponseLogs []types.Log - rollupAddedLogs []types.Log - } +type logGroup struct { + crossChainLogs []types.Log + valueTransferLogs []types.Log + sequencerLogs []types.Log + secretRequestLogs []types.Log + secretResponseLogs []types.Log + rollupAddedLogs []types.Log +} +// groupLogsByTransaction organizes logs by transaction hash and type +func (r *Repository) groupLogsByTransaction(logs []types.Log) map[gethcommon.Hash]*logGroup { logsByTx := make(map[gethcommon.Hash]*logGroup) - // filter logs by topic for _, l := range logs { if _, exists := logsByTx[l.TxHash]; !exists { logsByTx[l.TxHash] = &logGroup{} } - switch l.Topics[0] { - case crosschain.CrossChainEventID: - logsByTx[l.TxHash].crossChainLogs = append(logsByTx[l.TxHash].crossChainLogs, l) - case crosschain.ValueTransferEventID: - logsByTx[l.TxHash].valueTransferLogs = append(logsByTx[l.TxHash].valueTransferLogs, l) - case crosschain.SequencerEnclaveGrantedEventID: - logsByTx[l.TxHash].sequencerLogs = append(logsByTx[l.TxHash].sequencerLogs, l) - case crosschain.NetworkSecretRequestedID: - logsByTx[l.TxHash].secretRequestLogs = append(logsByTx[l.TxHash].secretRequestLogs, l) - case crosschain.NetworkSecretRespondedID: - logsByTx[l.TxHash].secretResponseLogs = append(logsByTx[l.TxHash].secretResponseLogs, l) - case crosschain.RollupAddedID: - logsByTx[l.TxHash].rollupAddedLogs = append(logsByTx[l.TxHash].rollupAddedLogs, l) - } + r.categorizeLog(l, logsByTx[l.TxHash]) } - // Process each transaction once - for txHash, txLogs := range logsByTx { - tx, _, err := r.ethClient.TransactionByHash(txHash) - if err != nil { - r.logger.Error("Error fetching transaction by hash", txHash, err) - continue - } + return logsByTx +} - receipt, err := r.ethClient.TransactionReceipt(txHash) - if err != nil { - r.logger.Error("Error fetching transaction receipt", txHash, err) - continue - } +// categorizeLog sorts a log into its appropriate category within a logGroup +func (r *Repository) categorizeLog(l types.Log, group *logGroup) { + switch l.Topics[0] { + case crosschain.CrossChainEventID: + group.crossChainLogs = append(group.crossChainLogs, l) + case crosschain.ValueTransferEventID: + group.valueTransferLogs = append(group.valueTransferLogs, l) + case crosschain.SequencerEnclaveGrantedEventID: + group.sequencerLogs = append(group.sequencerLogs, l) + case crosschain.NetworkSecretRequestedID: + group.secretRequestLogs = append(group.secretRequestLogs, l) + case crosschain.NetworkSecretRespondedID: + group.secretResponseLogs = append(group.secretResponseLogs, l) + case crosschain.RollupAddedID: + group.rollupAddedLogs = append(group.rollupAddedLogs, l) + } +} - txData := &common.L1TxData{ - Transaction: tx, - Receipt: receipt, - CrossChainMessages: &common.CrossChainMessages{}, - ValueTransfers: &common.ValueTransferEvents{}, - } +// processTransactionLogs handles the logs for a single transaction +func (r *Repository) processTransactionLogs(txHash gethcommon.Hash, txLogs *logGroup, header *types.Header, processed *common.ProcessedL1Data) error { + tx, receipt, err := r.fetchTransactionAndReceipt(txHash) + if err != nil { + return err + } - if len(txLogs.crossChainLogs) > 0 { - if messages, err := crosschain.ConvertLogsToMessages(txLogs.crossChainLogs, crosschain.CrossChainEventName, crosschain.MessageBusABI); err == nil { - txData.CrossChainMessages = &messages - processed.AddEvent(common.CrossChainMessageTx, txData) - } - } + txData := &common.L1TxData{ + Transaction: tx, + Receipt: receipt, + } - if len(txLogs.valueTransferLogs) > 0 { - if transfers, err := crosschain.ConvertLogsToValueTransfers(txLogs.valueTransferLogs, crosschain.ValueTransferEventName, crosschain.MessageBusABI); err == nil { - txData.ValueTransfers = &transfers - processed.AddEvent(common.CrossChainValueTranserTx, txData) - } - } + if err := r.processCrossChainMessages(txLogs, txData, processed); err != nil { + return err + } - if len(txLogs.sequencerLogs) > 0 { - processed.AddEvent(common.SequencerAddedTx, txData) - } + if err := r.processValueTransfers(txLogs, txData, processed); err != nil { + return err + } + + r.processSequencerLogs(txLogs, txData, processed) + r.processSecretLogs(txLogs, txData, processed) + + if err := r.processMgmtContractTx(tx, txData, header, processed); err != nil { + return err + } + + return nil +} + +// fetchTransactionAndReceipt gets both transaction and receipt in one method +func (r *Repository) fetchTransactionAndReceipt(txHash gethcommon.Hash) (*types.Transaction, *types.Receipt, error) { + tx, _, err := r.ethClient.TransactionByHash(txHash) + if err != nil { + return nil, nil, fmt.Errorf("error fetching transaction: %w", err) + } - if len(txLogs.secretRequestLogs) > 0 { - processed.AddEvent(common.SecretRequestTx, txData) + receipt, err := r.ethClient.TransactionReceipt(txHash) + if err != nil { + return nil, nil, fmt.Errorf("error fetching receipt: %w", err) + } + + return tx, receipt, nil +} + +// processCrossChainMessages handles cross-chain message logs +func (r *Repository) processCrossChainMessages(txLogs *logGroup, txData *common.L1TxData, processed *common.ProcessedL1Data) error { + if len(txLogs.crossChainLogs) > 0 { + messages, err := crosschain.ConvertLogsToMessages(txLogs.crossChainLogs, crosschain.CrossChainEventName, crosschain.MessageBusABI) + if err != nil { + return err } + txData.CrossChainMessages = &messages + processed.AddEvent(common.CrossChainMessageTx, txData) + } + return nil +} - if len(txLogs.secretResponseLogs) > 0 { - processed.AddEvent(common.SecretResponseTx, txData) +// processValueTransfers handles value transfer logs +func (r *Repository) processValueTransfers(txLogs *logGroup, txData *common.L1TxData, processed *common.ProcessedL1Data) error { + if len(txLogs.valueTransferLogs) > 0 { + transfers, err := crosschain.ConvertLogsToValueTransfers(txLogs.valueTransferLogs, crosschain.ValueTransferEventName, crosschain.MessageBusABI) + if err != nil { + return err } + println("Value transfer event added") + txData.ValueTransfers = &transfers + processed.AddEvent(common.CrossChainValueTranserTx, txData) + } + return nil +} - if decodedTx := r.mgmtContractLib.DecodeTx(tx); decodedTx != nil { - switch t := decodedTx.(type) { - case *common.L1InitializeSecretTx: - processed.AddEvent(common.InitialiseSecretTx, txData) - case *common.L1SetImportantContractsTx: - processed.AddEvent(common.SetImportantContractsTx, txData) - case *common.L1RollupHashes: - if blobs, err := r.blobResolver.FetchBlobs(context.Background(), block.Header(), t.BlobHashes); err == nil { - txData.Blobs = blobs - processed.AddEvent(common.RollupTx, txData) - } +// processSequencerLogs handles sequencer-related logs +func (r *Repository) processSequencerLogs(txLogs *logGroup, txData *common.L1TxData, processed *common.ProcessedL1Data) { + if len(txLogs.sequencerLogs) > 0 { + for _, l := range txLogs.sequencerLogs { + if enclaveID, err := getEnclaveIdFromLog(l); err == nil { + println("Before GRPC - Receipt Hash:", txData.Receipt.TxHash.Hex()) + txData.SequencerEnclaveID = enclaveID + processed.AddEvent(common.SequencerAddedTx, txData) } } } +} - return processed, nil +// processSecretLogs handles secret-related logs +func (r *Repository) processSecretLogs(txLogs *logGroup, txData *common.L1TxData, processed *common.ProcessedL1Data) { + if len(txLogs.secretRequestLogs) > 0 { + processed.AddEvent(common.SecretRequestTx, txData) + } + if len(txLogs.secretResponseLogs) > 0 { + processed.AddEvent(common.SecretResponseTx, txData) + } +} + +// processMgmtContractTx handles management contract transactions +func (r *Repository) processMgmtContractTx(tx *types.Transaction, txData *common.L1TxData, header *types.Header, processed *common.ProcessedL1Data) error { + if decodedTx := r.mgmtContractLib.DecodeTx(tx); decodedTx != nil { + switch t := decodedTx.(type) { + case *common.L1InitializeSecretTx: + processed.AddEvent(common.InitialiseSecretTx, txData) + case *common.L1SetImportantContractsTx: + processed.AddEvent(common.SetImportantContractsTx, txData) + case *common.L1RollupHashes: + blobs, err := r.blobResolver.FetchBlobs(context.Background(), header, t.BlobHashes) + if err != nil { + return err + } + txData.Blobs = blobs + processed.AddEvent(common.RollupTx, txData) + } + } + return nil } // stream blocks from L1 as they arrive and forward them to subscribers, no guarantee of perfect ordering or that there won't be gaps. @@ -379,22 +455,31 @@ func (r *Repository) isObscuroTransaction(transaction *types.Transaction) bool { return false } +// getEnclaveIdFromLog gets the enclave ID from the log topic +func getEnclaveIdFromLog(log types.Log) (gethcommon.Address, error) { + if len(log.Topics) != 1 { + return gethcommon.Address{}, fmt.Errorf("invalid number of topics in log: %d", len(log.Topics)) + } + + return gethcommon.BytesToAddress(log.Topics[0].Bytes()), nil +} + func (r *Repository) getRequestSecretEventLogs(receipt *types.Receipt) ([]types.Log, error) { - sequencerLogs, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MgmtContract][0], &crosschain.NetworkSecretRequestedID) + requestSecretLogs, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MgmtContract][0], &crosschain.NetworkSecretRequestedID) if err != nil { r.logger.Error("Error filtering sequencer logs", log.ErrKey, err) return []types.Log{}, err } - return sequencerLogs, nil + return requestSecretLogs, nil } func (r *Repository) getSecretResponseLogs(receipt *types.Receipt) ([]types.Log, error) { - sequencerLogs, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MgmtContract][0], &crosschain.NetworkSecretRespondedID) + secretResponseLogs, err := crosschain.FilterLogsFromReceipt(receipt, &r.contractAddresses[MgmtContract][0], &crosschain.NetworkSecretRespondedID) if err != nil { r.logger.Error("Error filtering sequencer logs", log.ErrKey, err) return []types.Log{}, err } - return sequencerLogs, nil + return secretResponseLogs, nil } func increment(i *big.Int) *big.Int { diff --git a/integration/simulation/utils.go b/integration/simulation/utils.go index cc64760a0e..9445b9c7be 100644 --- a/integration/simulation/utils.go +++ b/integration/simulation/utils.go @@ -28,7 +28,7 @@ func setupSimTestLog(simType string) { LogDir: testLogs, TestType: "sim-log", TestSubtype: simType, - LogLevel: log.LvlInfo, + LogLevel: log.LvlTrace, }) } From 592899ece0c6b465300aa0295e681da1b3dfc1b5 Mon Sep 17 00:00:00 2001 From: Will Hester Date: Wed, 11 Dec 2024 09:26:09 +0000 Subject: [PATCH 20/21] desperation logging --- go/enclave/components/batch_executor.go | 36 ++++++++++++++----------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/go/enclave/components/batch_executor.go b/go/enclave/components/batch_executor.go index 3eb0a925b6..bc4ec40b2c 100644 --- a/go/enclave/components/batch_executor.go +++ b/go/enclave/components/batch_executor.go @@ -413,6 +413,7 @@ func (executor *batchExecutor) createBatch(ec *BatchExecutionContext) (*core.Bat } allResults := append(append(append(append(ec.batchTxResults, ec.xChainResults...), ec.callbackTxResults...), ec.blockEndResult...), ec.genesisSysCtrResult...) + receipts := allResults.Receipts() if len(receipts) == 0 { batch.Header.ReceiptHash = types.EmptyRootHash @@ -459,21 +460,26 @@ func (executor *batchExecutor) ExecuteBatch(ctx context.Context, batch *core.Bat } if cb.Batch.Hash() != batch.Hash() { - // Debug logging to compare all header fields - // println("=== Batch Comparison ===") - // println("L1Proof - Computed:", cb.Batch.Header.L1Proof.Hex(), "Incoming:", batch.Header.L1Proof.Hex()) - // println("ParentHash - Computed:", cb.Batch.Header.ParentHash.Hex(), "Incoming:", batch.Header.ParentHash.Hex()) - // println("Time - Computed:", cb.Batch.Header.Time, "Incoming:", batch.Header.Time) - // println("SequencerOrderNo - Computed:", cb.Batch.Header.SequencerOrderNo, "Incoming:", batch.Header.SequencerOrderNo) - // println("Coinbase - Computed:", cb.Batch.Header.Coinbase.Hex(), "Incoming:", batch.Header.Coinbase.Hex()) - // println("BaseFee - Computed:", cb.Batch.Header.BaseFee, "Incoming:", batch.Header.BaseFee) - // println("TxHash - Computed:", cb.Batch.Header.TxHash.Hex(), "Incoming:", batch.Header.TxHash.Hex()) - // println("ReceiptHash - Computed:", cb.Batch.Header.ReceiptHash.Hex(), "Incoming:", batch.Header.ReceiptHash.Hex()) - // println("GasUsed - Computed:", cb.Batch.Header.GasUsed, "Incoming:", batch.Header.GasUsed) - // println("Transaction Count - Computed:", len(cb.Batch.Transactions), "Incoming:", len(batch.Transactions)) - // println("Computed Hash:", cb.Batch.Hash().Hex()) - // println("Incoming Hash:", batch.Hash().Hex()) - // println("=== End Comparison ===\n") + println("=== Batch Comparison ===") + println("L1Proof - Computed:", cb.Batch.Header.L1Proof.Hex(), "Incoming:", batch.Header.L1Proof.Hex()) + println("ParentHash - Computed:", cb.Batch.Header.ParentHash.Hex(), "Incoming:", batch.Header.ParentHash.Hex()) + println("Time - Computed:", cb.Batch.Header.Time, "Incoming:", batch.Header.Time) + println("SequencerOrderNo - Computed:", cb.Batch.Header.SequencerOrderNo.Uint64(), "Incoming:", batch.Header.SequencerOrderNo.Uint64()) + println("Coinbase - Computed:", cb.Batch.Header.Coinbase.Hex(), "Incoming:", batch.Header.Coinbase.Hex()) + println("BaseFee - Computed:", cb.Batch.Header.BaseFee, "Incoming:", batch.Header.BaseFee) + println("TxHash - Computed:", cb.Batch.Header.TxHash.Hex(), "Incoming:", batch.Header.TxHash.Hex()) + println("ReceiptHash - Computed:", cb.Batch.Header.ReceiptHash.Hex(), "Incoming:", batch.Header.ReceiptHash.Hex()) + println("GasUsed - Computed:", cb.Batch.Header.GasUsed, "Incoming:", batch.Header.GasUsed) + println("Transaction Count - Computed:", len(cb.Batch.Transactions), "Incoming:", len(batch.Transactions)) + println("Computed Hash:", cb.Batch.Hash().Hex()) + println("Incoming Hash:", batch.Hash().Hex()) + println("=== End Comparison ===\n") + + println("----COMPUTED BATCH TXS----") + for _, rec := range cb.TxExecResults { + println("receipt txHash: ", rec.Receipt.TxHash.Hex()) + } + println("----END BATCH TXS----") // Add detailed receipt comparison //println("\n=== Receipt Comparison ===") From bf3de2c466155c6dae2c5449fc43b1adb694095d Mon Sep 17 00:00:00 2001 From: Will Hester Date: Wed, 11 Dec 2024 13:36:33 +0000 Subject: [PATCH 21/21] stashing for new branch --- go/enclave/components/batch_executor.go | 32 +++++++++++++++---------- go/host/l1/blockrepository.go | 3 ++- 2 files changed, 22 insertions(+), 13 deletions(-) diff --git a/go/enclave/components/batch_executor.go b/go/enclave/components/batch_executor.go index bc4ec40b2c..9318663b1e 100644 --- a/go/enclave/components/batch_executor.go +++ b/go/enclave/components/batch_executor.go @@ -412,7 +412,18 @@ func (executor *batchExecutor) createBatch(ec *BatchExecutionContext) (*core.Bat return nil, nil, fmt.Errorf("failed adding cross chain data to batch. Cause: %w", err) } + println("---CREATING BATCH----") + println("BATCH batch.Transactions: ", len(batch.Transactions)) + println("BATCH ec.batchTxResults: ", len(ec.batchTxResults)) + println("BATCH ec.xChainResults: ", len(ec.xChainResults)) + println("BATCH ec.callbackTxResults: ", len(ec.callbackTxResults)) + println("BATCH ec.blockEndResult: ", len(ec.blockEndResult)) + println("BATCH ec.genesisSysCtrResult: ", len(ec.genesisSysCtrResult)) allResults := append(append(append(append(ec.batchTxResults, ec.xChainResults...), ec.callbackTxResults...), ec.blockEndResult...), ec.genesisSysCtrResult...) + println("BATCH allResults: ", len(allResults)) + for _, res := range allResults { + println("Result : ", res.Receipt.TxHash.Hex()) + } receipts := allResults.Receipts() if len(receipts) == 0 { @@ -473,21 +484,16 @@ func (executor *batchExecutor) ExecuteBatch(ctx context.Context, batch *core.Bat println("Transaction Count - Computed:", len(cb.Batch.Transactions), "Incoming:", len(batch.Transactions)) println("Computed Hash:", cb.Batch.Hash().Hex()) println("Incoming Hash:", batch.Hash().Hex()) - println("=== End Comparison ===\n") - println("----COMPUTED BATCH TXS----") for _, rec := range cb.TxExecResults { - println("receipt txHash: ", rec.Receipt.TxHash.Hex()) + println("CB receipt txHash: ", rec.Receipt.TxHash.Hex()) + } + + for _, tx := range batch.Transactions { + println("INCOMING txHash: ", tx.Hash().Hex()) } - println("----END BATCH TXS----") - - // Add detailed receipt comparison - //println("\n=== Receipt Comparison ===") - //for i, txResult := range cb.TxExecResults { - // println(fmt.Sprintf("\nTransaction %d:", i)) - // println("Status - Computed:", txResult.Receipt.Status) - // println("GasUsed - Computed:", txResult.Receipt.GasUsed) - // println("CumulativeGasUsed - Computed:", txResult.Receipt.CumulativeGasUsed) + println("=== End Comparison ===\n") + // println("TxHash - Computed:", txResult.Receipt.TxHash.Hex()) // // // Compare logs @@ -549,12 +555,14 @@ func (executor *batchExecutor) populateOutboundCrossChainData(ctx context.Contex executor.logger.Error("Failed extracting L2->L1 messages", log.ErrKey, err, log.CmpKey, log.CrossChainCmp) return fmt.Errorf("could not extract cross chain messages. Cause: %w", err) } + println("populateOutboundCrossChainData crossChainMessages: ", len(crossChainMessages)) valueTransferMessages, err := executor.crossChainProcessors.Local.ExtractOutboundTransfers(ctx, receipts) if err != nil { executor.logger.Error("Failed extracting L2->L1 messages value transfers", log.ErrKey, err, log.CmpKey, log.CrossChainCmp) return fmt.Errorf("could not extract cross chain value transfers. Cause: %w", err) } + println("populateOutboundCrossChainData valueTransferMessages: ", len(valueTransferMessages)) xchainTree := make([][]interface{}, 0) diff --git a/go/host/l1/blockrepository.go b/go/host/l1/blockrepository.go index 78a1248155..a995e4ecb1 100644 --- a/go/host/l1/blockrepository.go +++ b/go/host/l1/blockrepository.go @@ -325,6 +325,7 @@ func (r *Repository) processCrossChainMessages(txLogs *logGroup, txData *common. if err != nil { return err } + println("CROSSCHAIN MESSAGE EVENT: ", txData.Receipt.TxHash.Hex()) txData.CrossChainMessages = &messages processed.AddEvent(common.CrossChainMessageTx, txData) } @@ -338,7 +339,7 @@ func (r *Repository) processValueTransfers(txLogs *logGroup, txData *common.L1Tx if err != nil { return err } - println("Value transfer event added") + println("VALUE TXF EVENT: ", txData.Receipt.TxHash.Hex()) txData.ValueTransfers = &transfers processed.AddEvent(common.CrossChainValueTranserTx, txData) }