Skip to content

Commit

Permalink
Scope buffers, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Phillipson committed Oct 31, 2017
1 parent 948d8b2 commit 593663b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/buffers.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var Buffers = require('buffers');
var Buffers = require('@owstack/buffers');

Buffers.prototype.skip = function(i) {
if (i === 0) {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@owstack/bch-p2p",
"version": "0.0.3",
"version": "0.0.4",
"description": "Interface to the bitcoin cash P2P network for Bch Node.",
"main": "index.js",
"scripts": {
Expand All @@ -19,7 +19,7 @@
},
"dependencies": {
"@owstack/bch-lib": "^0.0.3",
"@owstack/buffers": "^0.0.1",
"@owstack/buffers": "^0.0.2",
"bloom-filter": "^0.2.0",
"socks5-client": "^0.3.6"
},
Expand Down
2 changes: 1 addition & 1 deletion test/messages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
var chai = require('chai');
var should = chai.should();

var Buffers = require('buffers');
var Buffers = require('@owstack/buffers');
var P2P = require('../../');
var Messages = P2P.Messages;
var messages = new Messages();
Expand Down

0 comments on commit 593663b

Please sign in to comment.