Unverified Commit 3dd4f4f1 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #660 from bantic/patch-1

Fix typo in selfdestruct.js: planed -> planned
parents 20a87428 1249a70a
...@@ -16,7 +16,7 @@ selfdestruct.prototype.visit = function (node) { ...@@ -16,7 +16,7 @@ selfdestruct.prototype.visit = function (node) {
selfdestruct.prototype.report = function () { selfdestruct.prototype.report = function () {
return this.relevantNodes.map(function (item, i) { return this.relevantNodes.map(function (item, i) {
return { return {
warning: 'Use of selfdestruct: can block calling contracts unexpectedly. Be especially careful if this contract is planed to be used by other contracts (i.e. library contracts, interactions). Selfdestruction of the callee contract can leave callers in an inoperable state.', warning: 'Use of selfdestruct: can block calling contracts unexpectedly. Be especially careful if this contract is planned to be used by other contracts (i.e. library contracts, interactions). Selfdestruction of the callee contract can leave callers in an inoperable state.',
location: item.src, location: item.src,
more: 'https://paritytech.io/blog/security-alert.html' more: 'https://paritytech.io/blog/security-alert.html'
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment