Some renames and small fixes.

This commit is contained in:
Jae Kwon
2015-04-08 12:30:49 -07:00
parent 6b5383918f
commit 7356556938
12 changed files with 28 additions and 28 deletions

View File

@ -32,9 +32,9 @@ func (st *Stack) useGas(gasToUse uint64) {
}
func (st *Stack) setErr(err error) {
//if *st.err != nil {
*st.err = err
//}
if *st.err == nil {
*st.err = err
}
}
func (st *Stack) Push(d Word256) {