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
fe70b95a
Commit
fe70b95a
authored
Aug 27, 2019
by
Iuri Matias
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove whisper module
parent
0b347188
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
17 deletions
+1
-17
whisper.js
remix-simulator/src/methods/whisper.js
+0
-15
provider.js
remix-simulator/src/provider.js
+1
-2
No files found.
remix-simulator/src/methods/whisper.js
deleted
100644 → 0
View file @
0b347188
var
Whisper
=
function
()
{
}
Whisper
.
prototype
.
methods
=
function
()
{
return
{
shh_version
:
this
.
shh_version
.
bind
(
this
)
}
}
Whisper
.
prototype
.
shh_version
=
function
(
payload
,
cb
)
{
cb
(
null
,
5
)
}
module
.
exports
=
Whisper
remix-simulator/src/provider.js
View file @
fe70b95a
...
...
@@ -10,7 +10,6 @@ const Filters = require('./methods/filters.js')
const
Misc
=
require
(
'./methods/misc.js'
)
const
Net
=
require
(
'./methods/net.js'
)
const
Transactions
=
require
(
'./methods/transactions.js'
)
const
Whisper
=
require
(
'./methods/whisper.js'
)
const
generateBlock
=
require
(
'./genesis.js'
)
...
...
@@ -24,8 +23,8 @@ var Provider = function (options) {
this
.
methods
=
merge
(
this
.
methods
,
(
new
Misc
()).
methods
())
this
.
methods
=
merge
(
this
.
methods
,
(
new
Filters
()).
methods
())
this
.
methods
=
merge
(
this
.
methods
,
(
new
Net
()).
methods
())
this
.
methods
=
merge
(
this
.
methods
,
(
this
.
Transactions
.
methods
()))
this
.
methods
=
merge
(
this
.
methods
,
(
new
Whisper
()).
methods
())
this
.
methods
=
merge
(
this
.
methods
,
(
new
Transactions
(
this
.
Accounts
.
accounts
)).
methods
())
generateBlock
()
}
...
...
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