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 d52ff62 commit a282516Copy full SHA for a282516
api/helper.js
@@ -125,7 +125,7 @@ export function genKeyPair(seed = randomUUID()){
125
export function decoratePayload(payload){
126
// Idempotency_key to uniquely identify a payload
127
const id = randStr();
128
- return {id: id, data: payload};
+ return {id: id, time: Date.now(), data: payload};
129
}
130
131
export async function publicProduce(publicKey, data){
0 commit comments