|
@@ -523,7 +523,11 @@ describe("bolt", () => {
|
|
|
reimbursement: provider.wallet.publicKey,
|
|
|
});
|
|
|
const tx = new anchor.web3.Transaction().add(delegateIx);
|
|
|
- await provider.sendAndConfirm(tx);
|
|
|
+ try {
|
|
|
+ await provider.sendAndConfirm(tx);
|
|
|
+ } catch (error) {
|
|
|
+ console.log("error", error);
|
|
|
+ }
|
|
|
const acc = await provider.connection.getAccountInfo(
|
|
|
componentPositionEntity1Pda
|
|
|
);
|