additional rewards page changes and new verification flow #542

Merged
akinwale merged 9 commits from rewards-rework into master 2019-05-15 12:00:15 +02:00
Showing only changes of commit 0d6b6c1035 - Show all commits

View file

@ -1,10 +1,10 @@
import { connect } from 'react-redux';
import { selectTotalBalance } from 'lbry-redux';
import { selectBalance } from 'lbry-redux';
import { selectUnclaimedRewardValue } from 'lbryinc';
import FloatingWalletBalance from './view';
const select = state => ({
balance: selectTotalBalance(state),
balance: selectBalance(state),
unclaimedRewardAmount: selectUnclaimedRewardValue(state),
});