1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Fix approve transaction call in _onBootCleanUp (#16382)

This commit is contained in:
Jyoti Puri 2022-11-04 23:17:53 +05:30 committed by seaona
parent ae197d02b6
commit 1e681f9918

View File

@ -1844,7 +1844,7 @@ export default class TransactionController extends EventEmitter {
.forEach((txMeta) => {
// Line below will try to publish transaction which is in
// APPROVED state at the time of controller bootup
this.approveTransaction(txMeta);
this.approveTransaction(txMeta.id);
});
}