Skip to content

Commit

Permalink
Fix _initEnvStream bug
Browse files Browse the repository at this point in the history
  • Loading branch information
gantunesr committed Dec 12, 2022
1 parent 143d838 commit 177576a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/Views/Wallet/WebviewExecutionService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ export default class WebviewExecutionService extends AbstractExecutionService<Wi
//document.getElementById(jobWrapper.id)?.remove();
}

protected async initEnvStream(jobId: string): Promise<{
protected async _initEnvStream(jobId: string): Promise<{
worker;
stream: BasePostMessageStream;
}> {
// eslint-disable-next-line no-console
console.log('------------INIT ENV STREAM----', jobId);
console.log('------------ [INIT ENV STREAM] ------------. Data:', jobId);
const iframeWindow = snapsState.webview;
const stream = snapsState.stream;

Expand Down

0 comments on commit 177576a

Please sign in to comment.