Changed var names around

This commit is contained in:
Maran 2014-05-26 17:18:51 +02:00
parent aefcb83419
commit 2232974cda
1 changed files with 3 additions and 2 deletions

View File

@ -23,17 +23,18 @@ func NewPBlock(block *ethchain.Block) *PBlock {
if block == nil {
return nil
}
var ptxs []PTx
for _, tx := range block.Transactions() {
ptxs = append(ptxs, *NewPTx(tx))
}
b, err := json.Marshal(ptxs)
txJson, err := json.Marshal(ptxs)
if err != nil {
return nil
}
return &PBlock{ref: block, Number: int(block.Number.Uint64()), Hash: ethutil.Hex(block.Hash()), Transactions: string(b), Time: block.Time}
return &PBlock{ref: block, Number: int(block.Number.Uint64()), Hash: ethutil.Hex(block.Hash()), Transactions: string(txJson), Time: block.Time}
}
func (self *PBlock) ToString() string {