Skip to content

Commit 71dcb6c

Browse files
committed
Make Uint128 inner field private
1 parent 9b3c0c4 commit 71dcb6c

File tree

6 files changed

+36
-33
lines changed

6 files changed

+36
-33
lines changed

CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to
66

77
## [Unreleased]
88

9+
### Removed
10+
- cosmwasm-std: Make `Uint128` inner field private ([#905])
11+
12+
[#905]: https://github.com/CosmWasm/cosmwasm/issues/905
13+
914
## [0.14.1] - 2021-06-14
1015

1116
### Added
@@ -19,8 +24,8 @@ and this project adheres to
1924

2025
### Fixed
2126

22-
- cosmwasm-std: Fix `Uint64::multiply_ratio` and `Uint128::multiply_ratio` so
23-
that internal multiplication cannot cause an unnecessary overflow. ([#920])
27+
- cosmwasm-std: Fix `Uint64::multiply_ratio` and `Uint128::multiply_ratio`
28+
so that internal multiplication cannot cause an unnecessary overflow. ([#920])
2429

2530
[#920]: https://github.com/CosmWasm/cosmwasm/issues/920
2631

packages/std/src/coins.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pub struct Coin {
1313
impl Coin {
1414
pub fn new<S: Into<String>>(amount: u128, denom: S) -> Self {
1515
Coin {
16-
amount: Uint128(amount),
16+
amount: Uint128::new(amount),
1717
denom: denom.into(),
1818
}
1919
}
@@ -90,7 +90,7 @@ mod tests {
9090
#[test]
9191
fn coin_implements_display() {
9292
let a = Coin {
93-
amount: Uint128(123),
93+
amount: Uint128::new(123),
9494
denom: "ucosm".to_string(),
9595
};
9696

@@ -105,7 +105,7 @@ mod tests {
105105
assert_eq!(
106106
a,
107107
Coin {
108-
amount: Uint128(123),
108+
amount: Uint128::new(123),
109109
denom: "ucosm".to_string()
110110
}
111111
);
@@ -114,7 +114,7 @@ mod tests {
114114
assert_eq!(
115115
zero,
116116
Coin {
117-
amount: Uint128(0),
117+
amount: Uint128::new(0),
118118
denom: "ucosm".to_string()
119119
}
120120
);
@@ -123,7 +123,7 @@ mod tests {
123123
assert_eq!(
124124
string_denom,
125125
Coin {
126-
amount: Uint128(42),
126+
amount: Uint128::new(42),
127127
denom: "ucosm".to_string()
128128
}
129129
);
@@ -135,7 +135,7 @@ mod tests {
135135
assert_eq!(
136136
a,
137137
vec![Coin {
138-
amount: Uint128(123),
138+
amount: Uint128::new(123),
139139
denom: "ucosm".to_string()
140140
}]
141141
);
@@ -144,7 +144,7 @@ mod tests {
144144
assert_eq!(
145145
zero,
146146
vec![Coin {
147-
amount: Uint128(0),
147+
amount: Uint128::new(0),
148148
denom: "ucosm".to_string()
149149
}]
150150
);
@@ -153,7 +153,7 @@ mod tests {
153153
assert_eq!(
154154
string_denom,
155155
vec![Coin {
156-
amount: Uint128(42),
156+
amount: Uint128::new(42),
157157
denom: "ucosm".to_string()
158158
}]
159159
);

packages/std/src/math/decimal.rs

+18-18
Original file line numberDiff line numberDiff line change
@@ -560,71 +560,71 @@ mod tests {
560560
// in this test the Decimal is on the right
561561
fn uint128_decimal_multiply() {
562562
// a*b
563-
let left = Uint128(300);
563+
let left = Uint128::new(300);
564564
let right = Decimal::one() + Decimal::percent(50); // 1.5
565-
assert_eq!(left * right, Uint128(450));
565+
assert_eq!(left * right, Uint128::new(450));
566566

567567
// a*0
568-
let left = Uint128(300);
568+
let left = Uint128::new(300);
569569
let right = Decimal::zero();
570-
assert_eq!(left * right, Uint128(0));
570+
assert_eq!(left * right, Uint128::new(0));
571571

572572
// 0*a
573-
let left = Uint128(0);
573+
let left = Uint128::new(0);
574574
let right = Decimal::one() + Decimal::percent(50); // 1.5
575-
assert_eq!(left * right, Uint128(0));
575+
assert_eq!(left * right, Uint128::new(0));
576576
}
577577

578578
#[test]
579579
// in this test the Decimal is on the left
580580
fn decimal_uint128_multiply() {
581581
// a*b
582582
let left = Decimal::one() + Decimal::percent(50); // 1.5
583-
let right = Uint128(300);
584-
assert_eq!(left * right, Uint128(450));
583+
let right = Uint128::new(300);
584+
assert_eq!(left * right, Uint128::new(450));
585585

586586
// 0*a
587587
let left = Decimal::zero();
588-
let right = Uint128(300);
589-
assert_eq!(left * right, Uint128(0));
588+
let right = Uint128::new(300);
589+
assert_eq!(left * right, Uint128::new(0));
590590

591591
// a*0
592592
let left = Decimal::one() + Decimal::percent(50); // 1.5
593-
let right = Uint128(0);
594-
assert_eq!(left * right, Uint128(0));
593+
let right = Uint128::new(0);
594+
assert_eq!(left * right, Uint128::new(0));
595595
}
596596

597597
#[test]
598598
fn decimal_uint128_division() {
599599
// a/b
600600
let left = Decimal::percent(150); // 1.5
601-
let right = Uint128(3);
601+
let right = Uint128::new(3);
602602
assert_eq!(left / right, Decimal::percent(50));
603603

604604
// 0/a
605605
let left = Decimal::zero();
606-
let right = Uint128(300);
606+
let right = Uint128::new(300);
607607
assert_eq!(left / right, Decimal::zero());
608608
}
609609

610610
#[test]
611611
#[should_panic(expected = "attempt to divide by zero")]
612612
fn decimal_uint128_divide_by_zero() {
613613
let left = Decimal::percent(150); // 1.5
614-
let right = Uint128(0);
614+
let right = Uint128::new(0);
615615
let _result = left / right;
616616
}
617617

618618
#[test]
619619
fn decimal_uint128_div_assign() {
620620
// a/b
621621
let mut dec = Decimal::percent(150); // 1.5
622-
dec /= Uint128(3);
622+
dec /= Uint128::new(3);
623623
assert_eq!(dec, Decimal::percent(50));
624624

625625
// 0/a
626626
let mut dec = Decimal::zero();
627-
dec /= Uint128(300);
627+
dec /= Uint128::new(300);
628628
assert_eq!(dec, Decimal::zero());
629629
}
630630

@@ -633,7 +633,7 @@ mod tests {
633633
fn decimal_uint128_div_assign_by_zero() {
634634
// a/0
635635
let mut dec = Decimal::percent(50);
636-
dec /= Uint128(0);
636+
dec /= Uint128::new(0);
637637
}
638638

639639
#[test]

packages/std/src/math/uint128.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@ use crate::errors::{DivideByZeroError, OverflowError, OverflowOperation, StdErro
2727
/// assert_eq!(c.u128(), 70);
2828
/// ```
2929
#[derive(Copy, Clone, Default, Debug, PartialEq, Eq, PartialOrd, Ord, JsonSchema)]
30-
pub struct Uint128(
31-
#[schemars(with = "String")] pub u128, // Simon thinks this should be private, but does not want to worry about breaking code right now
32-
);
30+
pub struct Uint128(#[schemars(with = "String")] u128);
3331

3432
impl Uint128 {
3533
/// Creates a Uint128(value).

packages/std/src/results/attribute.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ mod tests {
3131
assert_eq!(attr("foo", "42"), expeceted);
3232
assert_eq!(attr("foo".to_string(), "42"), expeceted);
3333
assert_eq!(attr("foo", "42".to_string()), expeceted);
34-
assert_eq!(attr("foo", Uint128(42)), expeceted);
34+
assert_eq!(attr("foo", Uint128::new(42)), expeceted);
3535
assert_eq!(attr("foo", 42), expeceted);
3636
}
3737
}

packages/std/src/traits.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,6 @@ mod tests {
354354
.unwrap()
355355
.unwrap();
356356
let balance: BalanceResponse = from_slice(&raw).unwrap();
357-
assert_eq!(balance.amount.amount, Uint128(5));
357+
assert_eq!(balance.amount.amount, Uint128::new(5));
358358
}
359359
}

0 commit comments

Comments
 (0)