Skip to content

Commit

Permalink
increase default gas limit
Browse files Browse the repository at this point in the history
  • Loading branch information
pau121 committed Oct 19, 2022
1 parent e950004 commit ba9b4c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/popup/App/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export default class extends Vue {
gasLimitItems = [
{ text: '2100000 (Advanced TXs)', value: 2100000},
{ text: '90000 (Standard TXs)', value: 90000},
{ text: '500000 (Standard TXs)', value: 500000},
]
gasPriceValue: any = { text: '100000 (Default)', value: 100000}
Expand Down
2 changes: 1 addition & 1 deletion src/popup/PopupState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class PopupState {
payload = "4543542D312E342E33";

gasPrice = 100000;
gasLimit = 90000;
gasLimit = 500000;

$i18n: any = {
t: (s: string) => s,
Expand Down

0 comments on commit ba9b4c2

Please sign in to comment.