Skip to content

Commit

Permalink
fix issues (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
0g-peterzhb authored Mar 4, 2025
1 parent 7c6fb3f commit 891231b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contract/contract.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var defaultTimeout = 30 * time.Second
var defaultMaxNonGasRetries = 10

func isRetriableSubmitLogEntryError(msg string) bool {
return strings.Contains(msg, specifiedBlockError)
return strings.Contains(msg, specifiedBlockError) || strings.Contains(msg, "mempool") || strings.Contains(msg, "timeout")
}

func NewFlowContract(flowAddress common.Address, clientWithSigner *web3go.Client) (*FlowContract, error) {
Expand Down

0 comments on commit 891231b

Please sign in to comment.