mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
Fix incorrect promise instantiation
This commit is contained in:
parent
70132e6df6
commit
73e5ae6e29
@ -56,7 +56,7 @@ class NonceTracker {
|
||||
const blockTracker = this._getBlockTracker()
|
||||
const currentBlock = blockTracker.getCurrentBlock()
|
||||
if (currentBlock) return currentBlock
|
||||
return await Promise((reject, resolve) => {
|
||||
return await new Promise((reject, resolve) => {
|
||||
blockTracker.once('latest', resolve)
|
||||
})
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user