Skip to content

Commit

Permalink
remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
rohenaz committed Jan 23, 2023
1 parent 98c0e5b commit 976ab3c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
4 changes: 0 additions & 4 deletions bpu.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ func (b *BpuTx) fromTx(config ParseConfig) (err error) {
outputs = append(outputs, Output{
XPut: outXput,
})
fmt.Println("Testing", *outputs[0].Tape[0].Cell[0].Ops)
}

txid := gene.TxID()
Expand Down Expand Up @@ -209,9 +208,6 @@ func (x *XPut) processChunk(chunk []byte, o ParseConfig, chunkIndex uint8, idx u
h = &hexStr
}

if op != nil && *op == 0 {
fmt.Println("debug me")
}
// Split config provided
if o.SplitConfig != nil {
for _, setting := range o.SplitConfig {
Expand Down
2 changes: 0 additions & 2 deletions bpu_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ func TestTransform(t *testing.T) {

assert.Nil(t, err)
assert.NotNil(t, bpuTx)

// TODO: Test the transform actually worked with a large tx
})
}
Expand Down Expand Up @@ -145,7 +144,6 @@ func TestBpuBitchat(t *testing.T) {
assert.NotNil(t, bpuTx.Out[0].XPut.Tape)
assert.Equal(t, 2, len(bpuTx.Out[0].Tape[0].Cell))
})

}

// TODO: Split tests

0 comments on commit 976ab3c

Please sign in to comment.