From 3c663b12e4245b7b6ab403ea3ad4d8a018f3e54c Mon Sep 17 00:00:00 2001 From: thesn10 <38666407+thesn10@users.noreply.github.com> Date: Sun, 24 May 2026 16:27:52 +0200 Subject: [PATCH] gitignore & formating --- .gitignore | 3 +-- programs/descro/src/instructions/create_escrow.rs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index a705e88..e1157dc 100644 --- a/.gitignore +++ b/.gitignore @@ -11,5 +11,4 @@ test-ledger spec.md app_old -connectorkit -create-solana-dapp-template \ No newline at end of file +project-examples \ No newline at end of file diff --git a/programs/descro/src/instructions/create_escrow.rs b/programs/descro/src/instructions/create_escrow.rs index 9688244..a8ab1df 100644 --- a/programs/descro/src/instructions/create_escrow.rs +++ b/programs/descro/src/instructions/create_escrow.rs @@ -1,6 +1,6 @@ -use anchor_lang::prelude::*; use crate::state::{EscrowAccount, EscrowState}; use crate::EscrowError; +use anchor_lang::prelude::*; #[derive(Accounts)] #[instruction(amount: u64, dispute_resolver: Option, escrow_id: u64)]