Skip to content

Commit e79430a

Browse files
authored
Merge pull request #142 from blocknative/develop
Release 1.2.4
2 parents 7a27639 + cb33772 commit e79430a

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bnc-notify",
3-
"version": "1.2.3",
3+
"version": "1.2.4",
44
"description": "Show web3 users realtime transaction notifications",
55
"keywords": [
66
"ethereum",

src/transactions.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -283,8 +283,7 @@ export function preflightTransaction(
283283
if (
284284
transaction &&
285285
transaction.status === 'sent' &&
286-
blocknative.status.connected &&
287-
blocknative.status.nodeSynced
286+
blocknative._connected
288287
) {
289288
const eventCode = 'txStallPending'
290289

@@ -305,8 +304,7 @@ export function preflightTransaction(
305304
if (
306305
transaction &&
307306
transaction.status === 'pending' &&
308-
blocknative.status.connected &&
309-
blocknative.status.nodeSynced
307+
blocknative._connected
310308
) {
311309
const eventCode = 'txStallConfirmed'
312310

0 commit comments

Comments
 (0)