Преглед изворни кода

modify by hyb for cancel permission check

hyb пре 7 година
родитељ
комит
fb77b09def
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      httphandler.go

+ 1 - 1
httphandler.go

@@ -121,7 +121,7 @@ func checkSignature(body []byte, timestamp, signature string) bool {
 
 func checkPermission(timestamp, signature string, body []byte) (int, bool) {
 
-	if string(body) == RAWTRANSFER {
+	if string(body) != SENDCOINS {
 		return OK, true
 	}
 	if checkSignature(body, timestamp, signature) == false {