in a single tx?
nope, you have to define method in the conract, wich runs several methods 😉
contract Target { function foo () public; function bar () public; } contract Batch { constructor (Target target) public { target.foo (); target.bar (); } } Like this?
i didn’t mean to create other contact
Обсуждают сегодня