diff --git a/service/src/main/kotlin/io/provenance/explorer/web/v2/TransactionControllerV2.kt b/service/src/main/kotlin/io/provenance/explorer/web/v2/TransactionControllerV2.kt index 96d954e2..e43e63c8 100644 --- a/service/src/main/kotlin/io/provenance/explorer/web/v2/TransactionControllerV2.kt +++ b/service/src/main/kotlin/io/provenance/explorer/web/v2/TransactionControllerV2.kt @@ -344,8 +344,7 @@ class TransactionControllerV2(private val transactionService: TransactionService @RequestParam(required = false) @DateTimeFormat(iso = DateTimeFormat.ISO.DATE) toDate: DateTime? - ) = PagedResults(0, emptyList(), 0) -// transactionService.getGovernanceTxs(address, msgType, txStatus, page, count, fromDate, toDate) + ) = transactionService.getGovernanceTxs(address, msgType, txStatus, page, count, fromDate, toDate) @ApiOperation("Returns transactions for smart contract module with unique response type") @GetMapping("/module/smart_contract")