Skip to content

Commit

Permalink
hack: RethnetAdapter.disableTracing: log not throw
Browse files Browse the repository at this point in the history
just so the broader test run can continue
  • Loading branch information
feuGeneA committed Feb 14, 2023
1 parent 27e9deb commit d64d4d0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,8 @@ export class RethnetAdapter implements VMAdapter {
* Stop tracing the execution.
*/
public disableTracing(): void {
throw new Error("not implemented");
console.log("RethnetAdapter.disableTracing not implemented");
// throw new Error("not implemented");
}

public async makeSnapshot(): Promise<Buffer> {
Expand Down

0 comments on commit d64d4d0

Please sign in to comment.