Node/Gateway: Relayer not detecting error (#3312)

This commit is contained in:
bruce-riley 2023-08-22 14:46:27 -05:00 committed by GitHub
parent a1d5ac2b46
commit 910d20340e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ func SubmitVAAToContract(
return txResp, fmt.Errorf("out of gas: %s", txResp.TxResponse.RawLog)
}
if strings.Contains(txResp.TxResponse.RawLog, "failed to execute message") {
if strings.Contains(txResp.TxResponse.RawLog, "failed") {
return txResp, fmt.Errorf("submit failed: %s", txResp.TxResponse.RawLog)
}