adjust default channel bid
This will cause less errors when these users go to publish. Otherwise they would have 0.1 LBC and the default bid was the same, so the txes would fail / get stuck (would reset clearing cache).
This commit is contained in:
parent
5c07f412ca
commit
9b120ea62a
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ import { isNameValid } from 'lbry-redux';
|
|||
import Button from 'component/button';
|
||||
import { Form, FormField } from 'component/common/form';
|
||||
import { INVALID_NAME_ERROR } from 'constants/claim';
|
||||
export const DEFAULT_BID_FOR_FIRST_CHANNEL = 0.9;
|
||||
export const DEFAULT_BID_FOR_FIRST_CHANNEL = 0.5;
|
||||
|
||||
type Props = {
|
||||
createChannel: (string, number) => void,
|
||||
|
@ -40,7 +40,7 @@ function UserFirstChannel(props: Props) {
|
|||
<h1 className="section__title--large">{__('Create A Channel')}</h1>
|
||||
<div className="section__subtitle">
|
||||
<p>{__('A channel is your identity on the LBRY network.')}</p>
|
||||
<p>{__('You can have more than one or change this later.')}</p>
|
||||
<p>{__('You can have more than one or remove this later.')}</p>
|
||||
</div>
|
||||
<section className="section__body">
|
||||
<fieldset-group class="fieldset-group--smushed fieldset-group--disabled-prefix">
|
||||
|
|
Loading…
Reference in a new issue