Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/txm/lib/TransactionManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export type TransactionManagerConfig = {
url: string
/**
* The timeout for the RPC node.
* Defaults to 500 milliseconds.
* Defaults to 2000 milliseconds.
*/
timeout?: number
/**
Expand Down Expand Up @@ -181,7 +181,7 @@ export class TransactionManager {

const retries = _config.rpc.retries || 2
const retryDelay = _config.rpc.retryDelay || 50
const timeout = _config.rpc.timeout || 500
const timeout = _config.rpc.timeout || 2000

let transport: ViemTransport
if (this.transportProtocol === "http") {
Expand Down