diff --git a/common/gateway-storage/src/models.rs b/common/gateway-storage/src/models.rs index 49fbc05761..fac26852da 100644 --- a/common/gateway-storage/src/models.rs +++ b/common/gateway-storage/src/models.rs @@ -33,7 +33,9 @@ impl TryFrom for SharedGatewayKey { &value.derived_aes256_gcm_siv_key, &value.derived_aes128_ctr_blake3_hmac_keys_bs58, ) { - (None, None) => Err(StorageError::MissingSharedKey { id: value.client_id }), + (None, None) => Err(StorageError::MissingSharedKey { + id: value.client_id, + }), (Some(aes256gcm_siv), _) => { let current_key = SharedSymmetricKey::try_from_bytes(aes256gcm_siv) .map_err(|source| StorageError::DataCorruption(source.to_string()))?;