Parsing for block and tx

This commit is contained in:
obscuren
2014-01-03 13:40:38 +01:00
parent 055407c835
commit 9581faf5fd
3 changed files with 8 additions and 5 deletions

View File

@@ -57,7 +57,7 @@ func NewTransaction(to string, value uint32, data []string) *Transaction {
for i, val := range data {
instr, err := CompileInstr(val)
if err != nil {
fmt.Printf("compile error:%d %v", i+1, err)
fmt.Printf("compile error:%d %v\n", i+1, err)
}
tx.data[i] = instr