mirror of https://github.com/waku-org/waku-lab.git
fix: unique constrain, generate hashes (#90)
This commit is contained in:
parent
427be338eb
commit
671347d42f
|
@ -218,7 +218,7 @@ export async function app(telemetryClient: TelemetryClient) {
|
||||||
contentTopic: DEFAULT_CONTENT_TOPIC,
|
contentTopic: DEFAULT_CONTENT_TOPIC,
|
||||||
pubsubTopic: DEFAULT_PUBSUB_TOPIC,
|
pubsubTopic: DEFAULT_PUBSUB_TOPIC,
|
||||||
ephemeral: false,
|
ephemeral: false,
|
||||||
messageHash: "",
|
messageHash: await sha256(generateRandomNumber()),
|
||||||
errorMessage: result.error,
|
errorMessage: result.error,
|
||||||
extraData: DEFAULT_EXTRA_DATA_STR,
|
extraData: DEFAULT_EXTRA_DATA_STR,
|
||||||
});
|
});
|
||||||
|
@ -237,7 +237,7 @@ export async function app(telemetryClient: TelemetryClient) {
|
||||||
contentTopic: DEFAULT_CONTENT_TOPIC,
|
contentTopic: DEFAULT_CONTENT_TOPIC,
|
||||||
pubsubTopic: DEFAULT_PUBSUB_TOPIC,
|
pubsubTopic: DEFAULT_PUBSUB_TOPIC,
|
||||||
ephemeral: false,
|
ephemeral: false,
|
||||||
messageHash: "",
|
messageHash: await sha256(generateRandomNumber()),
|
||||||
errorMessage: fail.error,
|
errorMessage: fail.error,
|
||||||
extraData,
|
extraData,
|
||||||
};
|
};
|
||||||
|
@ -256,7 +256,7 @@ export async function app(telemetryClient: TelemetryClient) {
|
||||||
contentTopic: DEFAULT_CONTENT_TOPIC,
|
contentTopic: DEFAULT_CONTENT_TOPIC,
|
||||||
pubsubTopic: DEFAULT_PUBSUB_TOPIC,
|
pubsubTopic: DEFAULT_PUBSUB_TOPIC,
|
||||||
ephemeral: false,
|
ephemeral: false,
|
||||||
messageHash: "",
|
messageHash: await sha256(generateRandomNumber()),
|
||||||
errorMessage: "",
|
errorMessage: "",
|
||||||
extraData,
|
extraData,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue