Skip to content

Commit cdbfe34

Browse files
Merge pull request #83 from CoinageCrypto/remove-extra-logging
Remove excess logging.
2 parents fcc6acd + 78e3c73 commit cdbfe34

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/contracts/contractDeployer.ts

-8
Original file line numberDiff line numberDiff line change
@@ -153,16 +153,8 @@ export class ContractDeployer {
153153

154154
// Initialize account with name
155155
const account = new Account(accountName, privateKey);
156-
157-
console.log('Created account:');
158-
console.log(`Name: ${accountName}`);
159-
console.log(`Private Key: ${privateKey}`);
160-
161-
console.log('Setting up account');
162156
await AccountManager.setupAccount(account);
163157

164-
console.log('Success');
165-
166158
// Call the deployToAccount method with the account
167159
return await ContractDeployer.deployToAccount<T>(contractIdentifier, account);
168160
}

0 commit comments

Comments
 (0)