Skip to content

Commit 16c6533

Browse files
authored
fix: correct kms:add-device success message (#508)
The success message incorrectly said "Device compose hash added successfully" instead of "Device ID added successfully".
1 parent 1f1138b commit 16c6533

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kms/auth-eth/hardhat.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ task("kms:add-device", "Add a device ID of an KMS instance")
196196
const kmsContract = await getKmsContract(ethers);
197197
const tx = await kmsContract.addKmsDevice(deviceId);
198198
await waitTx(tx);
199-
console.log("Device compose hash added successfully");
199+
console.log("Device ID added successfully");
200200
});
201201

202202
task("kms:remove-device", "Remove a device ID")

0 commit comments

Comments
 (0)