Skip to content

Commit

Permalink
Fix wizzy crashes
Browse files Browse the repository at this point in the history
  • Loading branch information
n3alz committed Feb 18, 2021
1 parent cb2eaae commit 02c1958
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@ public void updateDrawState(TextPaint ds) {
public void onEnterAddress(View view) {
startActivity(new Intent(WizardHomeActivity.this, WizardAddressActivity.class));
finish();

Config.write("hide_setup_wizard", "1");
}

public void onCreateWallet(View view) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,5 +226,6 @@ public void onStart(View view) {

startActivity(new Intent(WizardSettingsActivity.this, MainActivity.class));
finish();
Config.write("hide_setup_wizard", "1");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ static public void generate() {
return;

// User Defined
add("custom", "custom", "3333", 0, "", "");
add("custom", "custom", "3333", 0, "custom", "");

// uPlexa Official pool
add(
Expand Down

0 comments on commit 02c1958

Please sign in to comment.