We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75f10f4 commit 21935bfCopy full SHA for 21935bf
packages/core/src/validations.ts
@@ -447,7 +447,6 @@ export const validateMessageData = async <T extends protobufs.MessageData>(
447
} else if (validType.value === protobufs.MessageType.FRAME_ACTION && !!data.frameActionBody) {
448
bodyResult = validateFrameActionBody(data.frameActionBody);
449
} else if (validType.value === protobufs.MessageType.LEND_STORAGE && !!data.lendStorageBody) {
450
- // TODO(aditi): Validate storage lend
451
if (data.timestamp < farcasterTime.value - 60 * 10) {
452
bodyResult = err(new HubError("bad_request.validation_failure", "timestamp more than 10 mins in the past"));
453
} else {
0 commit comments