diff --git a/lib/web3.js b/lib/web3.js index 2edbb44..34419c2 100644 --- a/lib/web3.js +++ b/lib/web3.js @@ -28,7 +28,6 @@ var version = require('./version.json'); var net = require('./web3/methods/net'); var eth = require('./web3/methods/eth'); var db = require('./web3/methods/db'); -var bzz = require('./web3/methods/bzz'); var shh = require('./web3/methods/shh'); var watches = require('./web3/methods/watches'); var Filter = require('./web3/filter'); diff --git a/lib/web3/methods/bzz.js b/lib/web3/methods/bzz.js deleted file mode 100644 index ddfafca..0000000 --- a/lib/web3/methods/bzz.js +++ /dev/null @@ -1,44 +0,0 @@ -/* - This file is part of ethereum.js. - - ethereum.js is free software: you can redistribute it and/or modify - it under the terms of the GNU Lesser General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - ethereum.js is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public License - along with ethereum.js. If not, see . -*/ -/** @file bzz.js - * @authors: - * Gav Wood - * @date 2015 - */ - -var Method = require('../method'); - -var put = new Method({ - name: 'put', - call: 'bzz_put', - params: 1 -}); - - -var get = new Method({ - name: 'get', - call: 'bzz_get', - params: 1 -}); - -var methods = [ - put, get -]; - -module.exports = { - methods: methods -};