Skip to content

Commit f5e50a4

Browse files
committed
removed logs
1 parent 364b630 commit f5e50a4

2 files changed

Lines changed: 0 additions & 4 deletions

File tree

src/content.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ class Content {
8282
if(msg.hasOwnProperty('payload') && msg.payload.hasOwnProperty('domain') && msg.payload.domain !== domain)
8383
throw new Error('Bad domain');
8484

85-
console.log(msg);
86-
8785
let nonSyncMessage = NetworkMessage.fromJson(msg);
8886
switch(msg.type){
8987
case 'sync': this.sync(msg); break;

src/plugins/defaults/eos.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ export default class EOS extends Plugin {
107107
}
108108

109109
actionParticipants(payload){
110-
console.log('payload', payload);
111110
return ObjectHelpers.flatten(
112111
payload.messages
113112
.map(message => message.authorization
@@ -269,7 +268,6 @@ const requestParser = async (_eos, signargs, httpEndpoint, possibleSigner, chain
269268
const contractAccountName = action.account;
270269

271270
const cachedABI = await messageSender(NetworkMessageTypes.ABI_CACHE, {abiContractName:contractAccountName, abiGet:true, chainId});
272-
console.log('cachedABI', cachedABI);
273271

274272
let abi = null;
275273
if(typeof cachedABI === 'object'){

0 commit comments

Comments
 (0)