diff options
author | zelig <viktor.tron@gmail.com> | 2015-04-10 23:31:00 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-04-10 23:36:40 +0800 |
commit | da7332a7317bda9003e5e8a4aaa4b1710c69b664 (patch) | |
tree | 7c4fc11a84c18946b105bf778aa7243dd70e54ec /blockpool/errors_test.go | |
parent | fc1d1f9afd155fab1f614c6a0340233f90afafd6 (diff) | |
download | go-tangerine-da7332a7317bda9003e5e8a4aaa4b1710c69b664.tar.gz go-tangerine-da7332a7317bda9003e5e8a4aaa4b1710c69b664.tar.zst go-tangerine-da7332a7317bda9003e5e8a4aaa4b1710c69b664.zip |
td update from node
- reorg and simplify AddBlock
- introduce nodeCache
- TestPeerPromotionByTdOnBlock unskipped and passes
- move switchC/idleC channel creation around: solves deadlock (now respects the contract with section process: either can activate or complete at any one time)
Diffstat (limited to 'blockpool/errors_test.go')
-rw-r--r-- | blockpool/errors_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blockpool/errors_test.go b/blockpool/errors_test.go index c9bf79a23..0fbf94d7d 100644 --- a/blockpool/errors_test.go +++ b/blockpool/errors_test.go @@ -128,7 +128,7 @@ func TestErrInsufficientChainInfo(t *testing.T) { } func TestIncorrectTD(t *testing.T) { - t.Skip() // td not tested atm + t.Skip("skipping TD check until network is healthy") test.LogInit() _, blockPool, blockPoolTester := newTestBlockPool(t) blockPoolTester.blockChain[0] = nil |