We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32ea299 commit a8cfc1dCopy full SHA for a8cfc1d
dappDevelopment/commands.go
@@ -79,6 +79,8 @@ var DAppStream = cli.Command{
79
80
h.SetStreamHandler("/dapp-development/0.0.0", func(stream net.Stream) {
81
82
+ fmt.Println("got stream")
83
+
84
writer := bufio.NewWriter(stream)
85
reader := bufio.NewReader(stream)
86
protoEnc := protoMc.Multicodec(nil).Encoder(writer)
@@ -161,7 +163,7 @@ var DAppStream = cli.Command{
161
163
162
164
}()
165
- w.Add("dapp_build.json")
166
+ w.Add(dAppFileName)
167
w.Start(time.Millisecond * 100)
168
169
})
0 commit comments