Skip to content

Commit

Permalink
Merge pull request #142 from blocknative/develop
Browse files Browse the repository at this point in the history
Release 1.2.4
  • Loading branch information
lnbc1QWFyb24 authored Jul 13, 2020
2 parents 7a27639 + cb33772 commit e79430a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bnc-notify",
"version": "1.2.3",
"version": "1.2.4",
"description": "Show web3 users realtime transaction notifications",
"keywords": [
"ethereum",
Expand Down
6 changes: 2 additions & 4 deletions src/transactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,7 @@ export function preflightTransaction(
if (
transaction &&
transaction.status === 'sent' &&
blocknative.status.connected &&
blocknative.status.nodeSynced
blocknative._connected
) {
const eventCode = 'txStallPending'

Expand All @@ -305,8 +304,7 @@ export function preflightTransaction(
if (
transaction &&
transaction.status === 'pending' &&
blocknative.status.connected &&
blocknative.status.nodeSynced
blocknative._connected
) {
const eventCode = 'txStallConfirmed'

Expand Down

0 comments on commit e79430a

Please sign in to comment.