use cleanup

This commit is contained in:
Solana Maintainers 2021-05-04 09:30:37 -07:00 committed by Michael Vines
parent d9fd11a8f3
commit 512497aa39
5 changed files with 49 additions and 39 deletions

View File

@ -1,9 +1,11 @@
use crate::error::NameServiceError; use {
use crate::processor::Processor; crate::error::NameServiceError,
use num_traits::FromPrimitive; crate::processor::Processor,
use solana_program::{ num_traits::FromPrimitive,
account_info::AccountInfo, decode_error::DecodeError, entrypoint, entrypoint::ProgramResult, solana_program::{
msg, program_error::PrintProgramError, pubkey::Pubkey, account_info::AccountInfo, decode_error::DecodeError, entrypoint,
entrypoint::ProgramResult, msg, program_error::PrintProgramError, pubkey::Pubkey,
},
}; };
entrypoint!(process_instruction); entrypoint!(process_instruction);

View File

@ -1,10 +1,12 @@
use num_derive::FromPrimitive; use {
use solana_program::{decode_error::DecodeError, program_error::ProgramError}; num_derive::FromPrimitive,
use thiserror::Error; solana_program::{decode_error::DecodeError, program_error::ProgramError},
thiserror::Error,
};
#[derive(Clone, Debug, Eq, Error, FromPrimitive, PartialEq)] #[derive(Clone, Debug, Eq, Error, FromPrimitive, PartialEq)]
pub enum NameServiceError { pub enum NameServiceError {
#[error("Out of space.")] #[error("Out of space")]
OutOfSpace, OutOfSpace,
} }

View File

@ -1,9 +1,11 @@
use borsh::{BorshDeserialize, BorshSerialize}; use {
use solana_program::{ borsh::{BorshDeserialize, BorshSerialize},
solana_program::{
instruction::{AccountMeta, Instruction}, instruction::{AccountMeta, Instruction},
program_error::ProgramError, program_error::ProgramError,
pubkey::Pubkey, pubkey::Pubkey,
system_program, system_program,
},
}; };
/// Instructions supported by the generic Name Registry program /// Instructions supported by the generic Name Registry program

View File

@ -1,10 +1,11 @@
use crate::{ use {
crate::{
instruction::NameRegistryInstruction, instruction::NameRegistryInstruction,
state::get_seeds_and_key, state::get_seeds_and_key,
state::{write_data, NameRecordHeader}, state::{write_data, NameRecordHeader},
}; },
use borsh::BorshDeserialize; borsh::BorshDeserialize,
use solana_program::{ solana_program::{
account_info::{next_account_info, AccountInfo}, account_info::{next_account_info, AccountInfo},
entrypoint::ProgramResult, entrypoint::ProgramResult,
msg, msg,
@ -13,6 +14,7 @@ use solana_program::{
program_pack::Pack, program_pack::Pack,
pubkey::Pubkey, pubkey::Pubkey,
system_instruction, system_instruction,
},
}; };
pub struct Processor {} pub struct Processor {}

View File

@ -1,10 +1,12 @@
use borsh::{BorshDeserialize, BorshSerialize}; use {
use solana_program::{ borsh::{BorshDeserialize, BorshSerialize},
solana_program::{
account_info::AccountInfo, account_info::AccountInfo,
msg, msg,
program_error::ProgramError, program_error::ProgramError,
program_pack::{IsInitialized, Pack, Sealed}, program_pack::{IsInitialized, Pack, Sealed},
pubkey::Pubkey, pubkey::Pubkey,
},
}; };
/// The data for a Name Registry account is always prefixed a `NameRecordHeader` structure. /// The data for a Name Registry account is always prefixed a `NameRecordHeader` structure.