Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
54a8ccc3
Commit
54a8ccc3
authored
Apr 29, 2021
by
yann300
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove commited
parent
9377ad4b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
8 deletions
+0
-8
vmCall.ts
libs/remix-debug/test/decoder/vmCall.ts
+0
-1
execution-context.ts
libs/remix-lib/src/execution/execution-context.ts
+0
-5
web3VmProvider.ts
libs/remix-lib/src/web3Provider/web3VmProvider.ts
+0
-1
provider.ts
libs/remix-simulator/src/provider.ts
+0
-1
No files found.
libs/remix-debug/test/decoder/vmCall.ts
View file @
54a8ccc3
...
...
@@ -43,7 +43,6 @@ async function createVm (hardfork) {
const
common
=
new
Common
({
chain
:
'mainnet'
,
hardfork
})
const
vm
=
new
VM
({
common
})
await
vm
.
init
()
// vm.blockchain.validate = false
return
{
vm
,
stateManager
:
vm
.
stateManager
}
}
...
...
libs/remix-lib/src/execution/execution-context.ts
View file @
54a8ccc3
...
...
@@ -245,11 +245,6 @@ export class ExecutionContext {
if
(
!
infoCb
)
infoCb
=
()
=>
{}
if
(
context
===
'vm'
)
{
this
.
executionContext
=
context
/*
this.vms[this.currentFork].stateManager.revert().then(() => {
this.vms[this.currentFork].stateManager.checkpoint()
})
*/
this
.
event
.
trigger
(
'contextChanged'
,
[
'vm'
])
return
cb
()
}
...
...
libs/remix-lib/src/web3Provider/web3VmProvider.ts
View file @
54a8ccc3
...
...
@@ -109,7 +109,6 @@ export class Web3VmProvider {
tx
[
'to'
]
=
toChecksumAddress
(
data
.
to
.
toString
())
}
this
.
processingAddress
=
tx
[
'to'
]
// tx['data'] = hexConvert(data.data)
tx
[
'input'
]
=
hexConvert
(
data
.
data
)
tx
[
'gas'
]
=
data
.
gasLimit
.
toString
(
10
)
if
(
data
.
value
)
{
...
...
libs/remix-simulator/src/provider.ts
View file @
54a8ccc3
...
...
@@ -39,7 +39,6 @@ export class Provider {
this
.
methods
=
merge
(
this
.
methods
,
netMethods
())
this
.
methods
=
merge
(
this
.
methods
,
this
.
Transactions
.
methods
())
this
.
methods
=
merge
(
this
.
methods
,
(
new
Debug
(
this
.
executionContext
)).
methods
())
// this.init()
}
async
init
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment