You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.
/* Get the transactions starting at the given block, for 1000 blocks */
.Get("/transactions/\\d+", router(&ApiDispatcher::getTransactionsFromHeight, walletMustBeOpen, viewWalletsAllowed))
/* Get the transactions starting at the given block, and ending at the given block */
.Get("/transactions/\\d+/\\d+", router(&ApiDispatcher::getTransactionsFromHeightToHeight, walletMustBeOpen, viewWalletsAllowed))
/* Get the transactions starting at the given block, for 1000 blocks, belonging to the given address */
.Get("/transactions/address/" + api_constants::addressRegex + "/\\d+", router(
&ApiDispatcher::getTransactionsFromHeightWithAddress, walletMustBeOpen, viewWalletsAllowed))
/* Get the transaction private key for the given hash */
.Get("/transactions/privatekey/" + api_constants::hashRegex, router(
&ApiDispatcher::getTxPrivateKey, walletMustBeOpen, viewWalletsBanned))
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: