pull/5298/head
yann300 1 month ago committed by Aniket
parent 64a32004a3
commit eaf3c8ed25
  1. 4
      apps/remix-ide/src/app/tabs/runTab/model/recorder.js
  2. 2
      apps/remix-ide/src/app/udapp/run-tab.tsx

@ -21,7 +21,7 @@ const profile = {
/**
* Record transaction as long as the user create them.
*/
class Recorder extends Plugin {
export class Recorder extends Plugin {
constructor (blockchain) {
super(profile)
this.event = new EventManager()
@ -328,5 +328,3 @@ class Recorder extends Plugin {
})
}
}
module.exports = Recorder

@ -11,7 +11,7 @@ import type { Blockchain } from '../../blockchain/blockchain'
import type { CompilerArtefacts } from '@remix-project/core-plugin'
// import type { NetworkModule } from '../tabs/network-module'
// import type FileProvider from '../files/fileProvider'
const Recorder = require('../tabs/runTab/model/recorder.js')
import { Recorder } from '../tabs/runTab/model/recorder'
const _paq = (window._paq = window._paq || [])
const profile = {

Loading…
Cancel
Save