Skip to content

Commit

Permalink
ERC1559 Enabled by default (#3265)
Browse files Browse the repository at this point in the history
* ERC1559 Enabled by default

* Experimental subtitle hidden from ERC1559 in advanced settings

---------

Co-authored-by: cypher <pratikmhatre@gofynd.com>
  • Loading branch information
pratikmhatre and pnmhatregofynd authored Aug 9, 2023
1 parent 9ad52a9 commit d478df3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public void setTestnetEnabled(boolean enabled)
@Override
public boolean getUse1559Transactions()
{
return pref.getBoolean(EXPERIMENTAL_1559_TX, false);
return pref.getBoolean(EXPERIMENTAL_1559_TX, true);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private void initializeSettings()
.withType(SettingsItemView.Type.TOGGLE)
.withIcon(R.drawable.ic_icons_settings_1559)
.withTitle(R.string.experimental_1559)
.withSubtitle(R.string.experimental_1559_tx_sub)
// .withSubtitle(R.string.experimental_1559_tx_sub)
.withListener(this::on1559TransactionsClicked)
.build();

Expand Down

0 comments on commit d478df3

Please sign in to comment.