Skip to content

Commit

Permalink
Merge branch 'helium:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
kurotych authored Jul 25, 2024
2 parents 1e79b1a + 89d3820 commit 1d2f26b
Show file tree
Hide file tree
Showing 27 changed files with 983 additions and 579 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

14 changes: 12 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ members = [
"reward_scheduler",
"solana",
"task_manager",
"hex_assignments"
"hex_assignments",
]
resolver = "2"

Expand Down Expand Up @@ -73,6 +73,7 @@ hextree = { git = "https://github.com/jaykickliter/HexTree", branch = "main", fe
helium-proto = { git = "https://github.com/helium/proto", branch = "master", features = [
"services",
] }
beacon = { git = "https://github.com/helium/proto", branch = "master" }
solana-client = "1.18"
solana-sdk = "1.18"
solana-program = "1.18"
Expand All @@ -82,7 +83,6 @@ reqwest = { version = "0", default-features = false, features = [
"json",
"rustls-tls",
] }
beacon = { git = "https://github.com/helium/proto", branch = "master" }
humantime = "2"
humantime-serde = "1"
metrics = ">=0.22"
Expand Down Expand Up @@ -123,3 +123,13 @@ derive_builder = "0"

[patch.crates-io]
sqlx = { git = "https://github.com/helium/sqlx.git", rev = "92a2268f02e0cac6fccb34d3e926347071dbb88d" }

# When attempting to test proto changes without needing to push a branch you can
# patch the github url to point to your local proto repo.
#
# Patching for beacon must point directly to the crate, it will not look in the
# repo for sibling crates.
#
# [patch.'https://github.com/helium/proto']
# helium-proto = { path = "../proto" }
# beacon = { path = "../proto/beacon" }
2 changes: 1 addition & 1 deletion coverage_point_calculator/src/hexes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub struct HexPoints {
///
/// This is a convenience field for debugging, hexes can reach similar
/// values through different means, it helps to know the starting value.
modeled: Decimal,
pub modeled: Decimal,
/// Points including Coverage affected multipliers
///
/// modeled + (Rank * Assignment)
Expand Down
Loading

0 comments on commit 1d2f26b

Please sign in to comment.