From e5b47f77b0de0b0233053d647536128a2dbd512e Mon Sep 17 00:00:00 2001 From: Nathan Seva Date: Tue, 23 Apr 2024 19:18:26 +0200 Subject: [PATCH] increase fees in env prompt (#919) --- manifest.json | 2 +- pkg/prompt/env.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 407817604..d10a2f75d 100644 --- a/manifest.json +++ b/manifest.json @@ -4,6 +4,6 @@ "description": "Massa blockchain official wallet", "logo": "wallet.svg", "home": "", - "version": "0.3.4", + "version": "0.3.5", "apispec": "" } diff --git a/pkg/prompt/env.go b/pkg/prompt/env.go index c03ff698c..daa7647d1 100644 --- a/pkg/prompt/env.go +++ b/pkg/prompt/env.go @@ -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} }