Browse Source

fixed bug in operation fee wizard validate method.

Ugochukwu Mmaduekwe 7 years ago
parent
commit
dbccc7fbce
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/gui/wizards/operations/UWIZOperationFee_Custom.pas

+ 1 - 0
src/gui/wizards/operations/UWIZOperationFee_Custom.pas

@@ -97,6 +97,7 @@ end;
 
 
 function TWIZOperationFee_Custom.Validate(out message: ansistring): boolean;
 function TWIZOperationFee_Custom.Validate(out message: ansistring): boolean;
 begin
 begin
+  Result := True;
   if (Length(Model.Account.SelectedAccounts) > 1) AND (Fee = 0) then begin
   if (Length(Model.Account.SelectedAccounts) > 1) AND (Fee = 0) then begin
     message := 'Zero fees only allowed for a single operation.';
     message := 'Zero fees only allowed for a single operation.';
     Exit(false);
     Exit(false);