From 273a741cdf7fc7da2ce5f855b62dcf3396333a56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Mon, 29 May 2023 11:05:05 +0100 Subject: [PATCH] Fix typo in wasm-client x25519 keypair storage key (#3463) --- clients/webassembly/src/storage/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/webassembly/src/storage/mod.rs b/clients/webassembly/src/storage/mod.rs index 46e7feb627..f372e723ee 100644 --- a/clients/webassembly/src/storage/mod.rs +++ b/clients/webassembly/src/storage/mod.rs @@ -31,7 +31,7 @@ mod v1 { pub const GATEWAY_CONFIG: &str = "gateway_config"; pub const ED25519_IDENTITY_KEYPAIR: &str = "ed25519_identity_keypair"; - pub const X25519_ENCRYPTION_KEYPAIR: &str = "x25519_encryption_key"; + pub const X25519_ENCRYPTION_KEYPAIR: &str = "x25519_encryption_keypair"; // TODO: for those we could actually use the subtle crypto storage pub const AES128CTR_ACK_KEY: &str = "aes128ctr_ack_key";