Skip to content

Commit

Permalink
- Allow the tx query for validator gov proposals to run again now tha…
Browse files Browse the repository at this point in the history
…t we're ordering outside of the subquery
  • Loading branch information
dcshock committed Dec 31, 2024
1 parent 873564f commit 04e3d81
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -344,8 +344,7 @@ class TransactionControllerV2(private val transactionService: TransactionService
@RequestParam(required = false)
@DateTimeFormat(iso = DateTimeFormat.ISO.DATE)
toDate: DateTime?
) = PagedResults<TxGov>(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")
Expand Down

0 comments on commit 04e3d81

Please sign in to comment.