Commit Graph

13906 Commits

Author SHA1 Message Date
CJentzsch
cd9262badf Merge remote-tracking branch 'upstream/develop' into addTests
Conflicts:
	test/CMakeLists.txt
	test/ttTransactionTestFiller.json
2015-02-23 12:28:42 +01:00
CJentzsch
154d439cf8 merge 2015-02-23 12:26:31 +01:00
Gav Wood
9a764055ac Merge pull request #1109 from CJentzsch/TransactionBugFix
Transaction bug fix
2015-02-23 10:44:52 +01:00
Gav Wood
45fdd9b007 Merge pull request #1107 from chriseth/sol_inheritableIsInternal
Replaced "inheritable" by "internal".
2015-02-23 10:42:59 +01:00
Gav Wood
f9781f6729 Merge pull request #1107 from chriseth/sol_inheritableIsInternal
Replaced "inheritable" by "internal".
2015-02-23 10:42:59 +01:00
winsvega
87912744c7 Quadratic complexity test 2015-02-23 12:34:29 +03:00
CJentzsch
5554861fb3 fix too-small-address-length bug in transaction 2015-02-23 08:29:56 +01:00
CJentzsch
f924681adf add new mem test for quadratic mem gas costs 2015-02-23 08:15:36 +01:00
Christian
a17108e3bc Replaced "inheritable" by "internal". 2015-02-22 19:37:54 +01:00
Christian
c8d4ab1ca0 Replaced "inheritable" by "internal". 2015-02-22 19:37:54 +01:00
Christian
e7528c6af8 Stack height checks and fix. 2015-02-22 19:16:40 +01:00
Christian
d85bfe1452 Stack height checks and fix. 2015-02-22 19:16:40 +01:00
Lefteris Karapetsas
c62828c8ff Adding default value to isLibrary 2015-02-21 18:55:55 +01:00
Christian
9798d700dd Allow conversion to dynamic arrays and update grammar. 2015-02-21 18:25:08 +01:00
Christian
261786d909 Allow conversion to dynamic arrays and update grammar. 2015-02-21 18:25:08 +01:00
Lefteris Karapetsas
3367bf4b95 Removing temporary contracts
- They are now added as importable libraries
2015-02-21 16:31:25 +01:00
Lefteris Karapetsas
7b709c7c8a Adding Libraries as source units 2015-02-21 16:03:44 +01:00
Christian
be15e0b424 Index access. 2015-02-21 15:10:02 +01:00
Christian
c8cec8d0b3 Parsing of array types and basic implementation. 2015-02-21 15:10:01 +01:00
Christian
5e32083179 Parsing of array types and basic implementation. 2015-02-21 15:10:01 +01:00
chriseth
75498a48d8 Merge pull request #1093 from LianaHus/sol_InlineMemberInits
Inline member inits
2015-02-21 14:53:45 +01:00
Liana Husikyan
fa3cd1cdc2 renamed local vaiable in fromDeclaration
added missing endvisit
2015-02-20 23:04:32 +01:00
Liana Husikyan
d0c36795a0 renamed fromIdentifier to fromStateVariable 2015-02-20 22:51:23 +01:00
Liana Husikyan
858acaa193 corrected accept for variableDeclaration
changes after code review
2015-02-20 22:51:16 +01:00
Liana Husikyan
1ed86b33bc cosmetic changes 2015-02-20 22:51:16 +01:00
Liana Husikyan
4144c63d9f Inline member initialisation
renamed VariableDefinition class to VariableDeclarationStatement
added tests
2015-02-20 22:50:34 +01:00
Liana Husikyan
52050201e3 Inline member initialisation
renamed VariableDefinition class to VariableDeclarationStatement
added tests
2015-02-20 22:50:34 +01:00
Gav Wood
f7a09848f7 Add EVMJIT. 2015-02-20 21:59:21 +01:00
Gav Wood
c4cc2bcea7 Add EVMJIT. 2015-02-20 21:59:21 +01:00
Gav Wood
b804ef818a Add EVMJIT. 2015-02-20 21:59:21 +01:00
Gav Wood
9b3886ec19 Add EVMJIT. 2015-02-20 21:59:21 +01:00
Gav Wood
4959e0e35c Add EVMJIT. 2015-02-20 21:59:21 +01:00
Gav Wood
89d84edb16 Merge branch 'develop'
Conflicts:
	README.md
	evmjit
	libdevcrypto/CryptoPP.cpp
	libethereum/State.cpp
	neth/main.cpp
2015-02-20 21:56:37 +01:00
Gav Wood
8524051166 cppcheck fixes. 2015-02-20 21:00:13 +01:00
Gav Wood
9281eb507d Merge pull request #1091 from chriseth/accountProxyQueues
Account proxy queues
2015-02-20 20:30:04 +01:00
Christian
ba0a8a2bfc Implemented account proxy queues. 2015-02-20 18:48:45 +01:00
winsvega
c1d415fba1 New Solidity Tests 2015-02-20 17:07:51 +03:00
winsvega
853cf07e43 Merge branch 'develop' of https://github.com/ethereum/cpp-ethereum into develop 2015-02-20 13:49:32 +03:00
chriseth
3e79e23841 Merge pull request #1092 from LefterisJP/sol_BugOverrideFunctionByteArrayParam
Bugfix for functions override
2015-02-20 10:16:31 +01:00
Gav Wood
52d1531c76 Merge pull request #1071 from winsvega/develop
Test Correction
2015-02-19 23:39:57 +01:00
Gav Wood
28c2747e88 Merge pull request #1082 from debris/jsonrpc
latest changes from ethereum.js
2015-02-19 23:38:47 +01:00
Gav Wood
211ba446fe Fix gas limit.
Disable whisper test until alex fixes networking.
2015-02-19 17:56:42 +01:00
Lefteris Karapetsas
26132363d5 Bugfix for functions override
- Functions with byte array type parameters can now be safely
  overriden. Parameter location is now set at the right place.

- Also made a test for the fix
2015-02-19 17:43:53 +01:00
Lefteris Karapetsas
0398ef109c Bugfix for functions override
- Functions with byte array type parameters can now be safely
  overriden. Parameter location is now set at the right place.

- Also made a test for the fix
2015-02-19 17:43:53 +01:00
winsvega
e832fec8d5 Merge branch 'develop' of https://github.com/ethereum/cpp-ethereum into develop 2015-02-19 16:55:03 +03:00
Marek Kotewicz
d9e38eb3a8 Merge branch 'develop' into jsonrpc 2015-02-19 08:21:02 +01:00
Gav Wood
98739c362a Merge pull request #1087 from chriseth/sol_changeProtectedToInheritable
Rename "protected" to "inheritable".
2015-02-18 14:10:08 +01:00
Gav Wood
a2f5ea88b8 Merge pull request #1087 from chriseth/sol_changeProtectedToInheritable
Rename "protected" to "inheritable".
2015-02-18 14:10:08 +01:00
Christian
a26d72472d Rename "protected" to "inheritable". 2015-02-18 13:35:12 +01:00
Christian
8d658ce5a2 Rename "protected" to "inheritable". 2015-02-18 13:35:12 +01:00