Skip to content

Commit

Permalink
fix: revert decimals
Browse files Browse the repository at this point in the history
  • Loading branch information
JordyRo1 committed Dec 2, 2024
1 parent 18a8b82 commit a790c0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pragma-oracle/src/tests/test_oracle.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -1530,7 +1530,7 @@ fn test_get_conversion_rate_price_fails_if_asset_not_registered() {
.add_currency(
Currency {
id: 'STRK',
decimals: 18,
decimals: 8,
is_abstract_currency: false,
starknet_address: 0.try_into().unwrap(),
ethereum_address: 0.try_into().unwrap(),
Expand All @@ -1540,7 +1540,7 @@ fn test_get_conversion_rate_price_fails_if_asset_not_registered() {
.add_currency(
Currency {
id: 'xSTRK',
decimals: 18,
decimals: 8,
is_abstract_currency: false,
starknet_address: 0.try_into().unwrap(),
ethereum_address: 0.try_into().unwrap(),
Expand Down

0 comments on commit a790c0a

Please sign in to comment.