Skip to content

Commit

Permalink
Merge pull request ipfs#109 from libp2p/feat/faster-b58
Browse files Browse the repository at this point in the history
switch to a faster base58 implementation
  • Loading branch information
Stebalien authored Dec 18, 2017
2 parents b81d571 + 2a930ba commit ceab788
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,6 @@
"name": "go-ipfs-util",
"version": "1.2.6"
},
{
"author": "whyrusleeping",
"hash": "QmT8rehPR3F6bmwL6zjUN8XpiDBFFpMP2myPdC6ApsWfJf",
"name": "go-base58",
"version": "0.0.0"
},
{
"author": "whyrusleeping",
"hash": "QmTnsezaB1wWNRHeHnYrm8K4d5i9wtyj3GsqjC3Rt5b5v5",
Expand All @@ -171,6 +165,12 @@
"hash": "QmZNkThpqfVXs9GNbexPrfBbXSLNYeKrE7jwFM2oqHbyqN",
"name": "go-libp2p-protocol",
"version": "1.0.0"
},
{
"author": "mr-tron",
"hash": "QmWFAMPqsEyUX7gDUsRVmMWz59FxSpJ1b2v6bJ1yYzo7jY",
"name": "go-base58-fast",
"version": "0.1.1"
}
],
"gxVersion": "0.4.0",
Expand Down
2 changes: 1 addition & 1 deletion pb/message.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package dht_pb

import (
logging "github.com/ipfs/go-log"
b58 "github.com/jbenet/go-base58"
inet "github.com/libp2p/go-libp2p-net"
peer "github.com/libp2p/go-libp2p-peer"
pstore "github.com/libp2p/go-libp2p-peerstore"
b58 "github.com/mr-tron/base58/base58"
ma "github.com/multiformats/go-multiaddr"
)

Expand Down

0 comments on commit ceab788

Please sign in to comment.