aboutsummaryrefslogtreecommitdiffstats
path: root/docs/security-considerations.rst
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-03-16 06:58:14 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-03-16 06:58:14 +0800
commita0d6ac63cca61e2916bbe74e2575d3fd48395467 (patch)
tree4f0ca8cffb4194849d15635e0adfac7cb59e0dca /docs/security-considerations.rst
parent0157b86ce655a8dd83f402039a4740a9b7d2eea6 (diff)
downloaddexon-solidity-a0d6ac63cca61e2916bbe74e2575d3fd48395467.tar
dexon-solidity-a0d6ac63cca61e2916bbe74e2575d3fd48395467.tar.gz
dexon-solidity-a0d6ac63cca61e2916bbe74e2575d3fd48395467.tar.bz2
dexon-solidity-a0d6ac63cca61e2916bbe74e2575d3fd48395467.tar.lz
dexon-solidity-a0d6ac63cca61e2916bbe74e2575d3fd48395467.tar.xz
dexon-solidity-a0d6ac63cca61e2916bbe74e2575d3fd48395467.tar.zst
dexon-solidity-a0d6ac63cca61e2916bbe74e2575d3fd48395467.zip
Replace references to browser-solidity with Remix
Diffstat (limited to 'docs/security-considerations.rst')
-rw-r--r--docs/security-considerations.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/security-considerations.rst b/docs/security-considerations.rst
index 77e1bf08..7c3f87ee 100644
--- a/docs/security-considerations.rst
+++ b/docs/security-considerations.rst
@@ -117,7 +117,7 @@ Sending and Receiving Ether
During the execution of the fallback function, the contract can only rely
on the "gas stipend" (2300 gas) being available to it at that time. This stipend is not enough to access storage in any way.
To be sure that your contract can receive Ether in that way, check the gas requirements of the fallback function
- (for example in the "details" section in browser-solidity).
+ (for example in the "details" section in Remix).
- There is a way to forward more gas to the receiving contract using
``addr.call.value(x)()``. This is essentially the same as ``addr.send(x)``,