Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Commits on Source (2)
(chore): remove 10k boosts
· 2ff49568
Mark Harding
authored
Aug 07, 2019
and
Brian Hatchet
committed
Aug 07, 2019
2ff49568
Merge branch 'chore/remove-10k-boosts' into 'master'
· 79c1eb43
Brian Hatchet
authored
Aug 07, 2019
(chore): remove 10k boosts See merge request
!484
79c1eb43
Hide whitespace changes
Inline
Side-by-side
src/app/modules/boost/creator/creator.component.ts
View file @
79c1eb43
...
...
@@ -468,9 +468,9 @@ export class BoostCreatorComponent implements AfterViewInit {
if
(
this
.
boost
.
currency
===
'
onchain
'
&&
(
this
.
boost
.
amount
<
this
.
rates
.
min
||
this
.
boost
.
amount
>
(
this
.
rates
.
cap
*
2
)
||
this
.
boost
.
amount
>
(
this
.
rates
.
cap
)
))
{
throw
new
VisibleBoostError
(
`You must boost between
${
this
.
rates
.
min
}
and
${
this
.
rates
.
cap
*
2
}
views.`
);
throw
new
VisibleBoostError
(
`You must boost between
${
this
.
rates
.
min
}
and
${
this
.
rates
.
cap
}
views.`
);
}
...
...
src/app/modules/boost/creator/payment-methods/payment-methods.component.html
View file @
79c1eb43
...
...
@@ -37,7 +37,7 @@
</span>
<ul
class=
"m-boostCreatorSelector__bullets"
>
<li>
Max 10k per boost
</li>
<!--
<li>Max 10k per boost</li>
-->
<li>
Stored on the blockchain
</li>
<li>
Stand out in the feeds
</li>
<li>
Gain "OnChain" badge
</li>
...
...
@@ -78,7 +78,7 @@
</span>
<ul
class=
"m-boostCreatorSelector__bullets"
>
<li>
Max 5k per boost
</li>
<!--
<li>Max 5k per boost</li>
-->
<li>
Stored on Minds servers
</li>
<li>
No transaction fee
</li>
<li
style=
"list-style:none"
>
</li>
...
...