Fixed MSTORE and added some more commets

This commit is contained in:
obscuren
2014-03-20 19:50:53 +01:00
parent f21eb88ad1
commit c68ff9886b
4 changed files with 51 additions and 18 deletions

View File

@ -235,6 +235,7 @@ func (st *ValueStack) Peekn() (*ethutil.Value, *ethutil.Value) {
func (st *ValueStack) Push(d *ethutil.Value) {
st.data = append(st.data, d)
}
func (st *ValueStack) Print() {
fmt.Println("### STACK ###")
if len(st.data) > 0 {