We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3edf9c commit 8f7b6eeCopy full SHA for 8f7b6ee
price_pusher/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@pythnetwork/price-pusher",
3
- "version": "5.3.1",
+ "version": "5.3.2",
4
"description": "Pyth Price Pusher",
5
"homepage": "https://pyth.network",
6
"main": "lib/index.js",
price_pusher/src/injective/injective.ts
@@ -174,7 +174,7 @@ export class InjectivePricePusher implements IPricePusher {
174
return txResponse;
175
} catch (e: any) {
176
// The sequence number was invalid and hence we will have to fetch it again.
177
- if (e.message.match(/account sequence mismatch/) !== null) {
+ if (JSON.stringify(e).match(/account sequence mismatch/) !== null) {
178
// We need to fetch the account details again.
179
this.account = null;
180
}
0 commit comments