소스 검색

fixed bug in operation fee wizard validate method.

Ugochukwu Mmaduekwe 7 년 전
부모
커밋
dbccc7fbce
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  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;
 begin
+  Result := True;
   if (Length(Model.Account.SelectedAccounts) > 1) AND (Fee = 0) then begin
     message := 'Zero fees only allowed for a single operation.';
     Exit(false);