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 806c37e commit 420350fCopy full SHA for 420350f
src/server/utils/wallets/getGcpKmsAccount.ts
@@ -52,12 +52,12 @@ export async function getGcpKmsAccount(
52
}
53
54
55
- // we had a bug previously where we previously called it "cryptoKeyVersion" instead of "cryptoKeyVersions"
+ // we had a bug previously where we previously called it "cryptoKeysVersion" instead of "cryptoKeyVersions"
56
// if we detect that, we'll fix it here
57
// TODO: remove this as a breaking change
58
const name = unprocessedName.includes("cryptoKeyVersions")
59
? unprocessedName
60
- : unprocessedName.replace("cryptoKeyVersion", "cryptoKeyVersions");
+ : unprocessedName.replace("cryptoKeysVersion", "cryptoKeyVersions");
61
62
const signer = new CloudKmsSigner(name, clientOptions);
63
0 commit comments