more fixes from review

This commit is contained in:
Ethan Buchman
2015-04-17 13:18:50 -07:00
parent 75049ec827
commit 65f669160f
9 changed files with 39 additions and 25 deletions

View File

@ -12,7 +12,7 @@ import (
func execTxWithState(state *State, tx types.Tx, runCall bool) error {
cache := NewBlockCache(state)
err := ExecTx(cache, tx, runCall, false)
err := ExecTx(cache, tx, runCall, nil)
if err != nil {
return err
} else {