From 676e9bdedbfb363a8baf4b052a75802a34871c36 Mon Sep 17 00:00:00 2001 From: Jake Taylor <jtaylorapps@gmail.com> Date: Tue, 4 Apr 2023 16:50:28 -0500 Subject: [PATCH] fixes for new client bindings --- go.mod | 2 +- go.sum | 4 ++-- wasm_test.go | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index bbd7c938..88cf8645 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ require ( github.com/hack-pad/go-indexeddb v0.2.0 github.com/pkg/errors v0.9.1 github.com/spf13/jwalterweatherman v1.1.0 - gitlab.com/elixxir/client/v4 v4.6.2-0.20230403172317-1b360bb9aa50 + gitlab.com/elixxir/client/v4 v4.6.2-0.20230404214725-85793f3ddac0 gitlab.com/elixxir/crypto v0.0.7-0.20230322181929-8cb5fa100824 gitlab.com/elixxir/primitives v0.0.3-0.20230214180039-9a25e2d3969c gitlab.com/xx_network/crypto v0.0.5-0.20230214003943-8a09396e95dd diff --git a/go.sum b/go.sum index 94a25f3a..bdfcc0b0 100644 --- a/go.sum +++ b/go.sum @@ -391,8 +391,8 @@ github.com/zeebo/pcg v1.0.1 h1:lyqfGeWiv4ahac6ttHs+I5hwtH/+1mrhlCtVNQM2kHo= github.com/zeebo/pcg v1.0.1/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4= gitlab.com/elixxir/bloomfilter v0.0.0-20230315224936-a4459418f300 h1:oF3Pkf5NBb48KB89Q4sQXKQCIsWp1IVsqKWHWFsfBRc= gitlab.com/elixxir/bloomfilter v0.0.0-20230315224936-a4459418f300/go.mod h1:1X8gRIAPDisS3W6Vtr/ymiUmZMJUIwDV1o5DEOo/pzw= -gitlab.com/elixxir/client/v4 v4.6.2-0.20230403172317-1b360bb9aa50 h1:Vpt3Eh4Vn5YPAqX8USGT3Gz5BXfGSY9muNwfMp5v75o= -gitlab.com/elixxir/client/v4 v4.6.2-0.20230403172317-1b360bb9aa50/go.mod h1:WEYVoIXHi2YMR0JafS5pHNWLOtnkLBBt8KdhKF/ZHcY= +gitlab.com/elixxir/client/v4 v4.6.2-0.20230404214725-85793f3ddac0 h1:17xwWK6AQYcpfJmYpFUEMU/PDMe+qqsRYPyZakHtAn4= +gitlab.com/elixxir/client/v4 v4.6.2-0.20230404214725-85793f3ddac0/go.mod h1:WEYVoIXHi2YMR0JafS5pHNWLOtnkLBBt8KdhKF/ZHcY= gitlab.com/elixxir/comms v0.0.4-0.20230310205528-f06faa0d2f0b h1:8AVK93UEs/aufoqtFgyMVt9gf0oJ8F4pA60ZvEVvG+s= gitlab.com/elixxir/comms v0.0.4-0.20230310205528-f06faa0d2f0b/go.mod h1:z+qW0D9VpY5QKTd7wRlb5SK4kBNqLYsa4DXBcUXue9Q= gitlab.com/elixxir/crypto v0.0.7-0.20230322181929-8cb5fa100824 h1:6gmaBG4glJKA41SV2tNBbT6mFwTEXR9Jn9JaU6JSSKM= diff --git a/wasm_test.go b/wasm_test.go index 4e3983a3..2d36f7b0 100644 --- a/wasm_test.go +++ b/wasm_test.go @@ -58,6 +58,7 @@ func TestPublicFunctions(t *testing.T) { // Mobile-specific bindings not supported by the browser "NewChannelsManagerMobile": {}, "LoadChannelsManagerMobile": {}, + "NewDmManagerMobile": {}, // C-Library specific bindings not needed by the browser "GetDMInstance": {}, -- GitLab