From 9b120ea62a70f5142d1ba133e517f386d3019930 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Tue, 17 Dec 2019 19:26:39 -0500 Subject: [PATCH] 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). --- ui/component/userFirstChannel/view.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/component/userFirstChannel/view.jsx b/ui/component/userFirstChannel/view.jsx index 6e5c623f1..76f2b31f4 100644 --- a/ui/component/userFirstChannel/view.jsx +++ b/ui/component/userFirstChannel/view.jsx @@ -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) {

{__('Create A Channel')}

{__('A channel is your identity on the LBRY network.')}

-

{__('You can have more than one or change this later.')}

+

{__('You can have more than one or remove this later.')}