Merge pull request #611 from m2049r/fix_heightfix

reduce restore height some more for new wallets
merge-requests/3/head
wow nero 5 years ago committed by GitHub
commit 7553d3c5f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -940,8 +940,9 @@ public class LoginActivity extends BaseActivity
@Override
public boolean createWallet(File aFile, String password) {
NodeInfo currentNode = getNode();
// get it from the connected node if we have one, and go back ca. 4 days
final long restoreHeight =
(currentNode != null) ? currentNode.getHeight() - 20 : -1;
(currentNode != null) ? currentNode.getHeight() - 2000 : -1;
Wallet newWallet = WalletManager.getInstance()
.createWallet(aFile, password, MNEMONIC_LANGUAGE, restoreHeight);
return checkAndCloseWallet(newWallet);

Loading…
Cancel
Save