Skip to content

Commit

Permalink
#135 Fixed fees
Browse files Browse the repository at this point in the history
  • Loading branch information
lxgr-linux committed Jan 9, 2023
1 parent 6d95d6a commit bbc0515
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 @@ -647,7 +647,7 @@ exports.default = {
const txClient = await initTxClient(rootGetters);
const msg = await txClient.msgAddArtworkToCollection(value);
const result = await txClient.signAndBroadcast([msg], { fee: { amount: fee,
gas: "20000000" }, memo });
gas: "200000000" }, memo });
return result;
}
catch (e) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ export default {
const txClient=await initTxClient(rootGetters)
const msg = await txClient.msgAddArtworkToCollection(value)
const result = await txClient.signAndBroadcast([msg], {fee: { amount: fee,
gas: "20000000" }, memo})
gas: "200000000" }, memo})
return result
} catch (e) {
if (e == MissingWalletError) {
Expand Down

0 comments on commit bbc0515

Please sign in to comment.