fix(solana_pusher): forgot await (#1423)

* fix(solana_pusher): forgot await

* pr comments
This commit is contained in:
guibescos 2024-04-05 19:13:09 +01:00 committed by GitHub
parent 44cad44f44
commit a632ee4bd2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 4 deletions

2
package-lock.json generated
View File

@ -56539,7 +56539,7 @@
},
"price_pusher": {
"name": "@pythnetwork/price-pusher",
"version": "6.3.1",
"version": "6.4.2",
"license": "Apache-2.0",
"dependencies": {
"@injectivelabs/sdk-ts": "1.10.72",

View File

@ -1,6 +1,6 @@
{
"name": "@pythnetwork/price-pusher",
"version": "6.3.1",
"version": "6.4.2",
"description": "Pyth Price Pusher",
"homepage": "https://pyth.network",
"main": "lib/index.js",

View File

@ -78,13 +78,17 @@ export class SolanaPricePusher implements IPricePusher {
const transactionBuilder = this.pythSolanaReceiver.newTransactionBuilder({
closeUpdateAccounts: true,
});
transactionBuilder.addUpdatePriceFeed(priceFeedUpdateData, this.shardId);
await transactionBuilder.addUpdatePriceFeed(
priceFeedUpdateData,
this.shardId
);
try {
await this.pythSolanaReceiver.provider.sendAll(
await transactionBuilder.buildVersionedTransactions({
computeUnitPriceMicroLamports: this.computeUnitPriceMicroLamports,
})
}),
{ skipPreflight: true }
);
console.log(new Date(), "updatePriceFeed successful");
} catch (e: any) {