File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/relayer/modules/cosmos-to-solana/src Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -71,27 +71,27 @@ impl CosmosToSolanaRelayerModuleService {
7171 let solana_ics26_program_id = config
7272 . solana_ics26_program_id
7373 . parse ( )
74- . map_err ( |e| anyhow:: anyhow!( "Invalid Solana ICS26 program ID: {}" , e ) ) ?;
74+ . map_err ( |e| anyhow:: anyhow!( "Invalid Solana ICS26 program ID: {e}" ) ) ?;
7575
7676 let solana_ics07_program_id: Pubkey = config
7777 . solana_ics07_program_id
7878 . parse ( )
79- . map_err ( |e| anyhow:: anyhow!( "Invalid Solana ICS07 program ID: {}" , e ) ) ?;
79+ . map_err ( |e| anyhow:: anyhow!( "Invalid Solana ICS07 program ID: {e}" ) ) ?;
8080
8181 let target_listener =
8282 solana:: ChainListener :: new ( config. target_rpc_url . clone ( ) , solana_ics26_program_id) ;
8383
8484 let fee_payer = config
8585 . solana_fee_payer
8686 . parse ( )
87- . map_err ( |e| anyhow:: anyhow!( "Invalid fee payer address: {}" , e ) ) ?;
87+ . map_err ( |e| anyhow:: anyhow!( "Invalid fee payer address: {e}" ) ) ?;
8888
8989 let alt_address = config
9090 . solana_alt_address
9191 . as_ref ( )
9292 . map ( |addr| addr. parse ( ) )
9393 . transpose ( )
94- . map_err ( |e| anyhow:: anyhow!( "Invalid ALT address: {}" , e ) ) ?;
94+ . map_err ( |e| anyhow:: anyhow!( "Invalid ALT address: {e}" ) ) ?;
9595
9696 let tx_builder = tx_builder:: TxBuilder :: new (
9797 src_listener. client ( ) . clone ( ) ,
You can’t perform that action at this time.
0 commit comments