1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 09:57:02 +01: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 GitHub
parent 02b34dcd4a
commit 83ec64ddd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);
});
}