Skip to content

Commit

Permalink
fix(namada): maxCommissionChangePerEpoch missing character
Browse files Browse the repository at this point in the history
  • Loading branch information
egasimus committed Jun 11, 2024
1 parent 3d0a5a1 commit 4b566d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/namada/src/decode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ impl Decode {
let pair = CommissionPair::try_from_slice(&to_bytes(&source))
.map_err(|e|Error::new(&format!("{e}")))?;
Ok(to_object! {
"commissionRate" = pair.commission_rate,
"maxCommissioChangePerEpoch" = pair.max_commission_change_per_epoch,
"commissionRate" = pair.commission_rate,
"maxCommissionChangePerEpoch" = pair.max_commission_change_per_epoch,
})
}

Expand Down

0 comments on commit 4b566d6

Please sign in to comment.