diff options
author | chriseth <c@ethdev.com> | 2015-03-06 22:42:49 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-03-06 22:42:49 +0800 |
commit | ce29adc29f5d1b60f7739ad04434886a2571a4b7 (patch) | |
tree | d5f30a38e7d28a4aadfe386c5d2f4f2ef80b47d1 /solidityExecutionFramework.h | |
parent | 1234526c938504134b6b86252353ab5e2ae6319f (diff) | |
parent | 2650703ecef1f08f3669f27d9f872ea24f698679 (diff) | |
download | dexon-solidity-ce29adc29f5d1b60f7739ad04434886a2571a4b7.tar.gz dexon-solidity-ce29adc29f5d1b60f7739ad04434886a2571a4b7.tar.zst dexon-solidity-ce29adc29f5d1b60f7739ad04434886a2571a4b7.zip |
Merge pull request #1222 from chriseth/sol_copyFromCalldata
Copying between calldata and storage.
Diffstat (limited to 'solidityExecutionFramework.h')
-rw-r--r-- | solidityExecutionFramework.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solidityExecutionFramework.h b/solidityExecutionFramework.h index 4ef9bfdc..4ed3854b 100644 --- a/solidityExecutionFramework.h +++ b/solidityExecutionFramework.h @@ -178,7 +178,7 @@ protected: Address m_contractAddress; eth::State m_state; u256 const m_gasPrice = 100 * eth::szabo; - u256 const m_gas = 1000000; + u256 const m_gas = 100000000; bytes m_output; eth::LogEntries m_logs; }; |