Merge branch 'develop' into homepage-image-load

This commit is contained in:
Daniel Ternyak 2019-03-06 17:46:20 -06:00 committed by GitHub
commit 13e8936ade
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -183,6 +183,13 @@ export function massageSerializedState(state: AppState) {
return c;
});
});
// RFPs
state.rfps.rfps = state.rfps.rfps.map(rfp => {
if (rfp.bounty) {
rfp.bounty = new BN(rfp.bounty, 16);
}
return rfp;
});
return state;
}