File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " bnc-notify" ,
3
- "version" : " 1.2.3 " ,
3
+ "version" : " 1.2.4 " ,
4
4
"description" : " Show web3 users realtime transaction notifications" ,
5
5
"keywords" : [
6
6
" ethereum" ,
Original file line number Diff line number Diff line change @@ -283,8 +283,7 @@ export function preflightTransaction(
283
283
if (
284
284
transaction &&
285
285
transaction . status === 'sent' &&
286
- blocknative . status . connected &&
287
- blocknative . status . nodeSynced
286
+ blocknative . _connected
288
287
) {
289
288
const eventCode = 'txStallPending'
290
289
@@ -305,8 +304,7 @@ export function preflightTransaction(
305
304
if (
306
305
transaction &&
307
306
transaction . status === 'pending' &&
308
- blocknative . status . connected &&
309
- blocknative . status . nodeSynced
307
+ blocknative . _connected
310
308
) {
311
309
const eventCode = 'txStallConfirmed'
312
310
You can’t perform that action at this time.
0 commit comments