コード例 #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)
}