Skip to content

Commit

Permalink
Merge pull request #853 from crypto-com/fix/tendermint-blcokresult-at…
Browse files Browse the repository at this point in the history
…tributes-decode

FIX: missing configuration
  • Loading branch information
davcrypto authored Oct 17, 2023
2 parents c9ff06c + 695cbcd commit 49eaf7b
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions bootstrap/indexservice.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
Expand Down

0 comments on commit 49eaf7b

Please sign in to comment.