Skip to content

Commit

Permalink
Upgrade @angular/cli to ~8.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tadajam committed Jun 1, 2019
1 parent 350deac commit 0d7702c
Show file tree
Hide file tree
Showing 5 changed files with 7,692 additions and 5,368 deletions.
2 changes: 1 addition & 1 deletion extension_scripts/background.ts
Expand Up @@ -190,7 +190,7 @@ class Background {
return this.keyring.signMessage(message, this.preferences.selectedAddress);
}

async sendRawTransaction(tx: string): Promise<string> {
async sendRawTransaction(tx: string): Promise<any> {
const hex = await this.keyring.signTransaction(tx, this.preferences.selectedAddress);
return MpchainUtil.sendTx(hex);
}
Expand Down
2 changes: 1 addition & 1 deletion extension_scripts/util.mpchain.ts
Expand Up @@ -179,7 +179,7 @@ export class MpchainUtil {
return this.mp('mempool', {address: address, page: page, limit: limit});
}

static sendTx(tx_hex: string): Promise<string> {
static sendTx(tx_hex: string): Promise<any> {
return this.mp('send_tx', {tx_hex: tx_hex});
}

Expand Down

0 comments on commit 0d7702c

Please sign in to comment.