Skip to content

Commit

Permalink
- noop the gov tx controller fetch for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
dcshock committed Dec 31, 2024
1 parent 277a222 commit 873564f
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package io.provenance.explorer.web.v2

import io.provenance.explorer.model.MsgTypeSet
import io.provenance.explorer.model.TxGov
import io.provenance.explorer.model.TxStatus
import io.provenance.explorer.model.base.PagedResults
import io.provenance.explorer.service.TransactionService
import io.swagger.annotations.Api
import io.swagger.annotations.ApiOperation
Expand Down Expand Up @@ -342,7 +344,8 @@ class TransactionControllerV2(private val transactionService: TransactionService
@RequestParam(required = false)
@DateTimeFormat(iso = DateTimeFormat.ISO.DATE)
toDate: DateTime?
) = transactionService.getGovernanceTxs(address, msgType, txStatus, page, count, fromDate, toDate)
) = PagedResults<TxGov>(0, emptyList(), 0)
// transactionService.getGovernanceTxs(address, msgType, txStatus, page, count, fromDate, toDate)

@ApiOperation("Returns transactions for smart contract module with unique response type")
@GetMapping("/module/smart_contract")
Expand Down

0 comments on commit 873564f

Please sign in to comment.