@@ -288,8 +288,8 @@ impl<'a> InstructionDecoderBuilder<'a> {
288288 pub struct #decoder_name;
289289
290290 impl light_instruction_decoder:: InstructionDecoder for #decoder_name {
291- fn program_id( & self ) -> :: solana_pubkey:: Pubkey {
292- :: solana_pubkey:: Pubkey :: new_from_array( #program_id_bytes)
291+ fn program_id( & self ) -> light_instruction_decoder :: solana_pubkey:: Pubkey {
292+ light_instruction_decoder :: solana_pubkey:: Pubkey :: new_from_array( #program_id_bytes)
293293 }
294294
295295 fn program_name( & self ) -> & ' static str {
@@ -299,7 +299,7 @@ impl<'a> InstructionDecoderBuilder<'a> {
299299 fn decode(
300300 & self ,
301301 data: & [ u8 ] ,
302- accounts: & [ :: solana_instruction:: AccountMeta ] ,
302+ accounts: & [ light_instruction_decoder :: solana_instruction:: AccountMeta ] ,
303303 ) -> Option <light_instruction_decoder:: DecodedInstruction > {
304304 if data. len( ) < #disc_size {
305305 return None ;
@@ -320,8 +320,8 @@ impl<'a> InstructionDecoderBuilder<'a> {
320320 pub struct #decoder_name;
321321
322322 impl light_instruction_decoder:: InstructionDecoder for #decoder_name {
323- fn program_id( & self ) -> :: solana_pubkey:: Pubkey {
324- :: solana_pubkey:: Pubkey :: new_from_array( #program_id_bytes)
323+ fn program_id( & self ) -> light_instruction_decoder :: solana_pubkey:: Pubkey {
324+ light_instruction_decoder :: solana_pubkey:: Pubkey :: new_from_array( #program_id_bytes)
325325 }
326326
327327 fn program_name( & self ) -> & ' static str {
@@ -331,7 +331,7 @@ impl<'a> InstructionDecoderBuilder<'a> {
331331 fn decode(
332332 & self ,
333333 data: & [ u8 ] ,
334- accounts: & [ :: solana_instruction:: AccountMeta ] ,
334+ accounts: & [ light_instruction_decoder :: solana_instruction:: AccountMeta ] ,
335335 ) -> Option <light_instruction_decoder:: DecodedInstruction > {
336336 if data. len( ) < 4 {
337337 return None ;
@@ -352,8 +352,8 @@ impl<'a> InstructionDecoderBuilder<'a> {
352352 pub struct #decoder_name;
353353
354354 impl light_instruction_decoder:: InstructionDecoder for #decoder_name {
355- fn program_id( & self ) -> :: solana_pubkey:: Pubkey {
356- :: solana_pubkey:: Pubkey :: new_from_array( #program_id_bytes)
355+ fn program_id( & self ) -> light_instruction_decoder :: solana_pubkey:: Pubkey {
356+ light_instruction_decoder :: solana_pubkey:: Pubkey :: new_from_array( #program_id_bytes)
357357 }
358358
359359 fn program_name( & self ) -> & ' static str {
@@ -363,7 +363,7 @@ impl<'a> InstructionDecoderBuilder<'a> {
363363 fn decode(
364364 & self ,
365365 data: & [ u8 ] ,
366- accounts: & [ :: solana_instruction:: AccountMeta ] ,
366+ accounts: & [ light_instruction_decoder :: solana_instruction:: AccountMeta ] ,
367367 ) -> Option <light_instruction_decoder:: DecodedInstruction > {
368368 if data. len( ) < 8 {
369369 return None ;
0 commit comments