From 5cc7fca53a7b794f23ffa2dd5c84ce14f1d9073c Mon Sep 17 00:00:00 2001 From: Makram Kamaleddine Date: Tue, 9 Jul 2024 15:34:05 +0300 Subject: [PATCH] rm print statements --- core/services/ocr3/plugins/ccipevm/msghasher.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/core/services/ocr3/plugins/ccipevm/msghasher.go b/core/services/ocr3/plugins/ccipevm/msghasher.go index a0e615caeb..7553475f6d 100644 --- a/core/services/ocr3/plugins/ccipevm/msghasher.go +++ b/core/services/ocr3/plugins/ccipevm/msghasher.go @@ -101,16 +101,6 @@ func (h *MessageHasherV1) Hash(_ context.Context, msg cciptypes.Message) (ccipty return [32]byte{}, fmt.Errorf("abi encode fixed size values: %w", err) } - metaDataHash := utils.Keccak256Fixed(metaDataHashInput) - fixedSizeFieldsHash := utils.Keccak256Fixed(fixedSizeFieldsEncoded) - messageDataHash := utils.Keccak256Fixed(msg.Data) - encodedRampTokenAmountsHash := utils.Keccak256Fixed(encodedRampTokenAmounts) - fmt.Printf("metaDataHash: %x\n", metaDataHash[:]) - fmt.Printf("fixedSizeFieldsHash: %x\n", fixedSizeFieldsHash[:]) - fmt.Printf("messageDataHash: %x\n", messageDataHash[:]) - fmt.Printf("encodedRampTokenAmountsHash: %x\n", encodedRampTokenAmountsHash[:]) - fmt.Printf("gasLimit: %s\n", gasLimit.String()) - packedValues, err := abiEncode( "encodeFinalHashPreimage", leafDomainSeparator,