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
622a5b05
Unverified
Commit
622a5b05
authored
Nov 26, 2017
by
Francesco Ceccon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix spelling in callcode and delegatecall warnings
parent
a22c7748
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lowLevelCalls.js
remix-solidity/src/analysis/modules/lowLevelCalls.js
+4
-4
No files found.
remix-solidity/src/analysis/modules/lowLevelCalls.js
View file @
622a5b05
...
...
@@ -33,14 +33,14 @@ lowLevelCalls.prototype.report = function (compilationResults) {
break
case
common
.
lowLevelCallTypes
.
CALLCODE
:
text
=
`use of "callcode": the use of low level "callcode" should be avoided whenever possible.
External code that is called can change the state of the calling contract and send ether f
or
m the caller's balance.
If this is wante
n
d behaviour use the Solidity library feature if possible.`
External code that is called can change the state of the calling contract and send ether f
ro
m the caller's balance.
If this is wanted behaviour use the Solidity library feature if possible.`
morehref
=
'http://solidity.readthedocs.io/en/develop/contracts.html#libraries'
break
case
common
.
lowLevelCallTypes
.
DELEGATECALL
:
text
=
`use of "delegatecall": the use of low level "delegatecall" should be avoided whenever possible.
External code that is called can change the state of the calling contract and send ether f
or
m the caller's balance.
If this is wante
n
d behaviour use the Solidity library feature if possible.`
External code that is called can change the state of the calling contract and send ether f
ro
m the caller's balance.
If this is wanted behaviour use the Solidity library feature if possible.`
morehref
=
'http://solidity.readthedocs.io/en/develop/contracts.html#libraries'
break
case
common
.
lowLevelCallTypes
.
SEND
:
...
...
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