Skip to content

Commit

Permalink
update fee blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalsine85 committed Oct 13, 2021
1 parent 2d2e59e commit f8beccb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/hooks/useFees.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
const getWithdrawalPenalty = (blocksSince: any) => {
return blocksSince <= 0
? 0.99
: blocksSince <= 1800
: blocksSince <= 1525
? 0.5
: blocksSince <= 43200
: blocksSince <= 36600
? 0.25
: blocksSince <= 126000
: blocksSince <= 109800
? 0.12
: blocksSince <= 216000
: blocksSince <= 183000
? 0.08
: blocksSince <= 604800
: blocksSince <= 512400
? 0.04
: blocksSince <= 1296000
: blocksSince <= 1024800
? 0.02
: 0.001
}
Expand Down

0 comments on commit f8beccb

Please sign in to comment.