扩大了签名超市时间

This commit is contained in:
wucongxing8150 2025-04-03 16:03:36 +08:00
parent 87b80ed391
commit 556ad55fc2

View File

@ -41,7 +41,7 @@ func VerifySignature(paramsMap map[string]interface{}, receivedTimestamp, receiv
return errors.New("签名错误") return errors.New("签名错误")
} }
if currentTime-timestamp > 1500 { if currentTime-timestamp > 5000 {
return errors.New("签名超时") return errors.New("签名超时")
} }
} }