Skip to content

Commit

Permalink
web-ui: Add the transaction id to the generated transaction label
Browse files Browse the repository at this point in the history
when the transaction id is generated the value was only showed in the notification service
  • Loading branch information
adinael committed Oct 27, 2020
1 parent 32264fd commit c81e703
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,11 +178,11 @@ export class TrezorConnectComponent implements OnInit {
outputs: outputs,
refTxs: txs,
coin: 'Stakenet'
}).then((result) => {
}).then(async (result) => {
if (result.payload.error) {
this.notificationService.error(result);
} else {
this.pushTransaction(result.payload.serializedTx);
this.txid = await this.pushTransaction(result.payload.serializedTx);
}
});
});
Expand Down

0 comments on commit c81e703

Please sign in to comment.