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
162fde17
Commit
162fde17
authored
Jul 14, 2020
by
aniket-engg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simulator type mismatch fix
parent
078a144f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
package.json
libs/remix-analyzer/package.json
+1
-1
package.json
libs/remix-debug/package.json
+1
-1
package.json
libs/remix-simulator/package.json
+1
-1
provider.js
libs/remix-simulator/src/provider.js
+2
-2
run.ts
libs/remix-tests/src/run.ts
+1
-1
runTestSources.ts
libs/remix-tests/src/runTestSources.ts
+1
-1
No files found.
libs/remix-analyzer/package.json
View file @
162fde17
{
{
"name"
:
"remix-analyzer"
,
"name"
:
"
@remix-project/
remix-analyzer"
,
"version"
:
"0.5.3"
,
"version"
:
"0.5.3"
,
"description"
:
"Tool to perform static analysis on Solidity smart contracts"
,
"description"
:
"Tool to perform static analysis on Solidity smart contracts"
,
"main"
:
"./dist/index.js"
,
"main"
:
"./dist/index.js"
,
...
...
libs/remix-debug/package.json
View file @
162fde17
{
{
"name"
:
"remix-debug"
,
"name"
:
"
@remix-project/
remix-debug"
,
"version"
:
"0.4.5"
,
"version"
:
"0.4.5"
,
"description"
:
"Tool to debug Ethereum transactions"
,
"description"
:
"Tool to debug Ethereum transactions"
,
"contributors"
:
[
"contributors"
:
[
...
...
libs/remix-simulator/package.json
View file @
162fde17
{
{
"name"
:
"remix-simulator"
,
"name"
:
"
@remix-project/
remix-simulator"
,
"version"
:
"0.1.9-beta.6"
,
"version"
:
"0.1.9-beta.6"
,
"description"
:
"Ethereum IDE and tools for the web"
,
"description"
:
"Ethereum IDE and tools for the web"
,
"contributors"
:
[
"contributors"
:
[
...
...
libs/remix-simulator/src/provider.js
View file @
162fde17
...
@@ -14,8 +14,8 @@ const Transactions = require('./methods/transactions.js')
...
@@ -14,8 +14,8 @@ const Transactions = require('./methods/transactions.js')
const
generateBlock
=
require
(
'./genesis.js'
)
const
generateBlock
=
require
(
'./genesis.js'
)
class
Provider
{
class
Provider
{
constructor
(
options
)
{
constructor
(
options
=
{}
)
{
this
.
options
=
options
||
{}
this
.
options
=
options
// TODO: init executionContext here
// TODO: init executionContext here
this
.
executionContext
=
executionContext
this
.
executionContext
=
executionContext
this
.
Accounts
=
new
Accounts
(
this
.
executionContext
)
this
.
Accounts
=
new
Accounts
(
this
.
executionContext
)
...
...
libs/remix-tests/src/run.ts
View file @
162fde17
...
@@ -48,7 +48,7 @@ commander
...
@@ -48,7 +48,7 @@ commander
log
.
info
(
'verbosity level set to '
+
commander
.
verbose
.
blue
)
log
.
info
(
'verbosity level set to '
+
commander
.
verbose
.
blue
)
}
}
const
web3
=
new
Web3
()
const
web3
=
new
Web3
()
const
provider
=
new
Provider
()
const
provider
:
any
=
new
Provider
()
await
provider
.
init
()
await
provider
.
init
()
web3
.
setProvider
(
provider
)
web3
.
setProvider
(
provider
)
...
...
libs/remix-tests/src/runTestSources.ts
View file @
162fde17
...
@@ -12,7 +12,7 @@ import { FinalResult, SrcIfc, compilationInterface, ASTInterface, Options,
...
@@ -12,7 +12,7 @@ import { FinalResult, SrcIfc, compilationInterface, ASTInterface, Options,
const
createWeb3Provider
=
async
function
()
{
const
createWeb3Provider
=
async
function
()
{
const
web3
=
new
Web3
()
const
web3
=
new
Web3
()
const
provider
=
new
Provider
()
const
provider
:
any
=
new
Provider
()
await
provider
.
init
()
await
provider
.
init
()
web3
.
setProvider
(
provider
)
web3
.
setProvider
(
provider
)
return
web3
return
web3
...
...
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