Skip to content

Commit bb5fadb

Browse files
authored
Merge pull request #82 from artemskriabin/fix/finney_szabo
Fix Finney and Szabo mess
2 parents ab07c57 + 70700da commit bb5fadb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

constants/numbers.constant.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ export const UNITS = {
55
kwei: { title: 'KWei', decimals: 15 },
66
mwei: { title: 'MWei', decimals: 12 },
77
gwei: { title: 'GWei', decimals: 9 },
8-
finney: { title: 'Finney', decimals: 6 },
9-
szabo: { title: 'Szabo', decimals: 3 },
8+
finney: { title: 'Finney', decimals: 3 },
9+
szabo: { title: 'Szabo', decimals: 6 },
1010
ether: { title: 'Ether', decimals: 0 },
1111
kether: { title: 'KEther', decimals: -3 },
1212
mether: { title: 'MEther', decimals: -6 },

forms/UnitConverterForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ type UnitConverterFormKeys = keyof typeof form
3636
const form = reactive({
3737
wei: '',
3838
gwei: '',
39-
finney: '',
4039
szabo: '',
40+
finney: '',
4141
ether: '',
4242
})
4343

0 commit comments

Comments
 (0)