|
1 | 1 | import {
|
2 |
| - AccountInfo, |
3 | 2 | ComputeBudgetProgram,
|
4 | 3 | Connection,
|
5 | 4 | PublicKey,
|
@@ -32,26 +31,18 @@ solana.runOnSolana("update-auction-parameters", async (chain, signer, log) => {
|
32 | 31 |
|
33 | 32 | const priorityFee = ComputeBudgetProgram.setComputeUnitPrice({ microLamports: solana.priorityMicrolamports });
|
34 | 33 | const ownerOrAssistant = new PublicKey(await signer.getAddress());
|
35 |
| - const custodian = matchingEngine.custodianAddress(); |
36 | 34 |
|
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)); |
47 | 39 |
|
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, []); |
50 | 42 |
|
51 |
| - console.log(`Propose Transaction ID: ${proposeTxSig}, wait for confirmation...`); |
| 43 | + console.log(`Propose Transaction ID: ${proposeTxSig}, wait for confirmation...`); |
52 | 44 |
|
53 |
| - await connection.confirmTransaction(proposeTxSig, 'confirmed'); |
54 |
| - } |
| 45 | + await connection.confirmTransaction(proposeTxSig, 'confirmed'); |
55 | 46 |
|
56 | 47 | const updateInstructions = [];
|
57 | 48 | const updateIx = await matchingEngine.updateAuctionParametersIx({
|
|
0 commit comments