diff --git a/.gitmodules b/.gitmodules index 2c602a5a..8cee1c90 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,4 @@ [submodule "plugins"] path = plugins - url = https://github.com/ZeroNetX/ZeroNet-Plugins.git + url = https://github.com/chiva/ZeroNet-Plugins.git + branch = lifecycle-updates diff --git a/src/lib/Ed25519.py b/src/lib/Ed25519.py index 20bdc1a9..42214923 100644 --- a/src/lib/Ed25519.py +++ b/src/lib/Ed25519.py @@ -90,7 +90,7 @@ def pow2(x, p): def inv(z): - """$= z^{-1} \mod q$, for z != 0""" + """$= z^{-1} \\mod q$, for z != 0""" # Adapted from curve25519_athlon.c in djb's Curve25519. z2 = z * z % q # 2 z9 = pow2(z2, 2) * z % q # 9