Skip to content

Commit

Permalink
chore: bump deposit function
Browse files Browse the repository at this point in the history
  • Loading branch information
irmannmal committed Nov 25, 2021
1 parent ed963fd commit bb18e6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ pub mod currency {
pub const BYTE_FEE: Balance = 10 * MILLICENTS;

pub const fn deposit(items: u32, bytes: u32) -> Balance {
(items as Balance) * CENTS + (bytes as Balance) * BYTE_FEE
(items as Balance) * 1 * DOLLARS + (bytes as Balance) * BYTE_FEE
}
}

Expand Down

0 comments on commit bb18e6a

Please sign in to comment.