examples: Simplify tutorials/basic-3 test (#337)

This commit is contained in:
keemy 2021-05-29 10:24:21 -07:00 committed by GitHub
parent 70eb821516
commit 2f5a7d2cee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 12 deletions

View File

@ -1,7 +1,7 @@
use anchor_lang::prelude::*;
#[program]
mod puppet {
pub mod puppet {
use super::*;
pub fn initialize(ctx: Context<Initialize>) -> ProgramResult {
Ok(())

View File

@ -19,17 +19,7 @@ describe("basic-3", () => {
rent: anchor.web3.SYSVAR_RENT_PUBKEY,
},
signers: [newPuppetAccount],
instructions: [
anchor.web3.SystemProgram.createAccount({
fromPubkey: provider.wallet.publicKey,
newAccountPubkey: newPuppetAccount.publicKey,
space: 8 + 8, // Add 8 for the account discriminator.
lamports: await provider.connection.getMinimumBalanceForRentExemption(
8 + 8
),
programId: puppet.programId,
}),
],
instructions: [await puppet.account.puppet.createInstruction(newPuppetAccount)],
});
// Invoke the puppet master to perform a CPI to the puppet.