Revert "Add nitro wallet to BitswapNetwork"
This reverts commit e55ac4e9de
.
This commit is contained in:
parent
6fbe37eb55
commit
22f4c277dd
|
@ -13,7 +13,6 @@ import pkg/chronicles
|
|||
import pkg/chronos
|
||||
|
||||
import pkg/libp2p
|
||||
import pkg/nitro
|
||||
|
||||
import ../blocktype as bt
|
||||
import ./protobuf/bitswap as pb
|
||||
|
@ -21,7 +20,6 @@ import ./protobuf/payments
|
|||
import ./networkpeer
|
||||
|
||||
export pb, networkpeer
|
||||
export nitro
|
||||
export payments
|
||||
|
||||
logScope:
|
||||
|
@ -65,7 +63,6 @@ type
|
|||
BitswapNetwork* = ref object of LPProtocol
|
||||
peers*: Table[PeerID, NetworkPeer]
|
||||
switch*: Switch
|
||||
wallet*: Wallet
|
||||
handlers*: BitswapHandlers
|
||||
request*: BitswapRequest
|
||||
getConn: ConnProvider
|
||||
|
@ -322,14 +319,12 @@ method init*(b: BitswapNetwork) =
|
|||
proc new*(
|
||||
T: type BitswapNetwork,
|
||||
switch: Switch,
|
||||
wallet: Wallet,
|
||||
connProvider: ConnProvider = nil): T =
|
||||
## Create a new BitswapNetwork instance
|
||||
##
|
||||
|
||||
let b = BitswapNetwork(
|
||||
switch: switch,
|
||||
wallet: wallet,
|
||||
getConn: connProvider)
|
||||
|
||||
proc sendWantList(
|
||||
|
|
|
@ -28,7 +28,6 @@ suite "Bitswap engine - 2 nodes":
|
|||
|
||||
var
|
||||
switch1, switch2: Switch
|
||||
wallet1, wallet2: Wallet
|
||||
pricing1, pricing2: Pricing
|
||||
network1, network2: BitswapNetwork
|
||||
bitswap1, bitswap2: Bitswap
|
||||
|
@ -42,8 +41,6 @@ suite "Bitswap engine - 2 nodes":
|
|||
|
||||
switch1 = newStandardSwitch()
|
||||
switch2 = newStandardSwitch()
|
||||
wallet1 = Wallet.init(EthPrivateKey.random())
|
||||
wallet2 = Wallet.init(EthPrivateKey.random())
|
||||
pricing1 = Pricing.example
|
||||
pricing2 = Pricing.example
|
||||
awaiters.add(await switch1.start())
|
||||
|
@ -52,11 +49,11 @@ suite "Bitswap engine - 2 nodes":
|
|||
peerId1 = switch1.peerInfo.peerId
|
||||
peerId2 = switch2.peerInfo.peerId
|
||||
|
||||
network1 = BitswapNetwork.new(switch1, wallet1)
|
||||
network1 = BitswapNetwork.new(switch = switch1)
|
||||
bitswap1 = Bitswap.new(MemoryStore.new(blocks1), network1)
|
||||
switch1.mount(network1)
|
||||
|
||||
network2 = BitswapNetwork.new(switch2, wallet2)
|
||||
network2 = BitswapNetwork.new(switch = switch2)
|
||||
bitswap2 = Bitswap.new(MemoryStore.new(blocks2), network2)
|
||||
switch2.mount(network2)
|
||||
|
||||
|
|
|
@ -39,7 +39,6 @@ suite "Bitswap network":
|
|||
buffer = newBufferStream()
|
||||
network = BitswapNetwork.new(
|
||||
switch = newStandardSwitch(),
|
||||
wallet = Wallet.init(EthPrivateKey.random()),
|
||||
connProvider = getConn)
|
||||
network.setupPeer(peerId)
|
||||
networkPeer = network.peers[peerId]
|
||||
|
@ -139,7 +138,6 @@ suite "Bitswap Network - e2e":
|
|||
|
||||
var
|
||||
switch1, switch2: Switch
|
||||
wallet1, wallet2: Wallet
|
||||
network1, network2: BitswapNetwork
|
||||
awaiters: seq[Future[void]]
|
||||
done: Future[void]
|
||||
|
@ -148,15 +146,15 @@ suite "Bitswap Network - e2e":
|
|||
done = newFuture[void]()
|
||||
switch1 = newStandardSwitch()
|
||||
switch2 = newStandardSwitch()
|
||||
wallet1 = Wallet.init(EthPrivateKey.random())
|
||||
wallet2 = Wallet.init(EthPrivateKey.random())
|
||||
awaiters.add(await switch1.start())
|
||||
awaiters.add(await switch2.start())
|
||||
|
||||
network1 = BitswapNetwork.new(switch1, wallet1)
|
||||
network1 = BitswapNetwork.new(
|
||||
switch = switch1)
|
||||
switch1.mount(network1)
|
||||
|
||||
network2 = BitswapNetwork.new(switch2, wallet2)
|
||||
network2 = BitswapNetwork.new(
|
||||
switch = switch2)
|
||||
switch2.mount(network2)
|
||||
|
||||
await switch1.connect(
|
||||
|
|
|
@ -17,8 +17,7 @@ proc generateNodes*(
|
|||
for i in 0..<num:
|
||||
let
|
||||
switch = newStandardSwitch(transportFlags = {ServerFlags.ReuseAddr})
|
||||
wallet = Wallet.init(EthPrivateKey.random())
|
||||
network = BitswapNetwork.new(switch, wallet)
|
||||
network = BitswapNetwork.new(switch = switch)
|
||||
bitswap = Bitswap.new(MemoryStore.new(blocks), network)
|
||||
|
||||
switch.mount(network)
|
||||
|
|
Loading…
Reference in New Issue