Skip to content

Commit

Permalink
Use the same wording for the console log
Browse files Browse the repository at this point in the history
  • Loading branch information
indigolain authored Sep 25, 2022
1 parent e359e30 commit f052f84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions JS_DAO/en/Section_2/Lesson_1_Deploy_NFT_Bundle.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const sdk = new ThirdwebSDK(wallet);
(async () => {
try {
const address = await sdk.getSigner().getAddress();
console.log("SDK initialized by address:", address)
console.log("👋 SDK initialized by address:", address);
} catch (err) {
console.error("Failed to get apps from the sdk", err);
process.exit(1);
Expand All @@ -101,7 +101,7 @@ We're also running this:
(async () => {
try {
const address = await sdk.getSigner().getAddress();
console.log("👋 SDK initialized by address:", address)
console.log("👋 SDK initialized by address:", address);
} catch (err) {
console.error("Failed to get apps from the sdk", err);
process.exit(1);
Expand Down

0 comments on commit f052f84

Please sign in to comment.