core: TMP testing code

This commit is contained in:
obscuren
2015-06-17 14:14:17 +02:00
parent bdd63837ea
commit 753d62a4dd
2 changed files with 23 additions and 21 deletions

View File

@ -26,16 +26,25 @@ type Context struct {
Args []byte
}
var dests destinations
func init() {
dests = make(destinations)
}
// Create a new context for the given data items.
func NewContext(caller ContextRef, object ContextRef, value, gas, price *big.Int) *Context {
c := &Context{caller: caller, self: object, Args: nil}
if parent, ok := caller.(*Context); ok {
// Reuse JUMPDEST analysis from parent context if available.
c.jumpdests = parent.jumpdests
} else {
c.jumpdests = make(destinations)
}
/*
if parent, ok := caller.(*Context); ok {
// Reuse JUMPDEST analysis from parent context if available.
c.jumpdests = parent.jumpdests
} else {
c.jumpdests = make(destinations)
}
*/
c.jumpdests = dests
// Gas should be a pointer so it can safely be reduced through the run
// This pointer will be off the state transition