Skip to content

Commit

Permalink
Fix Broadcast Sync Type
Browse files Browse the repository at this point in the history
  • Loading branch information
joelsmith-2019 committed Oct 4, 2024
1 parent d87a7ed commit e6b203f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion node/pkg/wormconn/send_tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func (c *ClientConn) SignAndBroadcastTx(ctx context.Context, msg sdktypes.Msg) (
txResp, err := client.BroadcastTx(
ctx,
&sdktx.BroadcastTxRequest{
Mode: sdktx.BroadcastMode_BROADCAST_MODE_BLOCK,
Mode: sdktx.BroadcastMode_BROADCAST_MODE_SYNC,
TxBytes: txBytes,
},
)
Expand Down
8 changes: 4 additions & 4 deletions wormchain/contracts/tools/__tests__/test_ntt_accountant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ describe("NTT Global Accountant Tests", () => {
transport: NodeHttpTransport(),
},
1000,
180
30
);
await waitForMetricsChange(
(afterMetrics) =>
Expand Down Expand Up @@ -1164,7 +1164,7 @@ describe("NTT Global Accountant Tests", () => {
transport: NodeHttpTransport(),
},
1000,
180
30
);
await waitForMetricsChange(
(afterMetrics) =>
Expand Down Expand Up @@ -1240,7 +1240,7 @@ describe("NTT Global Accountant Tests", () => {
transport: NodeHttpTransport(),
},
1000,
180
30
);
await waitForMetricsChange(
(afterMetrics) =>
Expand Down Expand Up @@ -1528,7 +1528,7 @@ describe("NTT Global Accountant Tests", () => {
transport: NodeHttpTransport(),
},
1000,
180
30
);
await waitForMetricsChange(
(afterMetrics) =>
Expand Down

0 comments on commit e6b203f

Please sign in to comment.