指定truffle中交易执行的自定义账户

Specifying the custom account for transaction execution in truffle

我在徘徊如何设置自定义账户来执行交易?例如在松露控制台我有类似

Hello.deployed().then(function(){h = instance})

,然后是

h.exetuceTransaction()

默认情况下将从帐户[0] 中燃烧气体。如何指定我要发送此交易的帐户(例如accouts[1])?

调用executeTransaction({"from" : "0x..." })检查The doc

时只需指定from参数即可