From 773c01b21a7d4e830d7ed4e58716539c563fecdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20C=C3=A1rdenas?= Date: Mon, 11 Dec 2023 10:33:07 -0600 Subject: [PATCH] fix: use the mempool etag for the /nonces endpoint (#1765) --- src/api/routes/address.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/routes/address.ts b/src/api/routes/address.ts index 66d0828d..78be2104 100644 --- a/src/api/routes/address.ts +++ b/src/api/routes/address.ts @@ -570,7 +570,7 @@ export function createAddressRouter(db: PgStore, chainId: ChainID): express.Rout router.get( '/:stx_address/nonces', - cacheHandler, + mempoolCacheHandler, asyncHandler(async (req, res) => { // get recent asset event associated with address const stxAddress = req.params['stx_address'];