aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/block.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-01-02 19:09:38 +0800
committerobscuren <geffobscura@gmail.com>2015-01-02 19:09:38 +0800
commit48d2a8b8ee9621810a988e3561e4213749c54da7 (patch)
treecbce2a2427287116420e074f4a5ecd8d4f35fbbc /core/types/block.go
parent477a6d426cd798f036df85b15d73935060503a48 (diff)
downloadgo-tangerine-48d2a8b8ee9621810a988e3561e4213749c54da7.tar
go-tangerine-48d2a8b8ee9621810a988e3561e4213749c54da7.tar.gz
go-tangerine-48d2a8b8ee9621810a988e3561e4213749c54da7.tar.bz2
go-tangerine-48d2a8b8ee9621810a988e3561e4213749c54da7.tar.lz
go-tangerine-48d2a8b8ee9621810a988e3561e4213749c54da7.tar.xz
go-tangerine-48d2a8b8ee9621810a988e3561e4213749c54da7.tar.zst
go-tangerine-48d2a8b8ee9621810a988e3561e4213749c54da7.zip
Refactored tx pool and added extra fields to block
* chain manager sets td on block + td output w/ String * added tx pool tests for removing/adding/validating * tx pool now uses a set for txs instead of list.List
Diffstat (limited to 'core/types/block.go')
-rw-r--r--core/types/block.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/types/block.go b/core/types/block.go
index 7b4695f73..b59044bfc 100644
--- a/core/types/block.go
+++ b/core/types/block.go
@@ -209,7 +209,7 @@ func (self *Block) HashNoNonce() []byte {
}
func (self *Block) String() string {
- return fmt.Sprintf(`BLOCK(%x): Size: %v {
+ return fmt.Sprintf(`BLOCK(%x): Size: %v TD: %v {
Header:
[
%v
@@ -219,7 +219,7 @@ Transactions:
Uncles:
%v
}
-`, self.header.Hash(), self.Size(), self.header, self.transactions, self.uncles)
+`, self.header.Hash(), self.Size(), self.Td, self.header, self.transactions, self.uncles)
}
func (self *Header) String() string {