From 695cbcdf253973008a0ffdd73798c39d118fadd0 Mon Sep 17 00:00:00 2001 From: David So Date: Tue, 17 Oct 2023 12:25:04 +0800 Subject: [PATCH] FIX --- bootstrap/indexservice.go | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/bootstrap/indexservice.go b/bootstrap/indexservice.go index fe0dc702..b773e8d6 100644 --- a/bootstrap/indexservice.go +++ b/bootstrap/indexservice.go @@ -187,14 +187,15 @@ func (service *IndexService) RunTendermintDirectMode() error { }), RDbConn: service.rdbConn, Config: SyncManagerConfig{ - WindowSize: service.windowSize, - TendermintRPCUrl: service.tendermintHTTPRPCURL, - CosmosAppHTTPRPCURL: service.cosmosAppHTTPRPCURL, - InsecureTendermintClient: service.insecureTendermintClient, - InsecureCosmosAppClient: service.insecureCosmosAppClient, - AccountAddressPrefix: service.accountAddressPrefix, - StakingDenom: service.bondingDenom, - StartingBlockHeight: service.startingBlockHeight, + WindowSize: service.windowSize, + TendermintRPCUrl: service.tendermintHTTPRPCURL, + CosmosAppHTTPRPCURL: service.cosmosAppHTTPRPCURL, + InsecureTendermintClient: service.insecureTendermintClient, + InsecureCosmosAppClient: service.insecureCosmosAppClient, + AccountAddressPrefix: service.accountAddressPrefix, + StakingDenom: service.bondingDenom, + StartingBlockHeight: service.startingBlockHeight, + BlockResultEventAttributeDecodeMethod: service.BlockResultEventAttributeDecodeMethod, }, TxDecoder: service.txDecoder, },