Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bourneAc committed Jun 3, 2019
1 parent 2f97d35 commit a8408ae
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions zero/light/sli.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ func (self *SLI) DecOuts(outs []light_types.Out, skr *keys.PKr) (douts []light_t
info_desc.Flag = flag
info_desc.Einfo = out.State.OS.Out_Z.EInfo
cpt.DecOutput(&info_desc)

data, _ := json.Marshal(info_desc)
log.Printf("DecOuts info_desc : %s", string(data))

if e := stx.ConfirmOut_Z(&info_desc, out.State.OS.Out_Z); e == nil {
dout.Asset = assets.NewAsset(
&assets.Token{
Expand All @@ -79,6 +83,9 @@ func (self *SLI) DecOuts(outs []light_types.Out, skr *keys.PKr) (douts []light_t
log.Printf("DecOuts Out_O == nil")
}
douts = append(douts, dout)

data, _ = json.Marshal(douts)
log.Printf("DecOuts douts : %s", string(data))
}
return
}
Expand Down

0 comments on commit a8408ae

Please sign in to comment.