diff --git a/pkg/wire/layers.go b/pkg/wire/layers.go index bb2c93ac..48fb4722 100644 --- a/pkg/wire/layers.go +++ b/pkg/wire/layers.go @@ -24,8 +24,8 @@ func (o OnionSkins) Exit(port uint16, ciphers [3]sha256.Hash, return append(o, &Exit{Port: port, Cipher: ciphers, Bytes: payload}) } -func (o OnionSkins) Return(ip net.IP, fwd, rtn pub.Key) OnionSkins { - return append(o, &Return{IP: ip, Forward: fwd, Return: rtn}) +func (o OnionSkins) Return(ip net.IP, rtn pub.Key) OnionSkins { + return append(o, &Return{IP: ip, Key: rtn}) } func (o OnionSkins) Cipher(id nonce.ID, key pub.Key) OnionSkins { return append(o, &Cipher{ID: id, Key: key.ToBytes()}) diff --git a/version.go b/version.go index 3cf3ce14..4028734c 100644 --- a/version.go +++ b/version.go @@ -13,11 +13,11 @@ var ( // GitRef is the gitref, as in refs/heads/branchname. GitRef = "refs/heads/main" // ParentGitCommit is the commit hash of the parent HEAD. - ParentGitCommit = "feabf7f2666ba523f71a346b30611e00e0b639dd" + ParentGitCommit = "3391ff428d2de9a8a824a6066b4b0e842e264042" // BuildTime stores the time when the current binary was built. - BuildTime = "2022-12-19T13:27:32Z" + BuildTime = "2022-12-19T13:30:14Z" // SemVer lists the (latest) git tag on the build. - SemVer = "v0.0.189" + SemVer = "v0.0.190" // PathBase is the path base returned from runtime caller. PathBase = "/home/loki/src/github.com/Indra-Labs/indra/" // Major is the major number from the tag. @@ -25,7 +25,7 @@ var ( // Minor is the minor number from the tag. Minor = 0 // Patch is the patch version number from the tag. - Patch = 189 + Patch = 190 ) // Version returns a pretty printed version information string.