Skip to content

Commit 6faceb0

Browse files
fix(ci): update nix vendor hash and stabilize txm reaping/tidy checks
- update relayer/cmd/chainlink-tron vendorHash to current go-modules hash - make TestTxmTransactionReaping deterministic by slowing confirm polling - remove stale blank line in go.md so modgraph/check-tidy is clean
1 parent 4f392b5 commit 6faceb0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

go.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ flowchart LR
5858
classDef outline stroke-dasharray:6,fill:none;
5959
class chainlink-common-repo,chainlink-protos-repo outline
6060
```
61-
6261
## All modules
6362
```mermaid
6463
flowchart LR

relayer/cmd/chainlink-tron/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ in
1818
];
1919

2020
# pin the vendor hash (update using 'pkgs.lib.fakeHash')
21-
vendorHash = "sha256-DgTypXNwCZR9e2yMVqh+FSouhf/cDtAUDVp8ttqZgMA=";
21+
vendorHash = "sha256-GPxEWuqrz3Gay4aVu63DyjHedlz30mKB8vUjW/5oz7U=";
2222

2323
# postInstall script to write version and rev to share folder
2424
postInstall = ''

relayer/txm/txm_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,8 @@ func TestTxmTransactionReaping(t *testing.T) {
384384

385385
reapConfig := &trontxm.TronTxmConfig{
386386
BroadcastChanSize: 100,
387-
ConfirmPollSecs: 1,
387+
// Keep confirm loop idle so this test only validates reaping behavior.
388+
ConfirmPollSecs: 60,
388389
RetentionPeriod: 500 * time.Millisecond,
389390
ReapInterval: 50 * time.Millisecond,
390391
}

0 commit comments

Comments
 (0)