Skip to content

Commit 5af3f4d

Browse files
committed
deployment: removes wrong check from update auction parameters
1 parent 354e58a commit 5af3f4d

File tree

1 file changed

+8
-17
lines changed

1 file changed

+8
-17
lines changed

deployment/scripts/solana/updateAuctionParameters.ts

+8-17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import {
2-
AccountInfo,
32
ComputeBudgetProgram,
43
Connection,
54
PublicKey,
@@ -32,26 +31,18 @@ solana.runOnSolana("update-auction-parameters", async (chain, signer, log) => {
3231

3332
const priorityFee = ComputeBudgetProgram.setComputeUnitPrice({ microLamports: solana.priorityMicrolamports });
3433
const ownerOrAssistant = new PublicKey(await signer.getAddress());
35-
const custodian = matchingEngine.custodianAddress();
3634

37-
const exists = await connection.getAccountInfo(custodian).then((acct: null | AccountInfo<Buffer>) => acct != null);
38-
if (exists) {
39-
log("Notice: proposal account already initialized");
40-
}
41-
else {
42-
43-
const proposeInstructions = [];
44-
const proposeIx = await matchingEngine.proposeAuctionParametersIx({
45-
ownerOrAssistant,
46-
}, getMatchingEngineAuctionParameters(chain));
35+
const proposeInstructions = [];
36+
const proposeIx = await matchingEngine.proposeAuctionParametersIx({
37+
ownerOrAssistant,
38+
}, getMatchingEngineAuctionParameters(chain));
4739

48-
proposeInstructions.push(proposeIx, priorityFee);
49-
const proposeTxSig = await solana.ledgerSignAndSend(connection, proposeInstructions, []);
40+
proposeInstructions.push(proposeIx, priorityFee);
41+
const proposeTxSig = await solana.ledgerSignAndSend(connection, proposeInstructions, []);
5042

51-
console.log(`Propose Transaction ID: ${proposeTxSig}, wait for confirmation...`);
43+
console.log(`Propose Transaction ID: ${proposeTxSig}, wait for confirmation...`);
5244

53-
await connection.confirmTransaction(proposeTxSig, 'confirmed');
54-
}
45+
await connection.confirmTransaction(proposeTxSig, 'confirmed');
5546

5647
const updateInstructions = [];
5748
const updateIx = await matchingEngine.updateAuctionParametersIx({

0 commit comments

Comments
 (0)