From 44384ca77c0e10fc6945407f9b1adc3ebccd2444 Mon Sep 17 00:00:00 2001 From: cam-schultz Date: Tue, 5 Sep 2023 22:31:31 +0000 Subject: [PATCH] fix test --- vms/evm/subscriber.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vms/evm/subscriber.go b/vms/evm/subscriber.go index 24c61e5e..0a267bb0 100644 --- a/vms/evm/subscriber.go +++ b/vms/evm/subscriber.go @@ -166,7 +166,7 @@ func (s *subscriber) ProcessFromHeight(height *big.Int) error { toBlock := big.NewInt(0).SetUint64(latestBlock) if height.Cmp(big.NewInt(0).Add(toBlock, big.NewInt(-MaxBlocksToProcess))) < 0 { s.logger.Warn( - fmt.Sprintf("Requested to process too many blocks. Processing only the most recent %s blocks", MaxBlocksToProcess), + fmt.Sprintf("Requested to process too many blocks. Processing only the most recent %d blocks", MaxBlocksToProcess), zap.String("requestedBlockHeight", height.String()), zap.String("latestBlockHeight", toBlock.String()), )