wip-flag-migration #28
@ -247,12 +247,12 @@ func (h *Handlers) VerifyPin(ctx context.Context, sym string, input []byte) (res
 | 
				
			|||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return res, err
 | 
							return res, err
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	storedpin, err := h.db.Fetch([]byte(AccountPin))
 | 
					
 | 
				
			||||||
 | 
						AccountPin, err := h.db.Fetch([]byte(AccountPin))
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		return res, err
 | 
							return res, err
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
						if bytes.Equal(input, AccountPin) {
 | 
				
			||||||
	if bytes.Equal(input, storedpin) {
 | 
					 | 
				
			||||||
		res.FlagSet = []uint32{flags["flag_valid_pin"]}
 | 
							res.FlagSet = []uint32{flags["flag_valid_pin"]}
 | 
				
			||||||
		res.FlagReset = []uint32{flags["flag_pin_mismatch"]}
 | 
							res.FlagReset = []uint32{flags["flag_pin_mismatch"]}
 | 
				
			||||||
		res.FlagSet = append(res.FlagSet, flags["flag_pin_set"])
 | 
							res.FlagSet = append(res.FlagSet, flags["flag_pin_set"])
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user