Skip to content

Commit

Permalink
Update api/relayer-config.ts
Browse files Browse the repository at this point in the history
Co-authored-by: James Morris, MS <[email protected]>
  • Loading branch information
md0x and james-a-morris authored Dec 11, 2024
1 parent 0ba0133 commit 12dfda9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/relayer-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const handlePostRequest = async (
) => {
const body = request.body as RelayerConfigUpdate;
const { authorization } = request.headers;
const { timestamp, relayerFillLimits } = body;
const { timestamp } = body;
if (!isTimestampValid(timestamp, MAX_MESSAGE_AGE_SECONDS)) {
return response.status(400).json({ message: "Message too old" });
}
Expand Down

0 comments on commit 12dfda9

Please sign in to comment.