mirror of https://github.com/status-im/web3.js.git
Remove bzz for now.
This commit is contained in:
parent
57b4e918f3
commit
700f58c9ac
|
@ -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');
|
||||
|
|
|
@ -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 <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
/** @file bzz.js
|
||||
* @authors:
|
||||
* Gav Wood <g@ethdev.com>
|
||||
* @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
|
||||
};
|
Loading…
Reference in New Issue