@@ -66,11 +66,11 @@ import { open } from "fs";
6666
6767// this test file isn't 'clean' or DRY or whatever; sorry!
6868const AUTOCRAT_PROGRAM_ID = new PublicKey (
69- "GLmTsw5A8DLCThjNgtMBKVDAG8EZYDVMic1pcjhGLiM1 "
69+ "meta3cxKzFBmWYgCVozmvCQAS3y9b3fGxrG9HkHL7Wi "
7070) ;
7171
7272const CONDITIONAL_VAULT_PROGRAM_ID = new PublicKey (
73- "4nCk4qKJSJf8pzJadMnr9LubA6Y7Zw3EacsVqH1TwVXH "
73+ "vaU1tVLj8RFk7mNj1BxqgAsMKKaL8UvEUHvU3tdbZPe "
7474) ;
7575
7676const OPENBOOK_TWAP_PROGRAM_ID = new PublicKey (
@@ -126,7 +126,6 @@ describe("autocrat_v0", async function () {
126126 OPENBOOK_TWAP_PROGRAM_ID ,
127127 provider
128128 ) ;
129- //console.log(openbookTwap);
130129
131130 vaultProgram = new Program < ConditionalVault > (
132131 ConditionalVaultIDL ,
@@ -230,7 +229,6 @@ describe("autocrat_v0", async function () {
230229
231230 // two days, so proposer should burn 30 SOL
232231 assert ( balanceAfter < balanceBefore - 1_000_000_000n * 30n ) ;
233- console . log ( balanceAfter ) ;
234232
235233 assert ( balanceAfter > balanceBefore - 1_000_000_000n * 35n ) ;
236234 } ) ;
@@ -596,9 +594,6 @@ describe("autocrat_v0", async function () {
596594 limit : 255 ,
597595 } ;
598596
599- console . log ( await getAccount ( banksClient , storedPassMarket . marketBaseVault ) ) ;
600- console . log ( OPENBOOK_PROGRAM_ID )
601-
602597 await openbookTwap . methods
603598 . placeTakeOrder ( takeBuyArgs )
604599 . accountsStrict ( {
@@ -936,9 +931,6 @@ describe("autocrat_v0", async function () {
936931 limit : 255 ,
937932 } ;
938933
939- console . log ( await getAccount ( banksClient , storedPassMarket . marketBaseVault ) ) ;
940- console . log ( OPENBOOK_PROGRAM_ID )
941-
942934 await openbookTwap . methods
943935 . placeTakeOrder ( takeBuyArgs )
944936 . accountsStrict ( {
0 commit comments