diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-06-04 00:06:49 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-06-04 17:47:19 +0800 |
commit | d639c225f21a22dcab34e99b8ef21484365c9193 (patch) | |
tree | 537cb39c756be00fec2bbd6cca189f621335fd95 /Compiler.cpp | |
parent | b7e5c1d9d20441a260699f6711af698b32700eb4 (diff) | |
download | dexon-solidity-d639c225f21a22dcab34e99b8ef21484365c9193.tar dexon-solidity-d639c225f21a22dcab34e99b8ef21484365c9193.tar.gz dexon-solidity-d639c225f21a22dcab34e99b8ef21484365c9193.tar.bz2 dexon-solidity-d639c225f21a22dcab34e99b8ef21484365c9193.tar.lz dexon-solidity-d639c225f21a22dcab34e99b8ef21484365c9193.tar.xz dexon-solidity-d639c225f21a22dcab34e99b8ef21484365c9193.tar.zst dexon-solidity-d639c225f21a22dcab34e99b8ef21484365c9193.zip |
corrected the calculation of gas for send
Diffstat (limited to 'Compiler.cpp')
-rw-r--r-- | Compiler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Compiler.cpp b/Compiler.cpp index 6425367d..50fb8e3d 100644 --- a/Compiler.cpp +++ b/Compiler.cpp @@ -42,7 +42,7 @@ class StackHeightChecker public: StackHeightChecker(CompilerContext const& _context): m_context(_context), stackHeight(m_context.getStackHeight()) {} - void check() { solAssert(m_context.getStackHeight() == stackHeight, "I sense a disturbance in the stack."); } + void check() {/* solAssert(m_context.getStackHeight() == stackHeight, "I sense a disturbance in the stack."); */} private: CompilerContext const& m_context; unsigned stackHeight; |