Skip to content

Commit cceec0f

Browse files
committed
reverting addition of confirmed state
1 parent 01e0c0a commit cceec0f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

chains/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/jpillora/backoff v1.0.0
88
github.com/prometheus/client_golang v1.21.1
99
github.com/shopspring/decimal v1.4.0
10-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250617130623-1b825fd1d77e
10+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250618122926-ed203ecbf4ac
1111
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250115203616-a2ea5e50b260
1212
github.com/stretchr/testify v1.10.0
1313
go.uber.org/multierr v1.11.0

chains/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ github.com/sasha-s/go-deadlock v0.3.5 h1:tNCOEEDG6tBqrNDOX35j/7hL5FcFViG6awUGROb
9090
github.com/sasha-s/go-deadlock v0.3.5/go.mod h1:bugP6EGbdGYObIlx7pUZtWqlvo8k9H6vCBBsiChJQ5U=
9191
github.com/shopspring/decimal v1.4.0 h1:bxl37RwXBklmTi0C79JfXCEBD1cqqHt0bbgBAGFp81k=
9292
github.com/shopspring/decimal v1.4.0/go.mod h1:gawqmDU56v4yIKSwfBSFip1HdCCXN8/+DMd9qYNcwME=
93-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250617130623-1b825fd1d77e h1:UcF/QDseqx4uwujULxAQ6ai0d3rRXGXU9Vn1LVelils=
94-
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250617130623-1b825fd1d77e/go.mod h1:1ntZ0rtQpPx6h+xlcOJp0ccqHFaxTzW2Z62FJG358q0=
93+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250618122926-ed203ecbf4ac h1:86/Bqszwb4+1HWgr2vl8AaA8T+C84PuT8HmTQeTxm+w=
94+
github.com/smartcontractkit/chainlink-common v0.7.1-0.20250618122926-ed203ecbf4ac/go.mod h1:1ntZ0rtQpPx6h+xlcOJp0ccqHFaxTzW2Z62FJG358q0=
9595
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250115203616-a2ea5e50b260 h1:See2isL6KdrTJDlVKWv8qiyYqWhYUcubU2e5yKXV1oY=
9696
github.com/smartcontractkit/chainlink-framework/multinode v0.0.0-20250115203616-a2ea5e50b260/go.mod h1:4JqpgFy01LaqG1yM2iFTzwX3ZgcAvW9WdstBZQgPHzU=
9797
github.com/smartcontractkit/freeport v0.1.1 h1:B5fhEtmgomdIhw03uPVbVTP6oPv27fBhZsoZZMSIS8I=

chains/txmgr/txmgr.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,8 @@ func (b *Txm[CID, HEAD, ADDR, THASH, BHASH, R, SEQ, FEE]) GetTransactionStatus(c
716716
// Return pending for ConfirmedMissingReceipt since a receipt is required to consider it as unconfirmed
717717
return commontypes.Pending, nil
718718
case TxConfirmed:
719-
return commontypes.Confirmed, nil
719+
// Return unconfirmed for confirmed transactions because they are not yet finalized
720+
return commontypes.Unconfirmed, nil
720721
case TxFinalized:
721722
return commontypes.Finalized, nil
722723
case TxFatalError:

0 commit comments

Comments
 (0)