diff --git a/gun-eth/index.js b/gun-eth/index.js index 1ac9cf8..bdcdcbf 100644 --- a/gun-eth/index.js +++ b/gun-eth/index.js @@ -25,18 +25,13 @@ Gun.chain.setToken = function (token) { return this; }; -Gun.on("opt", function (ctx) { - if (ctx.once) { - return; - } - ctx.on("out", function (msg) { - var to = this.to; - // Usa il token personalizzato - msg.headers = { - token: customToken, - }; - to.next(msg); // passa al prossimo middleware - }); +ctx.on("put", function (msg) { + const to = this.to; + // Usa il token personalizzato + msg.headers = { + token: customToken, + }; + to.next(msg); // passa al prossimo middleware }); // Aggiungi il metodo alla catena di Gun diff --git a/gun-eth/package.json b/gun-eth/package.json index 2311ade..e5e2e41 100644 --- a/gun-eth/package.json +++ b/gun-eth/package.json @@ -1,6 +1,6 @@ { "name": "gun-eth", - "version": "1.2.5", + "version": "1.2.6", "description": "A GunDB plugin for Ethereum, and Web3", "main": "index.js", "scripts": {