Skip to content

Commit

Permalink
Revert "Add temp endpoint to fix mobile hotspots (#683)" (#685)
Browse files Browse the repository at this point in the history
* Revert "Add temp endpoint to fix mobile hotspots (#683)"

This reverts commit 4db971f.

* Bump version
  • Loading branch information
ChewingGlass authored Aug 2, 2024
1 parent 4db971f commit 3f5a4be
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 129 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

54 changes: 0 additions & 54 deletions packages/helium-admin-cli/src/repair-mobile-hotpots.ts

This file was deleted.

2 changes: 1 addition & 1 deletion programs/helium-entity-manager/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "helium-entity-manager"
version = "0.2.9"
version = "0.2.10"
description = "Created with Anchor"
edition = "2021"

Expand Down
2 changes: 0 additions & 2 deletions programs/helium-entity-manager/src/instructions/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ pub mod revoke_program_v0;
pub mod set_entity_active_v0;
pub mod set_maker_tree_v0;
pub mod temp_pay_mobile_onboarding_fee_v0;
pub mod temp_repair_mobile_hotspot_info;
pub mod temp_standardize_entity;
pub mod update_data_only_tree_v0;
pub mod update_iot_info_v0;
Expand All @@ -43,7 +42,6 @@ pub use revoke_program_v0::*;
pub use set_entity_active_v0::*;
pub use set_maker_tree_v0::*;
pub use temp_pay_mobile_onboarding_fee_v0::*;
pub use temp_repair_mobile_hotspot_info::*;
pub use temp_standardize_entity::*;
pub use update_data_only_tree_v0::*;
pub use update_iot_info_v0::*;
Expand Down

This file was deleted.

6 changes: 0 additions & 6 deletions programs/helium-entity-manager/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,4 @@ pub mod helium_entity_manager {
) -> Result<()> {
temp_standardize_entity::handler(ctx, args)
}

pub fn temp_repair_mobile_hotspot_info<'info>(
ctx: Context<'_, '_, '_, 'info, TempRepairMobileHotspotInfo<'info>>,
) -> Result<()> {
temp_repair_mobile_hotspot_info::handler(ctx)
}
}
2 changes: 1 addition & 1 deletion programs/helium-entity-manager/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub struct RewardableEntityConfigV0 {
pub staking_requirement: u64,
}

#[derive(AnchorSerialize, AnchorDeserialize, Clone, Copy, Default, PartialEq, Debug)]
#[derive(AnchorSerialize, AnchorDeserialize, Clone, Copy, Default, PartialEq)]
pub enum MobileDeviceTypeV0 {
#[default]
Cbrs,
Expand Down

0 comments on commit 3f5a4be

Please sign in to comment.