Skip to content

Commit

Permalink
increase fees in env prompt (#919)
Browse files Browse the repository at this point in the history
  • Loading branch information
Thykof authored Apr 23, 2024
1 parent d29f5e1 commit e5b47f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"description": "Massa blockchain official wallet",
"logo": "wallet.svg",
"home": "",
"version": "0.3.4",
"version": "0.3.5",
"apispec": ""
}
2 changes: 1 addition & 1 deletion pkg/prompt/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func (e *envPrompter) PromptRequest(req PromptRequest) {

switch req.Action {
case walletapp.Sign:
e.PromptApp.PromptInput <- &walletapp.SignPromptInput{BaseMessage: walletapp.BaseMessage{CorrelationID: req.CorrelationID}, Password: password, Fees: "500"}
e.PromptApp.PromptInput <- &walletapp.SignPromptInput{BaseMessage: walletapp.BaseMessage{CorrelationID: req.CorrelationID}, Password: password, Fees: "10000000"}
case walletapp.Delete, walletapp.NewPassword, walletapp.Unprotect:
e.PromptApp.PromptInput <- &walletapp.StringPromptInput{BaseMessage: walletapp.BaseMessage{CorrelationID: req.CorrelationID}, Message: password}
}
Expand Down

0 comments on commit e5b47f7

Please sign in to comment.