예제 #1
0
파일: vm_env.go 프로젝트: zramsay/geth-tmsp
func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) {
	core.Transfer(from, to, amount)
}
예제 #2
0
파일: util.go 프로젝트: j4ustin/go-ethereum
func (self *Env) Transfer(from, to vm.Account, amount *big.Int) {
	if self.skipTransfer {
		return
	}
	core.Transfer(from, to, amount)
}