Conversation
For referencing, especially when it hasn't been mentioned but not discussed in detail previously e.g. here and here.
Removed backticks
Merge release back into develop.
Set version to 0.4.16.
fix typo 'onte' -> 'onto'
Remove some global symbols
Rename Token::Const to Token::Constant
CMake: Fix FindZ3
Add libz3-dev to the snap build-packages
Adding storage into the pointer for Voter delegate
Also prevent too much recursion in the assembly parser.
Require libz3-dev for ubuntu PPA builds.
WIP: CMake: Better handle -fstack-protector flag support
Fix link to Russian version on wiki
Introduce pure specifier on functions
In the Mist app, the Blind Action contract cannot compile because it cannot accept implicit conversion of integer to byte32. I just added the conversion method byte32 in line 470 for bid.blindedBid.
Update on the example for BlindAction
Rename statemutability to stateMutability in ABI/AST
Prepare 0.4.16 release.
Describe experimental features.
Jan-Bolhuis
reviewed
Sep 1, 2017
| sender.voted = true; | ||
| sender.delegate = to; | ||
| Voter delegate = voters[to]; | ||
| Voter storage delegate = voters[to]; |
There was a problem hiding this comment.
Hi all,
Adding the storage keyword does not solve in Mist browser 0.9.0.
I added the storage keyword so the simplifid code below:
pragma solidity ^0.4.13;
contract Example{
struct Student{
string storage studentName;
bool active;
}
}
And I get: Expected identifier, got 'eth_compileSolidity' string storage studentName;
In Remix it is fine without the storage keyword.
If I am not in the right place to put this comment, please let me know.
Jan
Contributor
Author
There was a problem hiding this comment.
There was a problem in an earlier Solidity version which would report a warning on struct definitions. This can only be fixed by upgrading the compiler, and not by modifying the source code.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.