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)]