Browse Source

update some comments

pull/233/head
Ethan Buchman 8 years ago
parent
commit
05136ff09d
2 changed files with 3 additions and 2 deletions
  1. +1
    -1
      consensus/state.go
  2. +2
    -1
      types/tx.go

+ 1
- 1
consensus/state.go View File

@ -1235,7 +1235,7 @@ func (cs *ConsensusState) finalizeCommit(height int) {
PanicQ(Fmt("Commit failed for application: %v", err))
}
// txs committed and removed from mempool, fire events
// txs committed, bad ones removed from mepool; fire events
eventCache.Flush()
// Save to blockStore.


+ 2
- 1
types/tx.go View File

@ -8,7 +8,8 @@ type Tx []byte
// NOTE: this is the hash of the go-wire encoded Tx.
// Tx has no types at this level, so just length-prefixed.
// Maybe it should just be the hash of the bytes tho?
// Alternatively, it may make sense to add types here and let
// []byte be type 0x1 so we can have versioned txs if need be in the future.
func (tx Tx) Hash() []byte {
return merkle.SimpleHashFromBinary(tx)
}


Loading…
Cancel
Save