dont' return time for pending claim

This commit is contained in:
Sean Yesmunt 2018-11-08 11:20:10 -05:00
parent 6f1e3b054f
commit e89d1646ef
2 changed files with 2 additions and 2 deletions

2
dist/bundle.js vendored
View file

@ -5115,7 +5115,7 @@ var makeSelectBlockDate = exports.makeSelectBlockDate = function makeSelectBlock
// Pending claim
if (block < 1) {
return new Date();
return null;
}
var difference = latestBlock - block;

View file

@ -225,7 +225,7 @@ export const makeSelectBlockDate = (block) =>
// Pending claim
if (block < 1) {
return new Date();
return null;
}
const difference = latestBlock - block;