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
eb6292a6
Unverified
Commit
eb6292a6
authored
Nov 27, 2017
by
yann300
Committed by
GitHub
Nov 27, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #622 from fracek/fix-spelling
Fix spelling in callcode and delegatecall warnings
parents
a22c7748
622a5b05
Show 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 @
eb6292a6
...
@@ -33,14 +33,14 @@ lowLevelCalls.prototype.report = function (compilationResults) {
...
@@ -33,14 +33,14 @@ lowLevelCalls.prototype.report = function (compilationResults) {
break
break
case
common
.
lowLevelCallTypes
.
CALLCODE
:
case
common
.
lowLevelCallTypes
.
CALLCODE
:
text
=
`use of "callcode": the use of low level "callcode" should be avoided whenever possible.
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.
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 wante
n
d behaviour use the Solidity library feature if possible.`
If this is wanted behaviour use the Solidity library feature if possible.`
morehref
=
'http://solidity.readthedocs.io/en/develop/contracts.html#libraries'
morehref
=
'http://solidity.readthedocs.io/en/develop/contracts.html#libraries'
break
break
case
common
.
lowLevelCallTypes
.
DELEGATECALL
:
case
common
.
lowLevelCallTypes
.
DELEGATECALL
:
text
=
`use of "delegatecall": the use of low level "delegatecall" should be avoided whenever possible.
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.
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 wante
n
d behaviour use the Solidity library feature if possible.`
If this is wanted behaviour use the Solidity library feature if possible.`
morehref
=
'http://solidity.readthedocs.io/en/develop/contracts.html#libraries'
morehref
=
'http://solidity.readthedocs.io/en/develop/contracts.html#libraries'
break
break
case
common
.
lowLevelCallTypes
.
SEND
:
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