Skip to content

Commit

Permalink
changes as per feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
vignesha22 committed Feb 28, 2024
1 parent 84670c8 commit d936934
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/src/paymaster/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ export class Paymaster {
}

return returnValue;
} catch (err) {
throw new Error('Failed to process request to bundler')
} catch (err: any) {
throw new Error('Failed to process request to bundler. Please contact support team RawErrorMsg:' + err.message)
}
}

Expand All @@ -81,7 +81,7 @@ export class Paymaster {
callGasLimit: response.callGasLimit,
};
} catch (err: any) {
throw new Error('Failed to process request to bundler ' + err.message)
throw new Error('Failed to process request to bundler. Please contact support team RawErrorMsg: ' + err.message)
}
}

Expand Down

0 comments on commit d936934

Please sign in to comment.