Skip to content

Commit

Permalink
wire in nav service
Browse files Browse the repository at this point in the history
  • Loading branch information
nullpointer0x00 committed Nov 13, 2024
1 parent ed09fb4 commit c79af80
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ import io.provenance.explorer.service.BlockService
import io.provenance.explorer.service.GovService
import io.provenance.explorer.service.GroupService
import io.provenance.explorer.service.IbcService
import io.provenance.explorer.service.NavService
import io.provenance.explorer.service.NftService
import io.provenance.explorer.service.SmartContractService
import io.provenance.explorer.service.ValidatorService
Expand All @@ -137,7 +138,9 @@ class BlockAndTxProcessor(
private val smContractService: SmartContractService,
private val props: ExplorerProperties,
private val msgFeeClient: MsgFeeGrpcClient,
private val groupService: GroupService
private val groupService: GroupService,
private val navService: NavService

) {

protected val logger = logger(BlockAndTxProcessor::class)
Expand Down Expand Up @@ -298,6 +301,7 @@ class BlockAndTxProcessor(
saveSmartContractData(res, txInfo, txUpdate)
saveNameData(res, txInfo)
groupService.saveGroups(res, txInfo, txUpdate)
navService.saveNavs(res, txInfo, txUpdate)
saveSignaturesTx(res, txInfo, txUpdate)

return TxUpdatedItems(addrs, markers, txUpdate)
Expand Down

0 comments on commit c79af80

Please sign in to comment.