1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 10:30:04 +01:00

use async with #publishTransaction

This commit is contained in:
frankiebee 2017-08-02 19:09:37 -04:00
parent 0808eb2256
commit 340dbe75fc

View File

@ -82,8 +82,8 @@ module.exports = class txProvideUtils {
return ethTx
}
publishTransaction (rawTx) {
return this.query.sendRawTransaction(rawTx)
async publishTransaction (rawTx) {
return await this.query.sendRawTransaction(rawTx)
}
async validateTxParams (txParams) {