Skip to content

Commit

Permalink
minors
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraccaman committed May 27, 2024
1 parent 2864951 commit cdc0e30
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions shielding_reward_party/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ use std::str::FromStr;
use dec::Dec;
use namada_tx_prelude::*;

pub const NAM_MAX_REWARD: &'static str = "0.01";
pub const NAM_TARGET_LOCKED_AMOUNT: &'static str = "1_000_000_000";
pub const KP_GAIN: &'static str = "120000";
pub const KD_GAIN: &'static str = "120000";
pub const NAM_MAX_REWARD: &str = "0.01";
pub const NAM_TARGET_LOCKED_AMOUNT: &str = "1_000_000_000";
pub const KP_GAIN: &str = "120000";
pub const KD_GAIN: &str = "120000";

#[transaction]
fn apply_tx(ctx: &mut Ctx, _tx_data: BatchedTx) -> TxResult {
Expand Down

0 comments on commit cdc0e30

Please sign in to comment.