Skip to content

Commit

Permalink
Remove default init tx fee as init is not used
Browse files Browse the repository at this point in the history
  • Loading branch information
lindlof committed Dec 12, 2020
1 parent 07a1bd0 commit bb933c6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
4 changes: 0 additions & 4 deletions web/src/wallet/keplrWallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,6 @@ const keplrWallet = async (
offlineSigner,
enigmaUtils,
{
init: {
amount: [{ amount: '250000', denom: 'uscrt' }],
gas: '250000',
},
exec: {
amount: [{ amount: '250000', denom: 'uscrt' }],
gas: '250000',
Expand Down
6 changes: 1 addition & 5 deletions web/src/wallet/localWallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,8 @@ const localWallet = async (lcdUrl: string, setClient: Function) => {
(signBytes) => signingPen.sign(signBytes),
tx_encryption_seed,
{
init: {
amount: [{ amount: '250000', denom: 'uscrt' }],
gas: '250000',
},
exec: {
amount: [{ amount: '100000', denom: 'uscrt' }],
amount: [{ amount: '250000', denom: 'uscrt' }],
gas: '250000',
},
},
Expand Down

0 comments on commit bb933c6

Please sign in to comment.