Skip to content
Snippets Groups Projects
Commit e1d06992 authored by Richard T. Carback III's avatar Richard T. Carback III
Browse files

hotfix for ChannelDBCipher -> DMDbCipher

parent 1e957943
No related branches found
No related tags found
1 merge request!67fix for latest client release
......@@ -167,7 +167,7 @@ func NewDMClientWithIndexedDb(_ js.Value, args []js.Value) any {
messageReceivedCB := args[3]
cipherID := args[4].Int()
cipher, err := bindings.GetChannelDbCipherTrackerFromID(cipherID)
cipher, err := bindings.GetDMDbCipherTrackerFromID(cipherID)
if err != nil {
utils.Throw(utils.TypeError, err)
}
......@@ -216,7 +216,7 @@ func NewDMClientWithIndexedDbUnsafe(_ js.Value, args []js.Value) any {
}
func newDMClientWithIndexedDb(cmixID int, wasmJsPath string,
privateIdentity []byte, cb js.Value, cipher *bindings.ChannelDbCipher) any {
privateIdentity []byte, cb js.Value, cipher *bindings.DMDbCipher) any {
messageReceivedCB := func(uuid uint64, pubKey ed25519.PublicKey,
update bool) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment