func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) { core.Transfer(from, to, amount) }
func (self *Env) Transfer(from, to vm.Account, amount *big.Int) { if self.skipTransfer { return } core.Transfer(from, to, amount) }