diff --git a/accounts/abi/bind/bind_test.go b/accounts/abi/bind/bind_test.go index b2f53e5ba7..57503a54ff 100644 --- a/accounts/abi/bind/bind_test.go +++ b/accounts/abi/bind/bind_test.go @@ -463,7 +463,7 @@ func TestBindings(t *testing.T) { if err != nil { t.Fatalf("failed check for goimports symlink bug: %v", err) } - if !strings.Contains(string(linkTestDeps), "go-ethereum") { + if !strings.Contains(string(linkTestDeps), "go-callisto") { t.Skip("symlinked environment doesn't support bind (https://github.com/golang/go/issues/14845)") } // Create a temporary workspace for the test suite diff --git a/build/env.sh b/build/env.sh index 3914555d1b..99fb5ec969 100755 --- a/build/env.sh +++ b/build/env.sh @@ -10,11 +10,11 @@ fi # Create fake Go workspace if it doesn't exist yet. workspace="$PWD/build/_workspace" root="$PWD" -ethdir="$workspace/src/github.com/ethereum" -if [ ! -L "$ethdir/go-ethereum" ]; then +ethdir="$workspace/src/github.com/EthereumCommonwealth" +if [ ! -L "$ethdir/go-callisto" ]; then mkdir -p "$ethdir" cd "$ethdir" - ln -s ../../../../../. go-ethereum + ln -s ../../../../../. go-callisto cd "$root" fi @@ -23,8 +23,8 @@ GOPATH="$workspace" export GOPATH # Run the command inside the workspace. -cd "$ethdir/go-ethereum" -PWD="$ethdir/go-ethereum" +cd "$ethdir/go-callisto" +PWD="$ethdir/go-callisto" # Launch the arguments with the configured environment. exec "$@" diff --git a/consensus/ethash/consensus.go b/consensus/ethash/consensus.go index 0b9a7579b6..a248046f3f 100644 --- a/consensus/ethash/consensus.go +++ b/consensus/ethash/consensus.go @@ -37,8 +37,8 @@ import ( // Ethash proof-of-work protocol constants. var ( callistoBlockReward, _ = new(big.Int).SetString("10000000000000000000", 10) // Block reward in wei for successfully mining a block - frontierBlockReward *big.Int = big.NewInt(5e+18) // Block reward in wei for successfully mining a block - byzantiumBlockReward *big.Int = big.NewInt(3e+18) // Block reward in wei for successfully mining a block upward from Byzantium + FrontierBlockReward *big.Int = big.NewInt(5e+18) // Block reward in wei for successfully mining a block + ByzantiumBlockReward *big.Int = big.NewInt(3e+18) // Block reward in wei for successfully mining a block upward from Byzantium maxUncles = 2 // Maximum number of uncles allowed in a single block ) @@ -530,10 +530,16 @@ var ( // TODO (karalabe): Move the chain maker into this package and make this private! func AccumulateRewards(config *params.ChainConfig, state *state.StateDB, header *types.Header, uncles []*types.Header) { // Select the correct block reward based on chain progression - blockReward := callistoBlockReward - //if config.IsByzantium(header.Number) { - // blockReward = byzantiumBlockReward - //} + blockReward := FrontierBlockReward + + if config.IsCallisto(header.Number) { + blockReward = callistoBlockReward + } + + if config.IsByzantium(header.Number) { + blockReward = ByzantiumBlockReward + } + treasuryPercent := getTreasuryPercent(header) reward := new(big.Int).Set(blockReward) treasuryReward := new(big.Int) @@ -551,9 +557,13 @@ func AccumulateRewards(config *params.ChainConfig, state *state.StateDB, header r.Div(blockReward, big32) reward.Add(reward, r) } - reward.Sub(reward, treasuryReward) + + if config.IsCallisto(header.Number) { + reward.Sub(reward, treasuryReward) + state.AddBalance(common.HexToAddress("SET ADDRESS IN SETTINGS"), treasuryReward) + } + state.AddBalance(header.Coinbase, reward) - state.AddBalance(common.HexToAddress("SET ADDRESS IN SETTINGS"), treasuryReward) } // getTreasuryPercent computes the current block reward's percent will be for diff --git a/params/config.go b/params/config.go index 85743b262e..a036354b03 100644 --- a/params/config.go +++ b/params/config.go @@ -82,16 +82,16 @@ var ( // // This configuration is intentionally not using keyed fields to force anyone // adding flags to the config to also have to set these fields. - AllEthashProtocolChanges = &ChainConfig{big.NewInt(1337), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), new(EthashConfig), nil} + AllEthashProtocolChanges = &ChainConfig{big.NewInt(1337), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), new(EthashConfig), nil} // AllCliqueProtocolChanges contains every protocol change (EIPs) introduced // and accepted by the Ethereum core developers into the Clique consensus. // // This configuration is intentionally not using keyed fields to force anyone // adding flags to the config to also have to set these fields. - AllCliqueProtocolChanges = &ChainConfig{big.NewInt(1337), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), nil, &CliqueConfig{Period: 0, Epoch: 30000}} + AllCliqueProtocolChanges = &ChainConfig{big.NewInt(1337), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), nil, &CliqueConfig{Period: 0, Epoch: 30000}} - TestChainConfig = &ChainConfig{big.NewInt(1), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), new(EthashConfig), nil} + TestChainConfig = &ChainConfig{big.NewInt(1), big.NewInt(0), nil, false, big.NewInt(0), common.Hash{}, big.NewInt(0), big.NewInt(0), big.NewInt(0), big.NewInt(0), new(EthashConfig), nil} TestRules = TestChainConfig.Rules(new(big.Int)) ) @@ -117,6 +117,7 @@ type ChainConfig struct { ByzantiumBlock *big.Int `json:"byzantiumBlock,omitempty"` // Byzantium switch block (nil = no fork, 0 = already on byzantium) + CallistoBlock *big.Int `json:"byzantiumBlock,omitempty"` // Various consensus engines Ethash *EthashConfig `json:"ethash,omitempty"` Clique *CliqueConfig `json:"clique,omitempty"` @@ -161,6 +162,7 @@ func (c *ChainConfig) String() string { c.EIP155Block, c.EIP158Block, c.ByzantiumBlock, + c.CallistoBlock, engine, ) } @@ -191,6 +193,10 @@ func (c *ChainConfig) IsByzantium(num *big.Int) bool { return isForked(c.ByzantiumBlock, num) } +func (c *ChainConfig) IsCallisto(num *big.Int) bool { + return isForked(c.CallistoBlock, num) +} + // GasTable returns the gas table corresponding to the current phase (homestead or homestead reprice). // // The returned GasTable's fields shouldn't, under any circumstances, be changed. diff --git a/test_result b/test_result new file mode 100644 index 0000000000..f5849a712e --- /dev/null +++ b/test_result @@ -0,0 +1,4734 @@ +? github.com/EthereumCommonwealth/go-callisto [no test files] +=== RUN TestHDPathParsing +--- PASS: TestHDPathParsing (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/accounts 0.053s +=== RUN TestReader +--- SKIP: TestReader (0.00s) + abi_test.go:77: +=== RUN TestTestNumbers +--- PASS: TestTestNumbers (0.00s) +=== RUN TestTestString +--- PASS: TestTestString (0.00s) +=== RUN TestTestBool +--- PASS: TestTestBool (0.00s) +=== RUN TestTestSlice +--- PASS: TestTestSlice (0.00s) +=== RUN TestMethodSignature +--- PASS: TestMethodSignature (0.00s) +=== RUN TestMultiPack +--- PASS: TestMultiPack (0.00s) +=== RUN TestInputVariableInputLength +--- PASS: TestInputVariableInputLength (0.00s) +=== RUN TestDefaultFunctionParsing +--- PASS: TestDefaultFunctionParsing (0.00s) +=== RUN TestBareEvents +--- PASS: TestBareEvents (0.00s) +=== RUN TestEventId +--- PASS: TestEventId (0.00s) +=== RUN TestNumberTypes +--- PASS: TestNumberTypes (0.00s) +=== RUN TestSigned +--- PASS: TestSigned (0.00s) +=== RUN TestPack +--- PASS: TestPack (0.00s) +=== RUN TestMethodPack +--- PASS: TestMethodPack (0.00s) +=== RUN TestPackNumber +--- PASS: TestPackNumber (0.00s) +=== RUN TestTypeRegexp +--- PASS: TestTypeRegexp (0.01s) +=== RUN TestTypeCheck +--- PASS: TestTypeCheck (0.00s) +=== RUN TestUnpack +--- PASS: TestUnpack (0.00s) +=== RUN TestMultiReturnWithStruct +--- PASS: TestMultiReturnWithStruct (0.00s) +=== RUN TestUnmarshal +--- PASS: TestUnmarshal (0.00s) +=== RUN ExampleJSON +--- PASS: ExampleJSON (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/accounts/abi 0.059s +=== RUN TestBindings +--- PASS: TestBindings (4.95s) +=== RUN TestWaitDeployed +--- PASS: TestWaitDeployed (2.01s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/accounts/abi/bind 7.000s +? github.com/EthereumCommonwealth/go-callisto/accounts/abi/bind/backends [no test files] +=== RUN TestWatchNewFile +=== RUN TestWatchNoDir +=== RUN TestCacheInitialReload +--- PASS: TestCacheInitialReload (0.00s) +=== RUN TestCacheAddDeleteOrder +--- PASS: TestCacheAddDeleteOrder (0.00s) +=== RUN TestCacheFind +--- PASS: TestCacheFind (0.00s) +=== RUN TestUpdatedKeyfileContents +=== RUN TestKeyEncryptDecrypt +--- PASS: TestKeyEncryptDecrypt (0.00s) +=== RUN TestKeyStorePlain +--- PASS: TestKeyStorePlain (0.00s) +=== RUN TestKeyStorePassphrase +--- PASS: TestKeyStorePassphrase (0.00s) +=== RUN TestKeyStorePassphraseDecryptionFail +--- PASS: TestKeyStorePassphraseDecryptionFail (0.00s) +=== RUN TestImportPreSaleKey +--- PASS: TestImportPreSaleKey (0.00s) +=== RUN TestV3_PBKDF2_1 +=== RUN TestV3_PBKDF2_2 +--- SKIP: TestV3_PBKDF2_2 (0.00s) + keystore_plain_test.go:148: can't find JSON tests from submodule at ../../tests/testdata/KeyStoreTests +=== RUN TestV3_PBKDF2_3 +--- SKIP: TestV3_PBKDF2_3 (0.00s) + keystore_plain_test.go:148: can't find JSON tests from submodule at ../../tests/testdata/KeyStoreTests +=== RUN TestV3_PBKDF2_4 +--- SKIP: TestV3_PBKDF2_4 (0.00s) + keystore_plain_test.go:148: can't find JSON tests from submodule at ../../tests/testdata/KeyStoreTests +=== RUN TestV3_Scrypt_1 +=== RUN TestV3_Scrypt_2 +--- SKIP: TestV3_Scrypt_2 (0.00s) + keystore_plain_test.go:148: can't find JSON tests from submodule at ../../tests/testdata/KeyStoreTests +=== RUN TestV1_1 +=== RUN TestV1_2 +=== RUN TestKeyForDirectICAP +=== RUN TestV3_31_Byte_Key +=== RUN TestV3_30_Byte_Key +=== RUN TestKeyStore +--- PASS: TestKeyStore (0.00s) +=== RUN TestSign +--- PASS: TestSign (0.00s) +=== RUN TestSignWithPassphrase +--- PASS: TestSignWithPassphrase (0.00s) +=== RUN TestTimedUnlock +--- PASS: TestTimedUnlock (0.25s) +=== RUN TestOverrideUnlock +--- PASS: TestOverrideUnlock (0.25s) +=== RUN TestSignRace +--- PASS: TestSignRace (0.02s) +=== RUN TestWalletNotifierLifecycle +--- PASS: TestWalletNotifierLifecycle (6.26s) +=== RUN TestWalletNotifications +--- PASS: TestWalletNotifications (0.72s) +--- PASS: TestV3_30_Byte_Key (0.03s) +--- PASS: TestV3_31_Byte_Key (0.00s) +--- PASS: TestKeyForDirectICAP (0.18s) +--- PASS: TestV3_PBKDF2_1 (0.65s) +--- PASS: TestWatchNewFile (1.60s) +--- PASS: TestV1_2 (1.69s) +--- PASS: TestV1_1 (1.71s) +--- PASS: TestV3_Scrypt_1 (1.69s) +--- PASS: TestWatchNoDir (3.11s) +--- PASS: TestUpdatedKeyfileContents (7.91s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/accounts/keystore 15.530s +? github.com/EthereumCommonwealth/go-callisto/accounts/usbwallet [no test files] +? github.com/EthereumCommonwealth/go-callisto/accounts/usbwallet/internal/trezor [no test files] +=== RUN TestRefHasher +=== RUN TestRefHasher/0_bytes +=== RUN TestRefHasher/1_bytes +=== RUN TestRefHasher/2_bytes +=== RUN TestRefHasher/3_bytes +=== RUN TestRefHasher/4_bytes +=== RUN TestRefHasher/5_bytes +=== RUN TestRefHasher/6_bytes +=== RUN TestRefHasher/7_bytes +=== RUN TestRefHasher/8_bytes +=== RUN TestRefHasher/9_bytes +=== RUN TestRefHasher/10_bytes +=== RUN TestRefHasher/11_bytes +=== RUN TestRefHasher/12_bytes +=== RUN TestRefHasher/13_bytes +=== RUN TestRefHasher/14_bytes +=== RUN TestRefHasher/15_bytes +=== RUN TestRefHasher/16_bytes +=== RUN TestRefHasher/17_bytes +=== RUN TestRefHasher/18_bytes +=== RUN TestRefHasher/19_bytes +=== RUN TestRefHasher/20_bytes +=== RUN TestRefHasher/21_bytes +=== RUN TestRefHasher/22_bytes +=== RUN TestRefHasher/23_bytes +=== RUN TestRefHasher/24_bytes +=== RUN TestRefHasher/25_bytes +=== RUN TestRefHasher/26_bytes +=== RUN TestRefHasher/27_bytes +=== RUN TestRefHasher/28_bytes +=== RUN TestRefHasher/29_bytes +=== RUN TestRefHasher/30_bytes +=== RUN TestRefHasher/31_bytes +=== RUN TestRefHasher/32_bytes +=== RUN TestRefHasher/33_bytes +=== RUN TestRefHasher/34_bytes +=== RUN TestRefHasher/35_bytes +=== RUN TestRefHasher/36_bytes +=== RUN TestRefHasher/37_bytes +=== RUN TestRefHasher/38_bytes +=== RUN TestRefHasher/39_bytes +=== RUN TestRefHasher/40_bytes +=== RUN TestRefHasher/41_bytes +=== RUN TestRefHasher/42_bytes +=== RUN TestRefHasher/43_bytes +=== RUN TestRefHasher/44_bytes +=== RUN TestRefHasher/45_bytes +=== RUN TestRefHasher/46_bytes +=== RUN TestRefHasher/47_bytes +=== RUN TestRefHasher/48_bytes +=== RUN TestRefHasher/49_bytes +=== RUN TestRefHasher/50_bytes +=== RUN TestRefHasher/51_bytes +=== RUN TestRefHasher/52_bytes +=== RUN TestRefHasher/53_bytes +=== RUN TestRefHasher/54_bytes +=== RUN TestRefHasher/55_bytes +=== RUN TestRefHasher/56_bytes +=== RUN TestRefHasher/57_bytes +=== RUN TestRefHasher/58_bytes +=== RUN TestRefHasher/59_bytes +=== RUN TestRefHasher/60_bytes +=== RUN TestRefHasher/61_bytes +=== RUN TestRefHasher/62_bytes +=== RUN TestRefHasher/63_bytes +=== RUN TestRefHasher/64_bytes +=== RUN TestRefHasher/65_bytes +=== RUN TestRefHasher/66_bytes +=== RUN TestRefHasher/67_bytes +=== RUN TestRefHasher/68_bytes +=== RUN TestRefHasher/69_bytes +=== RUN TestRefHasher/70_bytes +=== RUN TestRefHasher/71_bytes +=== RUN TestRefHasher/72_bytes +=== RUN TestRefHasher/73_bytes +=== RUN TestRefHasher/74_bytes +=== RUN TestRefHasher/75_bytes +=== RUN TestRefHasher/76_bytes +=== RUN TestRefHasher/77_bytes +=== RUN TestRefHasher/78_bytes +=== RUN TestRefHasher/79_bytes +=== RUN TestRefHasher/80_bytes +=== RUN TestRefHasher/81_bytes +=== RUN TestRefHasher/82_bytes +=== RUN TestRefHasher/83_bytes +=== RUN TestRefHasher/84_bytes +=== RUN TestRefHasher/85_bytes +=== RUN TestRefHasher/86_bytes +=== RUN TestRefHasher/87_bytes +=== RUN TestRefHasher/88_bytes +=== RUN TestRefHasher/89_bytes +=== RUN TestRefHasher/90_bytes +=== RUN TestRefHasher/91_bytes +=== RUN TestRefHasher/92_bytes +=== RUN TestRefHasher/93_bytes +=== RUN TestRefHasher/94_bytes +=== RUN TestRefHasher/95_bytes +=== RUN TestRefHasher/96_bytes +=== RUN TestRefHasher/97_bytes +=== RUN TestRefHasher/98_bytes +=== RUN TestRefHasher/99_bytes +=== RUN TestRefHasher/100_bytes +=== RUN TestRefHasher/101_bytes +=== RUN TestRefHasher/102_bytes +=== RUN TestRefHasher/103_bytes +=== RUN TestRefHasher/104_bytes +=== RUN TestRefHasher/105_bytes +=== RUN TestRefHasher/106_bytes +=== RUN TestRefHasher/107_bytes +=== RUN TestRefHasher/108_bytes +=== RUN TestRefHasher/109_bytes +=== RUN TestRefHasher/110_bytes +=== RUN TestRefHasher/111_bytes +=== RUN TestRefHasher/112_bytes +=== RUN TestRefHasher/113_bytes +=== RUN TestRefHasher/114_bytes +=== RUN TestRefHasher/115_bytes +=== RUN TestRefHasher/116_bytes +=== RUN TestRefHasher/117_bytes +=== RUN TestRefHasher/118_bytes +=== RUN TestRefHasher/119_bytes +=== RUN TestRefHasher/120_bytes +=== RUN TestRefHasher/121_bytes +=== RUN TestRefHasher/122_bytes +=== RUN TestRefHasher/123_bytes +=== RUN TestRefHasher/124_bytes +=== RUN TestRefHasher/125_bytes +=== RUN TestRefHasher/126_bytes +=== RUN TestRefHasher/127_bytes +=== RUN TestRefHasher/128_bytes +=== RUN TestRefHasher/129_bytes +=== RUN TestRefHasher/130_bytes +=== RUN TestRefHasher/131_bytes +=== RUN TestRefHasher/132_bytes +=== RUN TestRefHasher/133_bytes +=== RUN TestRefHasher/134_bytes +=== RUN TestRefHasher/135_bytes +=== RUN TestRefHasher/136_bytes +=== RUN TestRefHasher/137_bytes +=== RUN TestRefHasher/138_bytes +=== RUN TestRefHasher/139_bytes +=== RUN TestRefHasher/140_bytes +=== RUN TestRefHasher/141_bytes +=== RUN TestRefHasher/142_bytes +=== RUN TestRefHasher/143_bytes +=== RUN TestRefHasher/144_bytes +=== RUN TestRefHasher/145_bytes +=== RUN TestRefHasher/146_bytes +=== RUN TestRefHasher/147_bytes +=== RUN TestRefHasher/148_bytes +=== RUN TestRefHasher/149_bytes +=== RUN TestRefHasher/150_bytes +=== RUN TestRefHasher/151_bytes +=== RUN TestRefHasher/152_bytes +=== RUN TestRefHasher/153_bytes +=== RUN TestRefHasher/154_bytes +=== RUN TestRefHasher/155_bytes +=== RUN TestRefHasher/156_bytes +=== RUN TestRefHasher/157_bytes +=== RUN TestRefHasher/158_bytes +=== RUN TestRefHasher/159_bytes +=== RUN TestRefHasher/160_bytes +=== RUN TestRefHasher/161_bytes +=== RUN TestRefHasher/162_bytes +=== RUN TestRefHasher/163_bytes +=== RUN TestRefHasher/164_bytes +=== RUN TestRefHasher/165_bytes +=== RUN TestRefHasher/166_bytes +=== RUN TestRefHasher/167_bytes +=== RUN TestRefHasher/168_bytes +=== RUN TestRefHasher/169_bytes +=== RUN TestRefHasher/170_bytes +=== RUN TestRefHasher/171_bytes +=== RUN TestRefHasher/172_bytes +=== RUN TestRefHasher/173_bytes +=== RUN TestRefHasher/174_bytes +=== RUN TestRefHasher/175_bytes +=== RUN TestRefHasher/176_bytes +=== RUN TestRefHasher/177_bytes +=== RUN TestRefHasher/178_bytes +=== RUN TestRefHasher/179_bytes +=== RUN TestRefHasher/180_bytes +=== RUN TestRefHasher/181_bytes +=== RUN TestRefHasher/182_bytes +=== RUN TestRefHasher/183_bytes +=== RUN TestRefHasher/184_bytes +=== RUN TestRefHasher/185_bytes +=== RUN TestRefHasher/186_bytes +=== RUN TestRefHasher/187_bytes +=== RUN TestRefHasher/188_bytes +=== RUN TestRefHasher/189_bytes +=== RUN TestRefHasher/190_bytes +=== RUN TestRefHasher/191_bytes +=== RUN TestRefHasher/192_bytes +=== RUN TestRefHasher/193_bytes +=== RUN TestRefHasher/194_bytes +=== RUN TestRefHasher/195_bytes +=== RUN TestRefHasher/196_bytes +=== RUN TestRefHasher/197_bytes +=== RUN TestRefHasher/198_bytes +=== RUN TestRefHasher/199_bytes +=== RUN TestRefHasher/200_bytes +=== RUN TestRefHasher/201_bytes +=== RUN TestRefHasher/202_bytes +=== RUN TestRefHasher/203_bytes +=== RUN TestRefHasher/204_bytes +=== RUN TestRefHasher/205_bytes +=== RUN TestRefHasher/206_bytes +=== RUN TestRefHasher/207_bytes +=== RUN TestRefHasher/208_bytes +=== RUN TestRefHasher/209_bytes +=== RUN TestRefHasher/210_bytes +=== RUN TestRefHasher/211_bytes +=== RUN TestRefHasher/212_bytes +=== RUN TestRefHasher/213_bytes +=== RUN TestRefHasher/214_bytes +=== RUN TestRefHasher/215_bytes +=== RUN TestRefHasher/216_bytes +=== RUN TestRefHasher/217_bytes +=== RUN TestRefHasher/218_bytes +=== RUN TestRefHasher/219_bytes +=== RUN TestRefHasher/220_bytes +=== RUN TestRefHasher/221_bytes +=== RUN TestRefHasher/222_bytes +=== RUN TestRefHasher/223_bytes +=== RUN TestRefHasher/224_bytes +=== RUN TestRefHasher/225_bytes +=== RUN TestRefHasher/226_bytes +=== RUN TestRefHasher/227_bytes +=== RUN TestRefHasher/228_bytes +=== RUN TestRefHasher/229_bytes +=== RUN TestRefHasher/230_bytes +=== RUN TestRefHasher/231_bytes +=== RUN TestRefHasher/232_bytes +=== RUN TestRefHasher/233_bytes +=== RUN TestRefHasher/234_bytes +=== RUN TestRefHasher/235_bytes +=== RUN TestRefHasher/236_bytes +=== RUN TestRefHasher/237_bytes +=== RUN TestRefHasher/238_bytes +=== RUN TestRefHasher/239_bytes +=== RUN TestRefHasher/240_bytes +=== RUN TestRefHasher/241_bytes +=== RUN TestRefHasher/242_bytes +=== RUN TestRefHasher/243_bytes +=== RUN TestRefHasher/244_bytes +=== RUN TestRefHasher/245_bytes +=== RUN TestRefHasher/246_bytes +=== RUN TestRefHasher/247_bytes +=== RUN TestRefHasher/248_bytes +=== RUN TestRefHasher/249_bytes +=== RUN TestRefHasher/250_bytes +=== RUN TestRefHasher/251_bytes +=== RUN TestRefHasher/252_bytes +=== RUN TestRefHasher/253_bytes +=== RUN TestRefHasher/254_bytes +=== RUN TestRefHasher/255_bytes +=== RUN TestRefHasher/256_bytes +--- PASS: TestRefHasher (0.01s) + --- PASS: TestRefHasher/0_bytes (0.00s) + --- PASS: TestRefHasher/1_bytes (0.00s) + --- PASS: TestRefHasher/2_bytes (0.00s) + --- PASS: TestRefHasher/3_bytes (0.00s) + --- PASS: TestRefHasher/4_bytes (0.00s) + --- PASS: TestRefHasher/5_bytes (0.00s) + --- PASS: TestRefHasher/6_bytes (0.00s) + --- PASS: TestRefHasher/7_bytes (0.00s) + --- PASS: TestRefHasher/8_bytes (0.00s) + --- PASS: TestRefHasher/9_bytes (0.00s) + --- PASS: TestRefHasher/10_bytes (0.00s) + --- PASS: TestRefHasher/11_bytes (0.00s) + --- PASS: TestRefHasher/12_bytes (0.00s) + --- PASS: TestRefHasher/13_bytes (0.00s) + --- PASS: TestRefHasher/14_bytes (0.00s) + --- PASS: TestRefHasher/15_bytes (0.00s) + --- PASS: TestRefHasher/16_bytes (0.00s) + --- PASS: TestRefHasher/17_bytes (0.00s) + --- PASS: TestRefHasher/18_bytes (0.00s) + --- PASS: TestRefHasher/19_bytes (0.00s) + --- PASS: TestRefHasher/20_bytes (0.00s) + --- PASS: TestRefHasher/21_bytes (0.00s) + --- PASS: TestRefHasher/22_bytes (0.00s) + --- PASS: TestRefHasher/23_bytes (0.00s) + --- PASS: TestRefHasher/24_bytes (0.00s) + --- PASS: TestRefHasher/25_bytes (0.00s) + --- PASS: TestRefHasher/26_bytes (0.00s) + --- PASS: TestRefHasher/27_bytes (0.00s) + --- PASS: TestRefHasher/28_bytes (0.00s) + --- PASS: TestRefHasher/29_bytes (0.00s) + --- PASS: TestRefHasher/30_bytes (0.00s) + --- PASS: TestRefHasher/31_bytes (0.00s) + --- PASS: TestRefHasher/32_bytes (0.00s) + --- PASS: TestRefHasher/33_bytes (0.00s) + --- PASS: TestRefHasher/34_bytes (0.00s) + --- PASS: TestRefHasher/35_bytes (0.00s) + --- PASS: TestRefHasher/36_bytes (0.00s) + --- PASS: TestRefHasher/37_bytes (0.00s) + --- PASS: TestRefHasher/38_bytes (0.00s) + --- PASS: TestRefHasher/39_bytes (0.00s) + --- PASS: TestRefHasher/40_bytes (0.00s) + --- PASS: TestRefHasher/41_bytes (0.00s) + --- PASS: TestRefHasher/42_bytes (0.00s) + --- PASS: TestRefHasher/43_bytes (0.00s) + --- PASS: TestRefHasher/44_bytes (0.00s) + --- PASS: TestRefHasher/45_bytes (0.00s) + --- PASS: TestRefHasher/46_bytes (0.00s) + --- PASS: TestRefHasher/47_bytes (0.00s) + --- PASS: TestRefHasher/48_bytes (0.00s) + --- PASS: TestRefHasher/49_bytes (0.00s) + --- PASS: TestRefHasher/50_bytes (0.00s) + --- PASS: TestRefHasher/51_bytes (0.00s) + --- PASS: TestRefHasher/52_bytes (0.00s) + --- PASS: TestRefHasher/53_bytes (0.00s) + --- PASS: TestRefHasher/54_bytes (0.00s) + --- PASS: TestRefHasher/55_bytes (0.00s) + --- PASS: TestRefHasher/56_bytes (0.00s) + --- PASS: TestRefHasher/57_bytes (0.00s) + --- PASS: TestRefHasher/58_bytes (0.00s) + --- PASS: TestRefHasher/59_bytes (0.00s) + --- PASS: TestRefHasher/60_bytes (0.00s) + --- PASS: TestRefHasher/61_bytes (0.00s) + --- PASS: TestRefHasher/62_bytes (0.00s) + --- PASS: TestRefHasher/63_bytes (0.00s) + --- PASS: TestRefHasher/64_bytes (0.00s) + --- PASS: TestRefHasher/65_bytes (0.00s) + --- PASS: TestRefHasher/66_bytes (0.00s) + --- PASS: TestRefHasher/67_bytes (0.00s) + --- PASS: TestRefHasher/68_bytes (0.00s) + --- PASS: TestRefHasher/69_bytes (0.00s) + --- PASS: TestRefHasher/70_bytes (0.00s) + --- PASS: TestRefHasher/71_bytes (0.00s) + --- PASS: TestRefHasher/72_bytes (0.00s) + --- PASS: TestRefHasher/73_bytes (0.00s) + --- PASS: TestRefHasher/74_bytes (0.00s) + --- PASS: TestRefHasher/75_bytes (0.00s) + --- PASS: TestRefHasher/76_bytes (0.00s) + --- PASS: TestRefHasher/77_bytes (0.00s) + --- PASS: TestRefHasher/78_bytes (0.00s) + --- PASS: TestRefHasher/79_bytes (0.00s) + --- PASS: TestRefHasher/80_bytes (0.00s) + --- PASS: TestRefHasher/81_bytes (0.00s) + --- PASS: TestRefHasher/82_bytes (0.00s) + --- PASS: TestRefHasher/83_bytes (0.00s) + --- PASS: TestRefHasher/84_bytes (0.00s) + --- PASS: TestRefHasher/85_bytes (0.00s) + --- PASS: TestRefHasher/86_bytes (0.00s) + --- PASS: TestRefHasher/87_bytes (0.00s) + --- PASS: TestRefHasher/88_bytes (0.00s) + --- PASS: TestRefHasher/89_bytes (0.00s) + --- PASS: TestRefHasher/90_bytes (0.00s) + --- PASS: TestRefHasher/91_bytes (0.00s) + --- PASS: TestRefHasher/92_bytes (0.00s) + --- PASS: TestRefHasher/93_bytes (0.00s) + --- PASS: TestRefHasher/94_bytes (0.00s) + --- PASS: TestRefHasher/95_bytes (0.00s) + --- PASS: TestRefHasher/96_bytes (0.00s) + --- PASS: TestRefHasher/97_bytes (0.00s) + --- PASS: TestRefHasher/98_bytes (0.00s) + --- PASS: TestRefHasher/99_bytes (0.00s) + --- PASS: TestRefHasher/100_bytes (0.00s) + --- PASS: TestRefHasher/101_bytes (0.00s) + --- PASS: TestRefHasher/102_bytes (0.00s) + --- PASS: TestRefHasher/103_bytes (0.00s) + --- PASS: TestRefHasher/104_bytes (0.00s) + --- PASS: TestRefHasher/105_bytes (0.00s) + --- PASS: TestRefHasher/106_bytes (0.00s) + --- PASS: TestRefHasher/107_bytes (0.00s) + --- PASS: TestRefHasher/108_bytes (0.00s) + --- PASS: TestRefHasher/109_bytes (0.00s) + --- PASS: TestRefHasher/110_bytes (0.00s) + --- PASS: TestRefHasher/111_bytes (0.00s) + --- PASS: TestRefHasher/112_bytes (0.00s) + --- PASS: TestRefHasher/113_bytes (0.00s) + --- PASS: TestRefHasher/114_bytes (0.00s) + --- PASS: TestRefHasher/115_bytes (0.00s) + --- PASS: TestRefHasher/116_bytes (0.00s) + --- PASS: TestRefHasher/117_bytes (0.00s) + --- PASS: TestRefHasher/118_bytes (0.00s) + --- PASS: TestRefHasher/119_bytes (0.00s) + --- PASS: TestRefHasher/120_bytes (0.00s) + --- PASS: TestRefHasher/121_bytes (0.00s) + --- PASS: TestRefHasher/122_bytes (0.00s) + --- PASS: TestRefHasher/123_bytes (0.00s) + --- PASS: TestRefHasher/124_bytes (0.00s) + --- PASS: TestRefHasher/125_bytes (0.00s) + --- PASS: TestRefHasher/126_bytes (0.00s) + --- PASS: TestRefHasher/127_bytes (0.00s) + --- PASS: TestRefHasher/128_bytes (0.00s) + --- PASS: TestRefHasher/129_bytes (0.00s) + --- PASS: TestRefHasher/130_bytes (0.00s) + --- PASS: TestRefHasher/131_bytes (0.00s) + --- PASS: TestRefHasher/132_bytes (0.00s) + --- PASS: TestRefHasher/133_bytes (0.00s) + --- PASS: TestRefHasher/134_bytes (0.00s) + --- PASS: TestRefHasher/135_bytes (0.00s) + --- PASS: TestRefHasher/136_bytes (0.00s) + --- PASS: TestRefHasher/137_bytes (0.00s) + --- PASS: TestRefHasher/138_bytes (0.00s) + --- PASS: TestRefHasher/139_bytes (0.00s) + --- PASS: TestRefHasher/140_bytes (0.00s) + --- PASS: TestRefHasher/141_bytes (0.00s) + --- PASS: TestRefHasher/142_bytes (0.00s) + --- PASS: TestRefHasher/143_bytes (0.00s) + --- PASS: TestRefHasher/144_bytes (0.00s) + --- PASS: TestRefHasher/145_bytes (0.00s) + --- PASS: TestRefHasher/146_bytes (0.00s) + --- PASS: TestRefHasher/147_bytes (0.00s) + --- PASS: TestRefHasher/148_bytes (0.00s) + --- PASS: TestRefHasher/149_bytes (0.00s) + --- PASS: TestRefHasher/150_bytes (0.00s) + --- PASS: TestRefHasher/151_bytes (0.00s) + --- PASS: TestRefHasher/152_bytes (0.00s) + --- PASS: TestRefHasher/153_bytes (0.00s) + --- PASS: TestRefHasher/154_bytes (0.00s) + --- PASS: TestRefHasher/155_bytes (0.00s) + --- PASS: TestRefHasher/156_bytes (0.00s) + --- PASS: TestRefHasher/157_bytes (0.00s) + --- PASS: TestRefHasher/158_bytes (0.00s) + --- PASS: TestRefHasher/159_bytes (0.00s) + --- PASS: TestRefHasher/160_bytes (0.00s) + --- PASS: TestRefHasher/161_bytes (0.00s) + --- PASS: TestRefHasher/162_bytes (0.00s) + --- PASS: TestRefHasher/163_bytes (0.00s) + --- PASS: TestRefHasher/164_bytes (0.00s) + --- PASS: TestRefHasher/165_bytes (0.00s) + --- PASS: TestRefHasher/166_bytes (0.00s) + --- PASS: TestRefHasher/167_bytes (0.00s) + --- PASS: TestRefHasher/168_bytes (0.00s) + --- PASS: TestRefHasher/169_bytes (0.00s) + --- PASS: TestRefHasher/170_bytes (0.00s) + --- PASS: TestRefHasher/171_bytes (0.00s) + --- PASS: TestRefHasher/172_bytes (0.00s) + --- PASS: TestRefHasher/173_bytes (0.00s) + --- PASS: TestRefHasher/174_bytes (0.00s) + --- PASS: TestRefHasher/175_bytes (0.00s) + --- PASS: TestRefHasher/176_bytes (0.00s) + --- PASS: TestRefHasher/177_bytes (0.00s) + --- PASS: TestRefHasher/178_bytes (0.00s) + --- PASS: TestRefHasher/179_bytes (0.00s) + --- PASS: TestRefHasher/180_bytes (0.00s) + --- PASS: TestRefHasher/181_bytes (0.00s) + --- PASS: TestRefHasher/182_bytes (0.00s) + --- PASS: TestRefHasher/183_bytes (0.00s) + --- PASS: TestRefHasher/184_bytes (0.00s) + --- PASS: TestRefHasher/185_bytes (0.00s) + --- PASS: TestRefHasher/186_bytes (0.00s) + --- PASS: TestRefHasher/187_bytes (0.00s) + --- PASS: TestRefHasher/188_bytes (0.00s) + --- PASS: TestRefHasher/189_bytes (0.00s) + --- PASS: TestRefHasher/190_bytes (0.00s) + --- PASS: TestRefHasher/191_bytes (0.00s) + --- PASS: TestRefHasher/192_bytes (0.00s) + --- PASS: TestRefHasher/193_bytes (0.00s) + --- PASS: TestRefHasher/194_bytes (0.00s) + --- PASS: TestRefHasher/195_bytes (0.00s) + --- PASS: TestRefHasher/196_bytes (0.00s) + --- PASS: TestRefHasher/197_bytes (0.00s) + --- PASS: TestRefHasher/198_bytes (0.00s) + --- PASS: TestRefHasher/199_bytes (0.00s) + --- PASS: TestRefHasher/200_bytes (0.00s) + --- PASS: TestRefHasher/201_bytes (0.00s) + --- PASS: TestRefHasher/202_bytes (0.00s) + --- PASS: TestRefHasher/203_bytes (0.00s) + --- PASS: TestRefHasher/204_bytes (0.00s) + --- PASS: TestRefHasher/205_bytes (0.00s) + --- PASS: TestRefHasher/206_bytes (0.00s) + --- PASS: TestRefHasher/207_bytes (0.00s) + --- PASS: TestRefHasher/208_bytes (0.00s) + --- PASS: TestRefHasher/209_bytes (0.00s) + --- PASS: TestRefHasher/210_bytes (0.00s) + --- PASS: TestRefHasher/211_bytes (0.00s) + --- PASS: TestRefHasher/212_bytes (0.00s) + --- PASS: TestRefHasher/213_bytes (0.00s) + --- PASS: TestRefHasher/214_bytes (0.00s) + --- PASS: TestRefHasher/215_bytes (0.00s) + --- PASS: TestRefHasher/216_bytes (0.00s) + --- PASS: TestRefHasher/217_bytes (0.00s) + --- PASS: TestRefHasher/218_bytes (0.00s) + --- PASS: TestRefHasher/219_bytes (0.00s) + --- PASS: TestRefHasher/220_bytes (0.00s) + --- PASS: TestRefHasher/221_bytes (0.00s) + --- PASS: TestRefHasher/222_bytes (0.00s) + --- PASS: TestRefHasher/223_bytes (0.00s) + --- PASS: TestRefHasher/224_bytes (0.00s) + --- PASS: TestRefHasher/225_bytes (0.00s) + --- PASS: TestRefHasher/226_bytes (0.00s) + --- PASS: TestRefHasher/227_bytes (0.00s) + --- PASS: TestRefHasher/228_bytes (0.00s) + --- PASS: TestRefHasher/229_bytes (0.00s) + --- PASS: TestRefHasher/230_bytes (0.00s) + --- PASS: TestRefHasher/231_bytes (0.00s) + --- PASS: TestRefHasher/232_bytes (0.00s) + --- PASS: TestRefHasher/233_bytes (0.00s) + --- PASS: TestRefHasher/234_bytes (0.00s) + --- PASS: TestRefHasher/235_bytes (0.00s) + --- PASS: TestRefHasher/236_bytes (0.00s) + --- PASS: TestRefHasher/237_bytes (0.00s) + --- PASS: TestRefHasher/238_bytes (0.00s) + --- PASS: TestRefHasher/239_bytes (0.00s) + --- PASS: TestRefHasher/240_bytes (0.00s) + --- PASS: TestRefHasher/241_bytes (0.00s) + --- PASS: TestRefHasher/242_bytes (0.00s) + --- PASS: TestRefHasher/243_bytes (0.00s) + --- PASS: TestRefHasher/244_bytes (0.00s) + --- PASS: TestRefHasher/245_bytes (0.00s) + --- PASS: TestRefHasher/246_bytes (0.00s) + --- PASS: TestRefHasher/247_bytes (0.00s) + --- PASS: TestRefHasher/248_bytes (0.00s) + --- PASS: TestRefHasher/249_bytes (0.00s) + --- PASS: TestRefHasher/250_bytes (0.00s) + --- PASS: TestRefHasher/251_bytes (0.00s) + --- PASS: TestRefHasher/252_bytes (0.00s) + --- PASS: TestRefHasher/253_bytes (0.00s) + --- PASS: TestRefHasher/254_bytes (0.00s) + --- PASS: TestRefHasher/255_bytes (0.00s) + --- PASS: TestRefHasher/256_bytes (0.00s) +=== RUN TestHasherCorrectness +--- PASS: TestHasherCorrectness (2.03s) +=== RUN TestHasherReuseWithoutRelease +--- PASS: TestHasherReuseWithoutRelease (0.24s) +=== RUN TestHasherReuseWithRelease +--- PASS: TestHasherReuseWithRelease (0.18s) +=== RUN TestHasherConcurrency +--- PASS: TestHasherConcurrency (0.40s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/bmt 2.885s +? github.com/EthereumCommonwealth/go-callisto/cmd/abigen [no test files] +? github.com/EthereumCommonwealth/go-callisto/cmd/bootnode [no test files] +? github.com/EthereumCommonwealth/go-callisto/cmd/evm [no test files] +? github.com/EthereumCommonwealth/go-callisto/cmd/evm/internal/compiler [no test files] +? github.com/EthereumCommonwealth/go-callisto/cmd/faucet [no test files] +=== RUN TestAccountListEmpty +--- PASS: TestAccountListEmpty (0.17s) + test_cmd.go:231: (stderr) WARN [11-30|23:28:27] No etherbase set and no accounts found as default +=== RUN TestAccountList +--- PASS: TestAccountList (0.09s) + test_cmd.go:110: Matched stdout text: + Account #0: {7ef5a6135f1fd6a02593eedc869c6d41d934aef8} keystore:///tmp/geth-test362579046/keystore/UTC--2016-03-22T12-57-55.920751759Z--7ef5a6135f1fd6a02593eedc869c6d41d934aef8 + Account #1: {f466859ead1932d743d622cb74fc058882e8648a} keystore:///tmp/geth-test362579046/keystore/aaa + Account #2: {289d485d9771714cce91d3393d764e1311907acc} keystore:///tmp/geth-test362579046/keystore/zzz +=== RUN TestAccountNew +--- PASS: TestAccountNew (0.19s) + test_cmd.go:110: Matched stdout text: + Your new account is locked with a password. Please give a password. Do not forget this password. + !! Unsupported terminal, password will be echoed. + Passphrase: + Repeat passphrase: + test_cmd.go:157: Matched stdout text: + Address: {5a401d7289c9058e89337d04356c039c9c69765f} +=== RUN TestAccountNewBadRepeat +--- PASS: TestAccountNewBadRepeat (0.09s) + test_cmd.go:110: Matched stdout text: + Your new account is locked with a password. Please give a password. Do not forget this password. + !! Unsupported terminal, password will be echoed. + Passphrase: + Repeat passphrase: + Fatal: Passphrases do not match + test_cmd.go:231: (stderr) Fatal: Passphrases do not match +=== RUN TestAccountUpdate +--- PASS: TestAccountUpdate (0.29s) + test_cmd.go:110: Matched stdout text: + Unlocking account f466859ead1932d743d622cb74fc058882e8648a | Attempt 1/3 + !! Unsupported terminal, password will be echoed. + Passphrase: + Please give a new password. Do not forget this password. + Passphrase: + Repeat passphrase: + test_cmd.go:231: (stderr) INFO [11-30|23:28:27] Unlocked account address=0xf466859eAD1932D743d622CB74FC058882E8648A +=== RUN TestWalletImport +--- PASS: TestWalletImport (0.19s) + test_cmd.go:231: (stderr) WARN [11-30|23:28:27] No etherbase set and no accounts found as default + test_cmd.go:110: Matched stdout text: + !! Unsupported terminal, password will be echoed. + Passphrase: + Address: {d4584b5f6229b7be90727b0fc8c6b91bb427821f} +=== RUN TestWalletImportBadPassword +--- PASS: TestWalletImportBadPassword (0.07s) + test_cmd.go:231: (stderr) WARN [11-30|23:28:27] No etherbase set and no accounts found as default + test_cmd.go:110: Matched stdout text: + !! Unsupported terminal, password will be echoed. + Passphrase: + Fatal: could not decrypt key with given passphrase + test_cmd.go:231: (stderr) Fatal: could not decrypt key with given passphrase +=== RUN TestUnlockFlag +--- PASS: TestUnlockFlag (0.83s) + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Starting peer-to-peer node instance=Geth/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Allocated cache and file handles database=/tmp/geth-test121011260/geth/chaindata cache=128 handles=1024 + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Writing default main-net genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Initialised chain configuration config="{ChainID: 1 Homestead: 1150000 DAO: 1920000 DAOSupport: true EIP150: 2463000 EIP155: 2675000 EIP158: 2675000 Byzantium: 4370000 Engine: ethash}" + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Disk storage enabled for ethash caches dir=/tmp/geth-test121011260/geth/ethash count=3 + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Disk storage enabled for ethash DAGs dir=/home/yograterol/.ethash count=2 + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Initialising Ethereum protocol versions="[63 62]" network=1 + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Loaded most recent local header number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Loaded most recent local full block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Loaded most recent local fast block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Regenerated local transaction journal transactions=0 accounts=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Starting P2P networking + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] RLPx listener up self="enode://8411ca8ab3443936740b2dabd569b94b4679ad860698852eed9844fe2a1127107401a03b6a07de980e7de2bb59f7c7d19fc8b49b6dfdea5c175ab8bc5b5a2e39@[::]:35613?discport=0" + test_cmd.go:110: Matched stdout text: + Unlocking account f466859ead1932d743d622cb74fc058882e8648a | Attempt 1/3 + !! Unsupported terminal, password will be echoed. + Passphrase: + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] IPC endpoint opened: /tmp/geth-test121011260/geth.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Unlocked account address=0xf466859eAD1932D743d622CB74FC058882E8648A + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] IPC endpoint closed: /tmp/geth-test121011260/geth.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Blockchain manager stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Stopping Ethereum protocol + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Ethereum protocol stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Transaction pool stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Database closed database=/tmp/geth-test121011260/geth/chaindata +=== RUN TestUnlockFlagWrongPassword +--- PASS: TestUnlockFlagWrongPassword (0.73s) + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Starting peer-to-peer node instance=Geth/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Allocated cache and file handles database=/tmp/geth-test279241835/geth/chaindata cache=128 handles=1024 + test_cmd.go:231: (stderr) INFO [11-30|23:28:28] Writing default main-net genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Initialised chain configuration config="{ChainID: 1 Homestead: 1150000 DAO: 1920000 DAOSupport: true EIP150: 2463000 EIP155: 2675000 EIP158: 2675000 Byzantium: 4370000 Engine: ethash}" + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Disk storage enabled for ethash caches dir=/tmp/geth-test279241835/geth/ethash count=3 + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Disk storage enabled for ethash DAGs dir=/home/yograterol/.ethash count=2 + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Initialising Ethereum protocol versions="[63 62]" network=1 + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Loaded most recent local header number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Loaded most recent local full block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Loaded most recent local fast block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Regenerated local transaction journal transactions=0 accounts=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Starting P2P networking + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] RLPx listener up self="enode://57ee99baf2ad24969a3596cc09b5353bcb1374497c5480579b5798a56501768896a4a757251e12b8306d2b9f846e20e25d680cfb5564528eb8a60691c471c542@[::]:37561?discport=0" + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] IPC endpoint opened: /tmp/geth-test279241835/geth.ipc + test_cmd.go:110: Matched stdout text: + Unlocking account f466859ead1932d743d622cb74fc058882e8648a | Attempt 1/3 + !! Unsupported terminal, password will be echoed. + Passphrase: + Unlocking account f466859ead1932d743d622cb74fc058882e8648a | Attempt 2/3 + Passphrase: + Unlocking account f466859ead1932d743d622cb74fc058882e8648a | Attempt 3/3 + Passphrase: + Fatal: Failed to unlock account f466859ead1932d743d622cb74fc058882e8648a (could not decrypt key with given passphrase) + test_cmd.go:231: (stderr) Fatal: Failed to unlock account f466859ead1932d743d622cb74fc058882e8648a (could not decrypt key with given passphrase) +=== RUN TestUnlockFlagMultiIndex +--- PASS: TestUnlockFlagMultiIndex (0.98s) + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Starting peer-to-peer node instance=Geth/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Allocated cache and file handles database=/tmp/geth-test208067790/geth/chaindata cache=128 handles=1024 + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Writing default main-net genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Initialised chain configuration config="{ChainID: 1 Homestead: 1150000 DAO: 1920000 DAOSupport: true EIP150: 2463000 EIP155: 2675000 EIP158: 2675000 Byzantium: 4370000 Engine: ethash}" + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Disk storage enabled for ethash caches dir=/tmp/geth-test208067790/geth/ethash count=3 + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Disk storage enabled for ethash DAGs dir=/home/yograterol/.ethash count=2 + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Initialising Ethereum protocol versions="[63 62]" network=1 + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Loaded most recent local header number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Loaded most recent local full block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Loaded most recent local fast block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Regenerated local transaction journal transactions=0 accounts=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Starting P2P networking + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] RLPx listener up self="enode://4c62ef1ce70f82cbea38ce718ad9093219c28f294744305725779d377a276a3bcb21ef96a1168624922796f13070dd88306f59c49f601148dd98a3fc2d88c569@[::]:33412?discport=0" + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] IPC endpoint opened: /tmp/geth-test208067790/geth.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Unlocked account address=0x7EF5A6135f1FD6a02593eEdC869c6D41D934aef8 + test_cmd.go:110: Matched stdout text: + Unlocking account 0 | Attempt 1/3 + !! Unsupported terminal, password will be echoed. + Passphrase: + Unlocking account 2 | Attempt 1/3 + Passphrase: + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Unlocked account address=0x289d485D9771714CCe91D3393D764E1311907ACc + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] IPC endpoint closed: /tmp/geth-test208067790/geth.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Blockchain manager stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Stopping Ethereum protocol + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Ethereum protocol stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Transaction pool stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Database closed database=/tmp/geth-test208067790/geth/chaindata +=== RUN TestUnlockFlagPasswordFile +--- PASS: TestUnlockFlagPasswordFile (0.84s) + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Starting peer-to-peer node instance=Geth/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Allocated cache and file handles database=/tmp/geth-test148240341/geth/chaindata cache=128 handles=1024 + test_cmd.go:231: (stderr) INFO [11-30|23:28:30] Writing default main-net genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Initialised chain configuration config="{ChainID: 1 Homestead: 1150000 DAO: 1920000 DAOSupport: true EIP150: 2463000 EIP155: 2675000 EIP158: 2675000 Byzantium: 4370000 Engine: ethash}" + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Disk storage enabled for ethash caches dir=/tmp/geth-test148240341/geth/ethash count=3 + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Disk storage enabled for ethash DAGs dir=/home/yograterol/.ethash count=2 + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Initialising Ethereum protocol versions="[63 62]" network=1 + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Loaded most recent local header number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Loaded most recent local full block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Loaded most recent local fast block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Regenerated local transaction journal transactions=0 accounts=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Starting P2P networking + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] RLPx listener up self="enode://c2873bbed4a83387d5d9fad6db928701714811f7c5d53c33c668e74b766314a98d06164e57d119db1a7dc95e4e04dbf6b7f657d066d1ac540beb08121e5a637e@[::]:38773?discport=0" + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] IPC endpoint opened: /tmp/geth-test148240341/geth.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Unlocked account address=0x7EF5A6135f1FD6a02593eEdC869c6D41D934aef8 + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Unlocked account address=0x289d485D9771714CCe91D3393D764E1311907ACc + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] IPC endpoint closed: /tmp/geth-test148240341/geth.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Blockchain manager stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Stopping Ethereum protocol + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Ethereum protocol stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Transaction pool stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Database closed database=/tmp/geth-test148240341/geth/chaindata +=== RUN TestUnlockFlagPasswordFileWrongPassword +--- PASS: TestUnlockFlagPasswordFileWrongPassword (0.84s) + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Starting peer-to-peer node instance=Geth/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Allocated cache and file handles database=/tmp/geth-test435885360/geth/chaindata cache=128 handles=1024 + test_cmd.go:231: (stderr) INFO [11-30|23:28:31] Writing default main-net genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Initialised chain configuration config="{ChainID: 1 Homestead: 1150000 DAO: 1920000 DAOSupport: true EIP150: 2463000 EIP155: 2675000 EIP158: 2675000 Byzantium: 4370000 Engine: ethash}" + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Disk storage enabled for ethash caches dir=/tmp/geth-test435885360/geth/ethash count=3 + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Disk storage enabled for ethash DAGs dir=/home/yograterol/.ethash count=2 + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Initialising Ethereum protocol versions="[63 62]" network=1 + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Loaded most recent local header number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Loaded most recent local full block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Loaded most recent local fast block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Regenerated local transaction journal transactions=0 accounts=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Starting P2P networking + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] RLPx listener up self="enode://35e6455d9857520d2c6bd0ecc81f14ebc7fd88cc77420a4b4e17a2e0aa7fa4c3684ad867cf0b6fb95c85d14f41e98d78af0be5df7d0cf552149448100c03dc3c@[::]:45968?discport=0" + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] IPC endpoint opened: /tmp/geth-test435885360/geth.ipc + test_cmd.go:231: (stderr) Fatal: Failed to unlock account 0 (could not decrypt key with given passphrase) + test_cmd.go:110: Matched stdout text: + Fatal: Failed to unlock account 0 (could not decrypt key with given passphrase) +=== RUN TestUnlockFlagAmbiguous +--- PASS: TestUnlockFlagAmbiguous (0.93s) + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Starting peer-to-peer node instance=Geth/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Allocated cache and file handles database=/tmp/geth-test231413455/geth/chaindata cache=128 handles=1024 + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Writing default main-net genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Initialised chain configuration config="{ChainID: 1 Homestead: 1150000 DAO: 1920000 DAOSupport: true EIP150: 2463000 EIP155: 2675000 EIP158: 2675000 Byzantium: 4370000 Engine: ethash}" + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Disk storage enabled for ethash caches dir=/tmp/geth-test231413455/geth/ethash count=3 + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Disk storage enabled for ethash DAGs dir=/home/yograterol/.ethash count=2 + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Initialising Ethereum protocol versions="[63 62]" network=1 + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Loaded most recent local header number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Loaded most recent local full block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Loaded most recent local fast block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Regenerated local transaction journal transactions=0 accounts=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Starting P2P networking + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] RLPx listener up self="enode://c199d6c76a60369a7a3b33e7a2e9d9caaa533ee565c90b043e36063fd943c62b8d6eb47b2d540e4d02254f7559f9c9eda7713ffdb5e96b2b40170d751998feb1@[::]:33921?discport=0" + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] IPC endpoint opened: /tmp/geth-test231413455/geth.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Unlocked account address=0xf466859eAD1932D743d622CB74FC058882E8648A + test_cmd.go:110: Matched stdout text: + Unlocking account f466859ead1932d743d622cb74fc058882e8648a | Attempt 1/3 + !! Unsupported terminal, password will be echoed. + Passphrase: + Multiple key files exist for address f466859ead1932d743d622cb74fc058882e8648a: + keystore:///home/yograterol/gocode/src/github.com/EthereumCommonwealth/go-callisto/accounts/keystore/testdata/dupes/1 + keystore:///home/yograterol/gocode/src/github.com/EthereumCommonwealth/go-callisto/accounts/keystore/testdata/dupes/2 + Testing your passphrase against all of them... + Your passphrase unlocked keystore:///home/yograterol/gocode/src/github.com/EthereumCommonwealth/go-callisto/accounts/keystore/testdata/dupes/1 + In order to avoid this warning, you need to remove the following duplicate key files: + keystore:///home/yograterol/gocode/src/github.com/EthereumCommonwealth/go-callisto/accounts/keystore/testdata/dupes/2 + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] IPC endpoint closed: /tmp/geth-test231413455/geth.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Blockchain manager stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Stopping Ethereum protocol + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Ethereum protocol stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Transaction pool stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Database closed database=/tmp/geth-test231413455/geth/chaindata +=== RUN TestUnlockFlagAmbiguousWrongPassword +--- PASS: TestUnlockFlagAmbiguousWrongPassword (0.78s) + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Starting peer-to-peer node instance=Geth/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Allocated cache and file handles database=/tmp/geth-test022147554/geth/chaindata cache=128 handles=1024 + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Writing default main-net genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Initialised chain configuration config="{ChainID: 1 Homestead: 1150000 DAO: 1920000 DAOSupport: true EIP150: 2463000 EIP155: 2675000 EIP158: 2675000 Byzantium: 4370000 Engine: ethash}" + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Disk storage enabled for ethash caches dir=/tmp/geth-test022147554/geth/ethash count=3 + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Disk storage enabled for ethash DAGs dir=/home/yograterol/.ethash count=2 + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Initialising Ethereum protocol versions="[63 62]" network=1 + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Loaded most recent local header number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Loaded most recent local full block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Loaded most recent local fast block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Regenerated local transaction journal transactions=0 accounts=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Starting P2P networking + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Unlocked account address=0xf466859eAD1932D743d622CB74FC058882E8648A + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] RLPx listener up self="enode://5e8ef8801fa6b107040e0fe404285d4c6d99ba247e9619d6443e8b0585c35d947e5900ce5992288acc376b3f322e69711e78035a9b43a53e8e59a2194c1e0e84@[::]:40426?discport=0" + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] IPC endpoint opened: /tmp/geth-test022147554/geth.ipc + test_cmd.go:110: Matched stdout text: + Unlocking account f466859ead1932d743d622cb74fc058882e8648a | Attempt 1/3 + !! Unsupported terminal, password will be echoed. + Passphrase: + Multiple key files exist for address f466859ead1932d743d622cb74fc058882e8648a: + keystore:///home/yograterol/gocode/src/github.com/EthereumCommonwealth/go-callisto/accounts/keystore/testdata/dupes/1 + keystore:///home/yograterol/gocode/src/github.com/EthereumCommonwealth/go-callisto/accounts/keystore/testdata/dupes/2 + Testing your passphrase against all of them... + Fatal: None of the listed files could be unlocked. + test_cmd.go:231: (stderr) Fatal: None of the listed files could be unlocked. +=== RUN TestConsoleWelcome +--- PASS: TestConsoleWelcome (0.84s) + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Starting peer-to-peer node instance=Geth/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Allocated cache and file handles database=/tmp/geth-test214992345/geth/chaindata cache=128 handles=1024 + test_cmd.go:231: (stderr) INFO [11-30|23:28:33] Writing default main-net genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Initialised chain configuration config="{ChainID: 1 Homestead: 1150000 DAO: 1920000 DAOSupport: true EIP150: 2463000 EIP155: 2675000 EIP158: 2675000 Byzantium: 4370000 Engine: ethash}" + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Disk storage enabled for ethash caches dir=/tmp/geth-test214992345/geth/ethash count=3 + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Disk storage enabled for ethash DAGs dir=/home/yograterol/.ethash count=2 + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Initialising Ethereum protocol versions="[63 62]" network=1 + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Loaded most recent local header number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Loaded most recent local full block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Loaded most recent local fast block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Regenerated local transaction journal transactions=0 accounts=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Starting P2P networking + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] RLPx listener up self="enode://50e26ec25a185dad1b4e601e9de117f0234828490005647aee2ce8b70afa994930ea0b1e88274e8f0a1afcf38d15814a5261117acfd7e476ef6ab9b6879861f2@[::]:39591?discport=0" + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] started whisper v.5.0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] IPC endpoint opened: /tmp/geth-test214992345/geth.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] IPC endpoint closed: /tmp/geth-test214992345/geth.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Blockchain manager stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Stopping Ethereum protocol + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Ethereum protocol stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Transaction pool stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Database closed database=/tmp/geth-test214992345/geth/chaindata + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] whisper stopped + test_cmd.go:110: Matched stdout text: + Welcome to the Geth JavaScript console! + + instance: Geth/v1.8.0-unstable/linux-amd64/go1.9 + coinbase: 0x8605cdbbdb6d264aa742e77020dcbc58fcdce182 + at block: 0 (Wed, 31 Dec 1969 19:00:00 -05) + datadir: /tmp/geth-test214992345 + modules: admin:1.0 debug:1.0 eth:1.0 miner:1.0 net:1.0 personal:1.0 rpc:1.0 shh:1.0 txpool:1.0 web3:1.0 + + > +=== RUN TestIPCAttachWelcome +--- PASS: TestIPCAttachWelcome (2.26s) + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Starting peer-to-peer node instance=Geth/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Allocated cache and file handles database=/tmp/geth-test639387507/geth/chaindata cache=128 handles=1024 + test_cmd.go:231: (stderr) INFO [11-30|23:28:34] Writing default main-net genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Initialised chain configuration config="{ChainID: 1 Homestead: 1150000 DAO: 1920000 DAOSupport: true EIP150: 2463000 EIP155: 2675000 EIP158: 2675000 Byzantium: 4370000 Engine: ethash}" + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Disk storage enabled for ethash caches dir=/tmp/geth-test639387507/geth/ethash count=3 + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Disk storage enabled for ethash DAGs dir=/home/yograterol/.ethash count=2 + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Initialising Ethereum protocol versions="[63 62]" network=1 + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Loaded most recent local header number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Loaded most recent local full block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Loaded most recent local fast block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Regenerated local transaction journal transactions=0 accounts=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Starting P2P networking + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] started whisper v.5.0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] RLPx listener up self="enode://1d548b77259b8c54211e2e8613733879c10026f056d5fb58ee37601cef92de1824fe606eca92c4b99df5b74e0a1be2f5e58aa18838181d34a935f79e0a58e4b0@[::]:37683?discport=0" + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] IPC endpoint opened: /tmp/geth-test011395940/geth.ipc + test_cmd.go:110: Matched stdout text: + Welcome to the Geth JavaScript console! + + instance: Geth/v1.8.0-unstable/linux-amd64/go1.9 + coinbase: 0x8605cdbbdb6d264aa742e77020dcbc58fcdce182 + at block: 0 (Wed, 31 Dec 1969 19:00:00 -05) + datadir: /tmp/geth-test639387507 + modules: admin:1.0 debug:1.0 eth:1.0 miner:1.0 net:1.0 personal:1.0 rpc:1.0 shh:1.0 txpool:1.0 web3:1.0 + + > + test_cmd.go:231: (stderr) INFO [11-30|23:28:36] Got interrupt, shutting down... + test_cmd.go:231: (stderr) INFO [11-30|23:28:36] IPC endpoint closed: /tmp/geth-test011395940/geth.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:36] Blockchain manager stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:36] Stopping Ethereum protocol + test_cmd.go:231: (stderr) INFO [11-30|23:28:36] Ethereum protocol stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:36] Transaction pool stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:36] Database closed database=/tmp/geth-test639387507/geth/chaindata + test_cmd.go:231: (stderr) INFO [11-30|23:28:36] whisper stopped +=== RUN TestHTTPAttachWelcome +--- PASS: TestHTTPAttachWelcome (2.29s) + test_cmd.go:231: (stderr) INFO [11-30|23:28:37] Starting peer-to-peer node instance=Geth/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) INFO [11-30|23:28:37] Allocated cache and file handles database=/tmp/geth-test814677533/geth/chaindata cache=128 handles=1024 + test_cmd.go:231: (stderr) INFO [11-30|23:28:37] Writing default main-net genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:37] Initialised chain configuration config="{ChainID: 1 Homestead: 1150000 DAO: 1920000 DAOSupport: true EIP150: 2463000 EIP155: 2675000 EIP158: 2675000 Byzantium: 4370000 Engine: ethash}" + test_cmd.go:231: (stderr) INFO [11-30|23:28:37] Disk storage enabled for ethash caches dir=/tmp/geth-test814677533/geth/ethash count=3 + test_cmd.go:231: (stderr) INFO [11-30|23:28:37] Disk storage enabled for ethash DAGs dir=/home/yograterol/.ethash count=2 + test_cmd.go:231: (stderr) INFO [11-30|23:28:37] Initialising Ethereum protocol versions="[63 62]" network=1 + test_cmd.go:231: (stderr) INFO [11-30|23:28:37] Loaded most recent local header number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:37] Loaded most recent local full block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:37] Loaded most recent local fast block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:37] Regenerated local transaction journal transactions=0 accounts=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:37] Starting P2P networking + test_cmd.go:231: (stderr) INFO [11-30|23:28:37] RLPx listener up self="enode://90763a39e84af75fcfbb56b13fdb4d59ddf7ff805b3a46598ded8d4e0aaf58b7a248d24ca9f85db7779a3eead66453c29b859fd97c5c5839f8012b75d2adadd6@[::]:37616?discport=0" + test_cmd.go:231: (stderr) INFO [11-30|23:28:37] IPC endpoint opened: /tmp/geth-test814677533/geth.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:37] HTTP endpoint opened: http://127.0.0.1:40498 + test_cmd.go:110: Matched stdout text: + Welcome to the Geth JavaScript console! + + instance: Geth/v1.8.0-unstable/linux-amd64/go1.9 + coinbase: 0x8605cdbbdb6d264aa742e77020dcbc58fcdce182 + at block: 0 (Wed, 31 Dec 1969 19:00:00 -05) + modules: eth:1.0 net:1.0 rpc:1.0 web3:1.0 + + > + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Got interrupt, shutting down... + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] HTTP endpoint closed: http://127.0.0.1:40498 + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] IPC endpoint closed: /tmp/geth-test814677533/geth.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Blockchain manager stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Stopping Ethereum protocol + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Ethereum protocol stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Transaction pool stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Database closed database=/tmp/geth-test814677533/geth/chaindata +=== RUN TestWSAttachWelcome +--- PASS: TestWSAttachWelcome (2.25s) + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Starting peer-to-peer node instance=Geth/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Allocated cache and file handles database=/tmp/geth-test740006487/geth/chaindata cache=128 handles=1024 + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Writing default main-net genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Initialised chain configuration config="{ChainID: 1 Homestead: 1150000 DAO: 1920000 DAOSupport: true EIP150: 2463000 EIP155: 2675000 EIP158: 2675000 Byzantium: 4370000 Engine: ethash}" + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Disk storage enabled for ethash caches dir=/tmp/geth-test740006487/geth/ethash count=3 + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Disk storage enabled for ethash DAGs dir=/home/yograterol/.ethash count=2 + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Initialising Ethereum protocol versions="[63 62]" network=1 + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Loaded most recent local header number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Loaded most recent local full block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Loaded most recent local fast block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Regenerated local transaction journal transactions=0 accounts=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] Starting P2P networking + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] RLPx listener up self="enode://ee824ca107b1a2767636ade00123a3c7fb0bba8fefeefe13ecb8984ef1e36db73687817626771853d6722f64ed4b133b611a64d140962292a76a4e1958ff24d4@[::]:40975?discport=0" + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] IPC endpoint opened: /tmp/geth-test740006487/geth.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:39] WebSocket endpoint opened: ws://127.0.0.1:17131 + test_cmd.go:110: Matched stdout text: + Welcome to the Geth JavaScript console! + + instance: Geth/v1.8.0-unstable/linux-amd64/go1.9 + coinbase: 0x8605cdbbdb6d264aa742e77020dcbc58fcdce182 + at block: 0 (Wed, 31 Dec 1969 19:00:00 -05) + modules: eth:1.0 net:1.0 rpc:1.0 web3:1.0 + + > + test_cmd.go:231: (stderr) INFO [11-30|23:28:41] Got interrupt, shutting down... + test_cmd.go:231: (stderr) INFO [11-30|23:28:41] WebSocket endpoint closed: ws://127.0.0.1:17131 + test_cmd.go:231: (stderr) INFO [11-30|23:28:41] IPC endpoint closed: /tmp/geth-test740006487/geth.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:41] Blockchain manager stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:41] Stopping Ethereum protocol + test_cmd.go:231: (stderr) INFO [11-30|23:28:41] Ethereum protocol stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:41] Transaction pool stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:41] Database closed database=/tmp/geth-test740006487/geth/chaindata +=== RUN TestDAOForkBlockNewChain +--- PASS: TestDAOForkBlockNewChain (1.34s) + test_cmd.go:231: (stderr) WARN [11-30|23:28:41] No etherbase set and no accounts found as default + test_cmd.go:231: (stderr) INFO [11-30|23:28:41] Starting peer-to-peer node instance=Geth/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) INFO [11-30|23:28:41] Allocated cache and file handles database=/tmp/geth-test248490657/geth/chaindata cache=128 handles=1024 + test_cmd.go:231: (stderr) INFO [11-30|23:28:41] Writing default main-net genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Initialised chain configuration config="{ChainID: 1 Homestead: 1150000 DAO: 1920000 DAOSupport: true EIP150: 2463000 EIP155: 2675000 EIP158: 2675000 Byzantium: 4370000 Engine: ethash}" + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Disk storage enabled for ethash caches dir=/tmp/geth-test248490657/geth/ethash count=3 + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Disk storage enabled for ethash DAGs dir=/home/yograterol/.ethash count=2 + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Initialising Ethereum protocol versions="[63 62]" network=1 + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Loaded most recent local header number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Loaded most recent local full block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Loaded most recent local fast block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Regenerated local transaction journal transactions=0 accounts=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Starting P2P networking + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] RLPx listener up self="enode://a014c38a71fcd34a2aafcef4d7018b08c8ff953bb8dcdd9038525f7321690507095a64d98cfd7f1d7a35f3cab2fcd792e0ea8a331c21cb50abe54d72761169a6@[::]:43589?discport=0" + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Blockchain manager stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Stopping Ethereum protocol + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Ethereum protocol stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Transaction pool stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Database closed database=/tmp/geth-test248490657/geth/chaindata + test_cmd.go:231: (stderr) WARN [11-30|23:28:42] No etherbase set and no accounts found as default + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Allocated cache and file handles database=/tmp/geth-test689240460/geth/chaindata cache=16 handles=16 + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Writing custom genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Successfully wrote genesis state database=chaindata hash=5e1fc7…d790e0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Allocated cache and file handles database=/tmp/geth-test689240460/geth/lightchaindata cache=16 handles=16 + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Writing custom genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Successfully wrote genesis state database=lightchaindata hash=5e1fc7…d790e0 + test_cmd.go:231: (stderr) WARN [11-30|23:28:42] No etherbase set and no accounts found as default + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Allocated cache and file handles database=/tmp/geth-test045880699/geth/chaindata cache=16 handles=16 + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Writing custom genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Successfully wrote genesis state database=chaindata hash=5e1fc7…d790e0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Allocated cache and file handles database=/tmp/geth-test045880699/geth/lightchaindata cache=16 handles=16 + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Writing custom genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Successfully wrote genesis state database=lightchaindata hash=5e1fc7…d790e0 + test_cmd.go:231: (stderr) WARN [11-30|23:28:42] No etherbase set and no accounts found as default + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Allocated cache and file handles database=/tmp/geth-test144950942/geth/chaindata cache=16 handles=16 + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Writing custom genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Successfully wrote genesis state database=chaindata hash=5e1fc7…d790e0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Allocated cache and file handles database=/tmp/geth-test144950942/geth/lightchaindata cache=16 handles=16 + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Writing custom genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Successfully wrote genesis state database=lightchaindata hash=5e1fc7…d790e0 +=== RUN TestCustomGenesis +--- PASS: TestCustomGenesis (2.27s) + test_cmd.go:231: (stderr) WARN [11-30|23:28:42] No etherbase set and no accounts found as default + test_cmd.go:231: (stderr) INFO [11-30|23:28:42] Allocated cache and file handles database=/tmp/geth-test232317285/geth/chaindata cache=16 handles=16 + test_cmd.go:231: (stderr) Fatal: Failed to write genesis block: genesis has no chain configuration + test_cmd.go:231: (stderr) WARN [11-30|23:28:43] No etherbase set and no accounts found as default + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Starting peer-to-peer node instance=Geth/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Allocated cache and file handles database=/tmp/geth-test232317285/geth/chaindata cache=128 handles=1024 + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Writing default main-net genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Initialised chain configuration config="{ChainID: 1 Homestead: 1150000 DAO: 1920000 DAOSupport: true EIP150: 2463000 EIP155: 2675000 EIP158: 2675000 Byzantium: 4370000 Engine: ethash}" + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Disk storage enabled for ethash caches dir=/tmp/geth-test232317285/geth/ethash count=3 + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Disk storage enabled for ethash DAGs dir=/home/yograterol/.ethash count=2 + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Initialising Ethereum protocol versions="[63 62]" network=1 + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Loaded most recent local header number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Loaded most recent local full block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Loaded most recent local fast block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Regenerated local transaction journal transactions=0 accounts=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Starting P2P networking + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] RLPx listener up self="enode://dfaa6055487cf650ecced7c840aac748e8b4a861197f106373525a4d18a4c512d847ce281866f330155eea8d253b4c0f7d069dafe4a1e77f2b5011f2b42aa425@[::]:34633?discport=0" + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Blockchain manager stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Stopping Ethereum protocol + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Ethereum protocol stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Transaction pool stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Database closed database=/tmp/geth-test232317285/geth/chaindata + test_cmd.go:157: Matched stdout text: + "0x0000000000000042" + test_cmd.go:231: (stderr) WARN [11-30|23:28:43] No etherbase set and no accounts found as default + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Allocated cache and file handles database=/tmp/geth-test770758016/geth/chaindata cache=16 handles=16 + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Writing custom genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Successfully wrote genesis state database=chaindata hash=5e1fc7…d790e0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Allocated cache and file handles database=/tmp/geth-test770758016/geth/lightchaindata cache=16 handles=16 + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Writing custom genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:43] Successfully wrote genesis state database=lightchaindata hash=5e1fc7…d790e0 + test_cmd.go:231: (stderr) WARN [11-30|23:28:44] No etherbase set and no accounts found as default + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Starting peer-to-peer node instance=Geth/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Allocated cache and file handles database=/tmp/geth-test770758016/geth/chaindata cache=128 handles=1024 + test_cmd.go:231: (stderr) WARN [11-30|23:28:44] Upgrading database to use lookup entries + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Initialised chain configuration config="{ChainID: Homestead: DAO: DAOSupport: false EIP150: EIP155: EIP158: Byzantium: Engine: unknown}" + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Disk storage enabled for ethash caches dir=/tmp/geth-test770758016/geth/ethash count=3 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Disk storage enabled for ethash DAGs dir=/home/yograterol/.ethash count=2 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Initialising Ethereum protocol versions="[63 62]" network=1 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Database deduplication successful deduped=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Loaded most recent local header number=0 hash=5e1fc7…d790e0 td=131072 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Loaded most recent local full block number=0 hash=5e1fc7…d790e0 td=131072 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Loaded most recent local fast block number=0 hash=5e1fc7…d790e0 td=131072 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Regenerated local transaction journal transactions=0 accounts=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Starting P2P networking + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] RLPx listener up self="enode://7a68ac3839927e2dc3bef58beb0018d4d496c4f2569e7edde1bd4aa90fbe6aa0168c5b53cd746355f9fa0cb240f760536b6d8e2decf5e5df9a98f9f8ae18c644@[::]:44759?discport=0" + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Blockchain manager stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Stopping Ethereum protocol + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Ethereum protocol stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Transaction pool stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Database closed database=/tmp/geth-test770758016/geth/chaindata + test_cmd.go:157: Matched stdout text: + "0x0000000000000042" + test_cmd.go:231: (stderr) Fatal: invalid genesis file: invalid character '}' looking for beginning of object key string + test_cmd.go:231: (stderr) WARN [11-30|23:28:44] No etherbase set and no accounts found as default + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Starting peer-to-peer node instance=Geth/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Allocated cache and file handles database=/tmp/geth-test988499679/geth/chaindata cache=128 handles=1024 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Writing default main-net genesis block + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Initialised chain configuration config="{ChainID: 1 Homestead: 1150000 DAO: 1920000 DAOSupport: true EIP150: 2463000 EIP155: 2675000 EIP158: 2675000 Byzantium: 4370000 Engine: ethash}" + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Disk storage enabled for ethash caches dir=/tmp/geth-test988499679/geth/ethash count=3 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Disk storage enabled for ethash DAGs dir=/home/yograterol/.ethash count=2 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Initialising Ethereum protocol versions="[63 62]" network=1 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Loaded most recent local header number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Loaded most recent local full block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Loaded most recent local fast block number=0 hash=d4e567…cb8fa3 td=17179869184 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Regenerated local transaction journal transactions=0 accounts=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] Starting P2P networking + test_cmd.go:231: (stderr) INFO [11-30|23:28:44] RLPx listener up self="enode://1bc3be21eca01c94bc584c4151c5929c7311da8f195e8b1f7bdc6022e2df88bae79e45d1eceae50edaa025c9fa395e217b1891d4c45b01a6d2caf10745b590a4@[::]:44121?discport=0" + test_cmd.go:231: (stderr) INFO [11-30|23:28:45] Blockchain manager stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:45] Stopping Ethereum protocol + test_cmd.go:231: (stderr) INFO [11-30|23:28:45] Ethereum protocol stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:45] Transaction pool stopped + test_cmd.go:231: (stderr) INFO [11-30|23:28:45] Database closed database=/tmp/geth-test988499679/geth/chaindata + test_cmd.go:157: Matched stdout text: + "0x0000000000000042" +PASS +ok github.com/EthereumCommonwealth/go-callisto/cmd/geth 18.349s +? github.com/EthereumCommonwealth/go-callisto/cmd/internal/browser [no test files] +? github.com/EthereumCommonwealth/go-callisto/cmd/p2psim [no test files] +? github.com/EthereumCommonwealth/go-callisto/cmd/puppeth [no test files] +? github.com/EthereumCommonwealth/go-callisto/cmd/rlpdump [no test files] +=== RUN TestCLISwarmUp +--- PASS: TestCLISwarmUp (11.92s) + upload_test.go:31: starting 3 node cluster + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:28] FS scan times list=44.512µs set=4.872µs diff=5.14µs + test_cmd.go:231: (stderr) TRACE[11-30|23:28:28] Handled keystore changes time=58.037µs + test_cmd.go:231: (stderr) TRACE[11-30|23:28:28] Started watching keystore folder path=/tmp/swarm-test640262088/swarm00/keystore + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Starting peer-to-peer node instance=swarm/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] Setting up Swarm service components + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] Set up local storage + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] Set up local db access (iterator/counter) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] Set up swarm network with Kademlia hive + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] -> set swarm forwarder as cloud storage backend + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] -> swarm net store shared access layer to Swarm Chunk Store + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] -> REmote Access to CHunks + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] -> Local Access to Swarm + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] -> Content Store API + test_cmd.go:231: (stderr) WARN [11-30|23:28:29] No ENS, please specify non-empty --ens-api to use domain name resolution + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] -> Swarm Domain Name Registrar @ address 0x112234455C3a32FD11230C42E7Bccd4A84e02010 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] -> Web3 virtual server API + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] -> Initializing Fuse file system + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Starting P2P networking + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] SWAP disabled: no cheque book set + test_cmd.go:231: (stderr) WARN [11-30|23:28:29] Starting Swarm service + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] RLPx listener up self="enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@[::]:33914?discport=0" + test_cmd.go:231: (stderr) WARN [11-30|23:28:29] Warning: error reading kaddb '/tmp/swarm-test640262088/swarm00/swarm/bzz-c9c243b838ccf3bb909c973fe491018be289ed89/bzz-peers.json' (skipping): open /tmp/swarm-test640262088/swarm00/swarm/bzz-c9c243b838ccf3bb909c973fe491018be289ed89/bzz-peers.json: no such file or directory + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Swarm network started on bzz address: c75c0f1abc7deca8c3f40bbca4165c86a17bfc23b39d9a9ec93dc9877484e101 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:29] dpa: store spawning 8 workers + test_cmd.go:231: (stderr) TRACE[11-30|23:28:29] dpa: retrieve loop spawning 8 workers + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] Swarm DPA started + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Swarm http proxy started on 127.0.0.1:33008 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] InProc registered *node.PrivateAdminAPI under 'admin' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] InProc registered *node.PublicAdminAPI under 'admin' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] InProc registered *debug.HandlerT under 'debug' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] InProc registered *node.PublicDebugAPI under 'debug' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] InProc registered *node.PublicWeb3API under 'web3' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] InProc registered *swarm.Info under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] InProc registered *api.Control under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] InProc registered *chequebook.Api under 'chequebook' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] InProc registered *fuse.SwarmFS under 'swarmfs' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] InProc registered *api.Storage under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] InProc registered *api.FileSystem under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] IPC registered *node.PrivateAdminAPI under 'admin' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] IPC registered *node.PublicAdminAPI under 'admin' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] IPC registered *debug.HandlerT under 'debug' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] IPC registered *node.PublicDebugAPI under 'debug' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] IPC registered *node.PublicWeb3API under 'web3' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] IPC registered *swarm.Info under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] IPC registered *api.Control under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] IPC registered *chequebook.Api under 'chequebook' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] IPC registered *fuse.SwarmFS under 'swarmfs' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] IPC registered *api.Storage under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:29] IPC registered *api.FileSystem under 'bzz' + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] IPC endpoint opened: /tmp/swarm-test640262088/swarm00/bzzd.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:29] Mapped network port proto=tcp extport=33914 intport=33914 interface=NAT-PMP(192.168.2.1) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:31] FS scan times list=62.037µs set=6.538µs diff=10.012µs + test_cmd.go:231: (stderr) TRACE[11-30|23:28:31] Handled keystore changes time=61.844µs + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:31] FS scan times list=22.902µs set=3.518µs diff=3.403µs + test_cmd.go:231: (stderr) TRACE[11-30|23:28:31] Started watching keystore folder path=/tmp/swarm-test640262088/swarm01/keystore + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Starting peer-to-peer node instance=swarm/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] Setting up Swarm service components + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] Set up local storage + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] Set up local db access (iterator/counter) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] Set up swarm network with Kademlia hive + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] -> set swarm forwarder as cloud storage backend + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] -> swarm net store shared access layer to Swarm Chunk Store + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] -> REmote Access to CHunks + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] -> Local Access to Swarm + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] -> Content Store API + test_cmd.go:231: (stderr) WARN [11-30|23:28:32] No ENS, please specify non-empty --ens-api to use domain name resolution + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] -> Swarm Domain Name Registrar @ address 0x112234455C3a32FD11230C42E7Bccd4A84e02010 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] -> Web3 virtual server API + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] -> Initializing Fuse file system + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Starting P2P networking + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] SWAP disabled: no cheque book set + test_cmd.go:231: (stderr) WARN [11-30|23:28:32] Starting Swarm service + test_cmd.go:231: (stderr) WARN [11-30|23:28:32] Warning: error reading kaddb '/tmp/swarm-test640262088/swarm01/swarm/bzz-99cd4fc96dd612f73145265c9a909d572573fb2c/bzz-peers.json' (skipping): open /tmp/swarm-test640262088/swarm01/swarm/bzz-99cd4fc96dd612f73145265c9a909d572573fb2c/bzz-peers.json: no such file or directory + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Swarm network started on bzz address: 16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:32] dpa: store spawning 8 workers + test_cmd.go:231: (stderr) TRACE[11-30|23:28:32] dpa: retrieve loop spawning 8 workers + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] Swarm DPA started + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Swarm http proxy started on 127.0.0.1:44488 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] InProc registered *node.PrivateAdminAPI under 'admin' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] InProc registered *node.PublicAdminAPI under 'admin' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] InProc registered *debug.HandlerT under 'debug' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] InProc registered *node.PublicDebugAPI under 'debug' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] InProc registered *node.PublicWeb3API under 'web3' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] InProc registered *swarm.Info under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] InProc registered *api.Control under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] InProc registered *chequebook.Api under 'chequebook' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] InProc registered *fuse.SwarmFS under 'swarmfs' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] InProc registered *api.Storage under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] InProc registered *api.FileSystem under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] IPC registered *node.PrivateAdminAPI under 'admin' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] IPC registered *node.PublicAdminAPI under 'admin' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] IPC registered *debug.HandlerT under 'debug' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] IPC registered *node.PublicDebugAPI under 'debug' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] IPC registered *node.PublicWeb3API under 'web3' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] IPC registered *swarm.Info under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] IPC registered *api.Control under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] IPC registered *chequebook.Api under 'chequebook' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] IPC registered *fuse.SwarmFS under 'swarmfs' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] IPC registered *api.Storage under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:32] IPC registered *api.FileSystem under 'bzz' + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] RLPx listener up self="enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@[::]:32810?discport=0" + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] IPC endpoint opened: /tmp/swarm-test640262088/swarm01/bzzd.ipc + test_cmd.go:231: (stderr) INFO [11-30|23:28:32] Mapped network port proto=tcp extport=32810 intport=32810 interface=NAT-PMP(192.168.2.1) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:34] FS scan times list=59.797µs set=4.861µs diff=4.656µs + test_cmd.go:231: (stderr) TRACE[11-30|23:28:34] Handled keystore changes time=62.433µs + test_cmd.go:231: (stderr) TRACE[11-30|23:28:34] Started watching keystore folder path=/tmp/swarm-test640262088/swarm02/keystore + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Starting peer-to-peer node instance=swarm/v1.8.0-unstable/linux-amd64/go1.9 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Setting up Swarm service components + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Set up local storage + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Set up local db access (iterator/counter) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Set up swarm network with Kademlia hive + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] -> set swarm forwarder as cloud storage backend + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] -> swarm net store shared access layer to Swarm Chunk Store + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] -> REmote Access to CHunks + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] -> Local Access to Swarm + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] -> Content Store API + test_cmd.go:231: (stderr) WARN [11-30|23:28:35] No ENS, please specify non-empty --ens-api to use domain name resolution + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] -> Swarm Domain Name Registrar @ address 0x112234455C3a32FD11230C42E7Bccd4A84e02010 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] -> Web3 virtual server API + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] -> Initializing Fuse file system + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Starting P2P networking + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] SWAP disabled: no cheque book set + test_cmd.go:231: (stderr) WARN [11-30|23:28:35] Starting Swarm service + test_cmd.go:231: (stderr) WARN [11-30|23:28:35] Warning: error reading kaddb '/tmp/swarm-test640262088/swarm02/swarm/bzz-6dc91dc5b8d86abcbce18fc51f807583e926ec3f/bzz-peers.json' (skipping): open /tmp/swarm-test640262088/swarm02/swarm/bzz-6dc91dc5b8d86abcbce18fc51f807583e926ec3f/bzz-peers.json: no such file or directory + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Swarm network started on bzz address: d4b0dee5557ce3608f0ecfdfac9a3fbf1fdbfc40929db63baa4a348a3e77193b + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] dpa: store spawning 8 workers + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] dpa: retrieve loop spawning 8 workers + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Swarm DPA started + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Swarm http proxy started on 127.0.0.1:37489 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] InProc registered *node.PrivateAdminAPI under 'admin' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] InProc registered *node.PublicAdminAPI under 'admin' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] InProc registered *debug.HandlerT under 'debug' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] InProc registered *node.PublicDebugAPI under 'debug' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] InProc registered *node.PublicWeb3API under 'web3' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] InProc registered *swarm.Info under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] InProc registered *api.Control under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] InProc registered *chequebook.Api under 'chequebook' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] InProc registered *fuse.SwarmFS under 'swarmfs' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] InProc registered *api.Storage under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] InProc registered *api.FileSystem under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] IPC registered *node.PrivateAdminAPI under 'admin' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] IPC registered *node.PublicAdminAPI under 'admin' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] IPC registered *debug.HandlerT under 'debug' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] IPC registered *node.PublicDebugAPI under 'debug' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] IPC registered *node.PublicWeb3API under 'web3' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] IPC registered *swarm.Info under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] IPC registered *api.Control under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] IPC registered *chequebook.Api under 'chequebook' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] IPC registered *fuse.SwarmFS under 'swarmfs' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] IPC registered *api.Storage under 'bzz' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] IPC registered *api.FileSystem under 'bzz' + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] RLPx listener up self="enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@[::]:42487?discport=0" + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] IPC endpoint opened: /tmp/swarm-test640262088/swarm02/bzzd.ipc + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Adding static node node=enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] New dial task task="staticdial 4b0492f59c416d0d 127.0.0.1:33914" + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] Accepted connection addr=127.0.0.1:38842 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Adding static node node=enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] New dial task task="staticdial 4b0492f59c416d0d 127.0.0.1:33914" + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] Rejected peer before protocol handshake id=4b0492f59c416d0d addr=127.0.0.1:38842 conn=inbound err="connected to self" + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] Accepted connection addr=127.0.0.1:38844 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] Rejected peer before protocol handshake id=4b0492f59c416d0d addr=127.0.0.1:33914 conn=staticdial err="connected to self" + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] Dial task done task="staticdial 4b0492f59c416d0d 127.0.0.1:33914" + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] New dial task task="wait for dial hist expire (29.999997052s)" + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] Accepted connection addr=127.0.0.1:38846 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Adding static node node=enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] New dial task task="staticdial 4b0492f59c416d0d 127.0.0.1:33914" + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Mapped network port proto=tcp extport=42487 intport=42487 interface=NAT-PMP(192.168.2.1) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Adding p2p peer id=4b0492f59c416d0d name=swarm/v1.8.0-unstabl... addr=127.0.0.1:33914 peers=1 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] Dial task done task="staticdial 4b0492f59c416d0d 127.0.0.1:33914" + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] New dial task task="wait for dial hist expire (29.999997225s)" + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] Starting protocol bzz/0 id=4b0492f59c416d0d conn=staticdial + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] self: advertised IP: enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@[::]:32810?discport=0, peer advertised: enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0, local address: 127.0.0.1:38844 + test_cmd.go:231: (stderr) peer: advertised IP: 127.0.0.1, remote address: 127.0.0.1:33914 + test_cmd.go:231: (stderr) + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Peer c75c0f1a is capable (0/321) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] hi new bee enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] ========================================================================= + test_cmd.go:231: (stderr) Fri Dec 1 04:28:35 UTC 2017 KΛÐΞMLIΛ hive: queen's address: 16ca97 + test_cmd.go:231: (stderr) population: 0 (0), proxLimit: 0, proxSize: 0 + test_cmd.go:231: (stderr) MaxProx: 8, ProxBinSize: 2, BucketSize: 4 + test_cmd.go:231: (stderr) ============ PROX LIMIT: 0 ========================================== + test_cmd.go:231: (stderr) 000 0 | 0 0 + test_cmd.go:231: (stderr) 001 0 | 0 0 + test_cmd.go:231: (stderr) 002 0 | 0 0 + test_cmd.go:231: (stderr) 003 0 | 0 0 + test_cmd.go:231: (stderr) 004 0 | 0 0 + test_cmd.go:231: (stderr) 005 0 | 0 0 + test_cmd.go:231: (stderr) 006 0 | 0 0 + test_cmd.go:231: (stderr) 007 0 | 0 0 + test_cmd.go:231: (stderr) 008 0 | 0 0 + test_cmd.go:231: (stderr) ========================================================================= + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] add new record to kaddb + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] no sync state for node record setting default + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] cb(, enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0) -> + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] add node record with node enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] add node enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 to table + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 2: from: ourselves, Key: ; ID: 0, MaxSize: 0, MaxPeers: 0 (*network.retrieveRequestMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] 'whatsup wheresdaparty' sent to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] syncronisation request sent with address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] syncronisation request to peer enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 at state address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 4: address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: (*network.syncRequestMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] kaddb record c75c0f1abc7deca8c3f40bbca4165c86a17bfc23b39d9a9ec93dc9877484e101 (PO000:0/1) already connected + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serving 1 nodes at 7 (PO07) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO07, PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO08, PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO06, PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO05, PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO04, PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO03, PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO02, PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO01, PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 1 -> 1 (PO00, PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serve 1 (<=1) nodes for target lookup 17fe9799739b3d9677972a3b58ef609ba78332428f85ed2534d0b496108a4d92 (PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] call any bee near 6e0b48d32d9c67dc9a302bfc765ed67bde3d5481cdfa531267aa655aa5ab0117 (PO001) - messenger bee: enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 2: from: ourselves, Key: 6e0b48d3; ID: 0, MaxSize: 0, MaxPeers: 0 (*network.retrieveRequestMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #2 (6 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] self lookup for enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0: responding with peers only... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serving 0 nodes at 0 (PO00) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 1 -> 1 (PO00, PO000) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serve 1 (<=0) nodes for target lookup c75c0f1abc7deca8c3f40bbca4165c86a17bfc23b39d9a9ec93dc9877484e101 (PO000) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Hive sending 1 peer addresses to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0. req.Id: 0, req.Key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 3: from: ourselves, Key: ; ID: 0, Peers: [enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0] (*network.peersMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] buzz kept alive + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] queen's address: 16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2, population: 1 (1) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #4 (11 bytes) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- sync request: {address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: } + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] syncronisation requested by peer enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 at state address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[peer: c75c0f1a, priority: 0] - initialised + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[peer: c75c0f1a, priority: 1] - initialised + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[peer: c75c0f1a, priority: 2] - initialised + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] syncer started: address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer set for peer enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a]: buffers consumed. Waiting + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #2 (38 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] self lookup for enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0: responding with peers only... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serving 0 nodes at 0 (PO00) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 1 -> 1 (PO00, PO000) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serve 1 (<=0) nodes for target lookup 932d9c67dc9a302bfc765ed67bde3d5481cdfa531267aa655aa5ab0117ce6bf8 (PO000) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Hive sending 1 peer addresses to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0. req.Id: 0, req.Key: 932d9c67 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 3: from: ourselves, Key: 932d9c67; ID: 0, Peers: [enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0] (*network.peersMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[c75c0f1a/0] - counter starts at 0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[c75c0f1a/1] - counter starts at 0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[c75c0f1a/2] - counter starts at 0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] syncer[c75c0f1a]: nothing to sync + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a]: (priority -1) syncing complete upto address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: ) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a]: buffers consumed. Waiting + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Adding p2p peer id=4b0492f59c416d0d name=swarm/v1.8.0-unstabl... addr=127.0.0.1:33914 peers=1 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] Dial task done task="staticdial 4b0492f59c416d0d 127.0.0.1:33914" + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] New dial task task="wait for dial hist expire (29.999997189s)" + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] Starting protocol bzz/0 id=4b0492f59c416d0d conn=staticdial + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] self: advertised IP: enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@[::]:42487?discport=0, peer advertised: enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0, local address: 127.0.0.1:38846 + test_cmd.go:231: (stderr) peer: advertised IP: 127.0.0.1, remote address: 127.0.0.1:33914 + test_cmd.go:231: (stderr) + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Peer c75c0f1a is capable (0/321) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] hi new bee enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] ========================================================================= + test_cmd.go:231: (stderr) Fri Dec 1 04:28:35 UTC 2017 KΛÐΞMLIΛ hive: queen's address: d4b0de + test_cmd.go:231: (stderr) population: 0 (0), proxLimit: 0, proxSize: 0 + test_cmd.go:231: (stderr) MaxProx: 8, ProxBinSize: 2, BucketSize: 4 + test_cmd.go:231: (stderr) ============ PROX LIMIT: 0 ========================================== + test_cmd.go:231: (stderr) 000 0 | 0 0 + test_cmd.go:231: (stderr) 001 0 | 0 0 + test_cmd.go:231: (stderr) 002 0 | 0 0 + test_cmd.go:231: (stderr) 003 0 | 0 0 + test_cmd.go:231: (stderr) 004 0 | 0 0 + test_cmd.go:231: (stderr) 005 0 | 0 0 + test_cmd.go:231: (stderr) 006 0 | 0 0 + test_cmd.go:231: (stderr) 007 0 | 0 0 + test_cmd.go:231: (stderr) 008 0 | 0 0 + test_cmd.go:231: (stderr) ========================================================================= + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] add new record to kaddb + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] no sync state for node record setting default + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] cb(, enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0) -> + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] add node record with node enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] add node enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 to table + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 2: from: ourselves, Key: ; ID: 0, MaxSize: 0, MaxPeers: 0 (*network.retrieveRequestMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] 'whatsup wheresdaparty' sent to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] syncronisation request sent with address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] syncronisation request to peer enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 at state address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 4: address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: (*network.syncRequestMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] kaddb record c75c0f1abc7deca8c3f40bbca4165c86a17bfc23b39d9a9ec93dc9877484e101 (PO003:0/1) already connected + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serving 1 nodes at 7 (PO07) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO07, PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO08, PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO06, PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO05, PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO04, PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 1 -> 1 (PO03, PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serve 1 (<=1) nodes for target lookup d5fe9799739b3d9677972a3b58ef609ba78332428f85ed2534d0b496108a4d92 (PO007) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] call any bee near 2e0b48d32d9c67dc9a302bfc765ed67bde3d5481cdfa531267aa655aa5ab0117 (PO000) - messenger bee: enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 2: from: ourselves, Key: 2e0b48d3; ID: 0, MaxSize: 0, MaxPeers: 0 (*network.retrieveRequestMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] buzz kept alive + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] queen's address: d4b0dee5557ce3608f0ecfdfac9a3fbf1fdbfc40929db63baa4a348a3e77193b, population: 1 (1) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #2 (6 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] self lookup for enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0: responding with peers only... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serving 0 nodes at 3 (PO03) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 1 -> 1 (PO03, PO003) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serve 1 (<=0) nodes for target lookup c75c0f1abc7deca8c3f40bbca4165c86a17bfc23b39d9a9ec93dc9877484e101 (PO003) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Hive sending 1 peer addresses to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0. req.Id: 0, req.Key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 3: from: ourselves, Key: ; ID: 0, Peers: [enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0] (*network.peersMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #4 (11 bytes) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- sync request: {address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: } + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] syncronisation requested by peer enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 at state address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[peer: c75c0f1a, priority: 0] - initialised + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[peer: c75c0f1a, priority: 1] - initialised + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[peer: c75c0f1a, priority: 2] - initialised + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] syncer started: address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer set for peer enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a]: buffers consumed. Waiting + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #2 (38 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] self lookup for enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0: responding with peers only... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serving 0 nodes at 1 (PO01) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO01, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO02, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 1 -> 1 (PO03, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serve 1 (<=0) nodes for target lookup 8389c523190a0f8e4e2bd3a7ae523e0751f96543159f6a4b26799a60fc7855d7 (PO001) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Hive sending 1 peer addresses to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0. req.Id: 0, req.Key: 8389c523 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 3: from: ourselves, Key: 8389c523; ID: 0, Peers: [enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0] (*network.peersMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #3 (128 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] <- peer addresses: {[enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0] 0 0000000000000000000000000000000000000000000000000000000000000000 0 0xc4204b49d8} + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #3 (160 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] <- peer addresses: {[enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0] 0 2e0b48d32d9c67dc9a302bfc765ed67bde3d5481cdfa531267aa655aa5ab0117 0 0xc4204b49e8} + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] new nodes: [<16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2>], nodes: [] + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] 1/1 node records (new/known) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[c75c0f1a/0] - counter starts at 0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[c75c0f1a/1] - counter starts at 0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[c75c0f1a/2] - counter starts at 0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] syncer[c75c0f1a]: nothing to sync + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a]: (priority -1) syncing complete upto address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: ) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[c75c0f1a]: buffers consumed. Waiting + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Adding p2p peer id=b3b84aa7176a9ff9 name=swarm/v1.8.0-unstabl... addr=127.0.0.1:38844 peers=1 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] Starting protocol bzz/0 id=b3b84aa7176a9ff9 conn=inbound + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] self: advertised IP: enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@[::]:33914?discport=0, peer advertised: enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0, local address: 127.0.0.1:33914 + test_cmd.go:231: (stderr) peer: advertised IP: 127.0.0.1, remote address: 127.0.0.1:38844 + test_cmd.go:231: (stderr) + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Peer 16ca9794 is capable (0/321) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] hi new bee enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] ========================================================================= + test_cmd.go:231: (stderr) Fri Dec 1 04:28:35 UTC 2017 KΛÐΞMLIΛ hive: queen's address: c75c0f + test_cmd.go:231: (stderr) population: 0 (0), proxLimit: 0, proxSize: 0 + test_cmd.go:231: (stderr) MaxProx: 8, ProxBinSize: 2, BucketSize: 4 + test_cmd.go:231: (stderr) ============ PROX LIMIT: 0 ========================================== + test_cmd.go:231: (stderr) 000 0 | 0 0 + test_cmd.go:231: (stderr) 001 0 | 0 0 + test_cmd.go:231: (stderr) 002 0 | 0 0 + test_cmd.go:231: (stderr) 003 0 | 0 0 + test_cmd.go:231: (stderr) 004 0 | 0 0 + test_cmd.go:231: (stderr) 005 0 | 0 0 + test_cmd.go:231: (stderr) 006 0 | 0 0 + test_cmd.go:231: (stderr) 007 0 | 0 0 + test_cmd.go:231: (stderr) 008 0 | 0 0 + test_cmd.go:231: (stderr) ========================================================================= + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] add new record <16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2> to kaddb + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] no sync state for node record <16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2> setting default + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] cb(<16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2>, enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0) -> + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] add node record <16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2> with node enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] add node enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 to table + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 2: from: ourselves, Key: ; ID: 0, MaxSize: 0, MaxPeers: 0 (*network.retrieveRequestMsgData) to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] 'whatsup wheresdaparty' sent to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] syncronisation request sent with address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] syncronisation request to peer enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 at state address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 4: address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: (*network.syncRequestMsgData) to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] kaddb record 16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2 (PO000:0/1) already connected + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serving 1 nodes at 1 (PO01) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO01, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO02, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO03, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO04, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO05, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO06, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO07, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO08, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 1 -> 1 (PO00, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serve 1 (<=1) nodes for target lookup 99739b3d9677972a3b58ef609ba78332428f85ed2534d0b496108a4d92ae0b48 (PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] call any bee near 932d9c67dc9a302bfc765ed67bde3d5481cdfa531267aa655aa5ab0117ce6bf8 (PO001) - messenger bee: enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 2: from: ourselves, Key: 932d9c67; ID: 0, MaxSize: 0, MaxPeers: 0 (*network.retrieveRequestMsgData) to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] buzz kept alive + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] queen's address: c75c0f1abc7deca8c3f40bbca4165c86a17bfc23b39d9a9ec93dc9877484e101, population: 1 (1) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Adding p2p peer id=b059fd9a27cb41a6 name=swarm/v1.8.0-unstabl... addr=127.0.0.1:38846 peers=2 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] Starting protocol bzz/0 id=b059fd9a27cb41a6 conn=inbound + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] self: advertised IP: enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@[::]:33914?discport=0, peer advertised: enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0, local address: 127.0.0.1:33914 + test_cmd.go:231: (stderr) peer: advertised IP: 127.0.0.1, remote address: 127.0.0.1:38846 + test_cmd.go:231: (stderr) + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] Peer d4b0dee5 is capable (0/321) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] hi new bee enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] ========================================================================= + test_cmd.go:231: (stderr) Fri Dec 1 04:28:35 UTC 2017 KΛÐΞMLIΛ hive: queen's address: c75c0f + test_cmd.go:231: (stderr) population: 1 (1), proxLimit: 0, proxSize: 1 + test_cmd.go:231: (stderr) MaxProx: 8, ProxBinSize: 2, BucketSize: 4 + test_cmd.go:231: (stderr) ============ PROX LIMIT: 0 ========================================== + test_cmd.go:231: (stderr) 000 1 16ca97 | 1 0 16ca97 + test_cmd.go:231: (stderr) 001 0 | 0 0 + test_cmd.go:231: (stderr) 002 0 | 0 0 + test_cmd.go:231: (stderr) 003 0 | 0 0 + test_cmd.go:231: (stderr) 004 0 | 0 0 + test_cmd.go:231: (stderr) 005 0 | 0 0 + test_cmd.go:231: (stderr) 006 0 | 0 0 + test_cmd.go:231: (stderr) 007 0 | 0 0 + test_cmd.go:231: (stderr) 008 0 | 0 0 + test_cmd.go:231: (stderr) ========================================================================= + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] add new record to kaddb + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] no sync state for node record setting default + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] cb(, enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0) -> + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] add node record with node enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] add node enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 to table + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 2: from: ourselves, Key: ; ID: 0, MaxSize: 0, MaxPeers: 0 (*network.retrieveRequestMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] 'whatsup wheresdaparty' sent to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] syncronisation request sent with address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] syncronisation request to peer enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 at state address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 4: address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: (*network.syncRequestMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] kaddb record 16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2 (PO000:0/1) already connected + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serving 1 nodes at 2 (PO02) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO02, PO002) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 1 -> 1 (PO03, PO002) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 1 (PO04, PO002) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 1 (PO05, PO002) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 1 (PO06, PO002) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 1 (PO07, PO002) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 1 (PO08, PO002) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 1 (PO01, PO002) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serve 1 (<=1) nodes for target lookup e58d8953de5425676ad71230f7670b9a26ad566153f124d9e10d935d55ad5a97 (PO002) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] call any bee near 8389c523190a0f8e4e2bd3a7ae523e0751f96543159f6a4b26799a60fc7855d7 (PO001) - messenger bee: enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 2: from: ourselves, Key: 8389c523; ID: 0, MaxSize: 0, MaxPeers: 0 (*network.retrieveRequestMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] buzz kept alive + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] queen's address: c75c0f1abc7deca8c3f40bbca4165c86a17bfc23b39d9a9ec93dc9877484e101, population: 2 (2) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #2 (6 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] self lookup for enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0: responding with peers only... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serving 0 nodes at 3 (PO03) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 1 -> 1 (PO03, PO003) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serve 1 (<=0) nodes for target lookup d4b0dee5557ce3608f0ecfdfac9a3fbf1fdbfc40929db63baa4a348a3e77193b (PO003) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Hive sending 1 peer addresses to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0. req.Id: 0, req.Key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 3: from: ourselves, Key: ; ID: 0, Peers: [enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0] (*network.peersMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #4 (11 bytes) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- sync request: {address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: } + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] syncronisation requested by peer enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 at state address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[peer: d4b0dee5, priority: 0] - initialised + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[peer: d4b0dee5, priority: 1] - initialised + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[peer: d4b0dee5, priority: 2] - initialised + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] syncer started: address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer set for peer enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #2 (38 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] self lookup for enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0: responding with peers only... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serving 0 nodes at 0 (PO00) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 1 -> 1 (PO00, PO000) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serve 1 (<=0) nodes for target lookup 2e0b48d32d9c67dc9a302bfc765ed67bde3d5481cdfa531267aa655aa5ab0117 (PO000) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Hive sending 1 peer addresses to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0. req.Id: 0, req.Key: 2e0b48d3 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 3: from: ourselves, Key: 2e0b48d3; ID: 0, Peers: [enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0] (*network.peersMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[d4b0dee5/0] - counter starts at 0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[d4b0dee5/1] - counter starts at 0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[d4b0dee5/2] - counter starts at 0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] syncer[d4b0dee5]: nothing to sync + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[d4b0dee5/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[d4b0dee5/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[d4b0dee5/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[d4b0dee5]: buffers consumed. Waiting + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[d4b0dee5]: (priority -1) syncing complete upto address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: ) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[d4b0dee5/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[d4b0dee5/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[d4b0dee5/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[d4b0dee5]: buffers consumed. Waiting + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #3 (128 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] <- peer addresses: {[enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0] 0 0000000000000000000000000000000000000000000000000000000000000000 0 0xc4208f0128} + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #3 (160 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] <- peer addresses: {[enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0] 0 8389c523190a0f8e4e2bd3a7ae523e0751f96543159f6a4b26799a60fc7855d7 0 0xc4208f0138} + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #2 (6 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] self lookup for enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0: responding with peers only... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serving 0 nodes at 0 (PO00) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 1 -> 1 (PO00, PO000) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serve 1 (<=0) nodes for target lookup 16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2 (PO000) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Hive sending 1 peer addresses to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0. req.Id: 0, req.Key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 3: from: ourselves, Key: ; ID: 0, Peers: [enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0] (*network.peersMsgData) to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #4 (11 bytes) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- sync request: {address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: } + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] syncronisation requested by peer enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 at state address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[peer: 16ca9794, priority: 0] - initialised + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[peer: 16ca9794, priority: 1] - initialised + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[peer: 16ca9794, priority: 2] - initialised + test_cmd.go:231: (stderr) INFO [11-30|23:28:35] syncer started: address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer set for peer enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[16ca9794/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[16ca9794/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[16ca9794/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[16ca9794]: buffers consumed. Waiting + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #2 (38 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] self lookup for enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0: responding with peers only... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serving 0 nodes at 0 (PO00) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 1 -> 1 (PO00, PO000) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serve 1 (<=0) nodes for target lookup 6e0b48d32d9c67dc9a302bfc765ed67bde3d5481cdfa531267aa655aa5ab0117 (PO000) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Hive sending 1 peer addresses to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0. req.Id: 0, req.Key: 6e0b48d3 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 3: from: ourselves, Key: 6e0b48d3; ID: 0, Peers: [enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0] (*network.peersMsgData) to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #3 (128 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] <- peer addresses: {[enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0] 0 0000000000000000000000000000000000000000000000000000000000000000 0 0xc4204107f8} + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #3 (160 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] <- peer addresses: {[enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0] 0 932d9c67dc9a302bfc765ed67bde3d5481cdfa531267aa655aa5ab0117ce6bf8 0 0xc420410808} + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[16ca9794/0] - counter starts at 0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[16ca9794/1] - counter starts at 0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncDb[16ca9794/2] - counter starts at 0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] syncer[16ca9794]: nothing to sync + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[16ca9794]: (priority -1) syncing complete upto address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: ) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[16ca9794/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[16ca9794/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[16ca9794/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] syncer[16ca9794]: buffers consumed. Waiting + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #3 (128 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] <- peer addresses: {[enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0] 0 0000000000000000000000000000000000000000000000000000000000000000 0 0xc420196150} + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #3 (160 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] <- peer addresses: {[enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0] 0 6e0b48d32d9c67dc9a302bfc765ed67bde3d5481cdfa531267aa655aa5ab0117 0 0xc42000e220} + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] buzz wakeup + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] kaddb record 16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2 (PO000:0/1) already connected + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serving 1 nodes at 3 (PO03) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 1 -> 1 (PO03, PO003) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 1 (PO04, PO003) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 1 (PO05, PO003) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 1 (PO06, PO003) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 1 (PO07, PO003) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 1 (PO08, PO003) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 1 (PO02, PO003) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serve 1 (<=1) nodes for target lookup dc17629f6cbdf2d9070b5950929256553de53150858d0fcacb25ab85eacfe4a2 (PO003) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] call any bee near 8ef38551788ce1ef0716e17e1d733f73ea23127827bbfa6e4d954b3079412405 (PO001) - messenger bee: enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 2: from: ourselves, Key: 8ef38551; ID: 0, MaxSize: 0, MaxPeers: 0 (*network.retrieveRequestMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] buzz kept alive + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] queen's address: c75c0f1abc7deca8c3f40bbca4165c86a17bfc23b39d9a9ec93dc9877484e101, population: 2 (2) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #2 (38 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] self lookup for enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0: responding with peers only... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serving 0 nodes at 1 (PO01) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO01, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO02, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 1 -> 1 (PO03, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serve 1 (<=0) nodes for target lookup 8ef38551788ce1ef0716e17e1d733f73ea23127827bbfa6e4d954b3079412405 (PO001) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Hive sending 1 peer addresses to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0. req.Id: 0, req.Key: 8ef38551 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 3: from: ourselves, Key: 8ef38551; ID: 0, Peers: [enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0] (*network.peersMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #3 (160 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] <- peer addresses: {[enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0] 0 8ef38551788ce1ef0716e17e1d733f73ea23127827bbfa6e4d954b3079412405 0 0xc42000e2c0} + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] buzz wakeup + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] kaddb record c75c0f1abc7deca8c3f40bbca4165c86a17bfc23b39d9a9ec93dc9877484e101 (PO000:0/1) already connected + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serving 1 nodes at 1 (PO01) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO01, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO02, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO03, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO04, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO05, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO06, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO07, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 0 -> 0 (PO08, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 1 -> 1 (PO00, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serve 1 (<=1) nodes for target lookup 6bf8b0858d8953de5425676ad71230f7670b9a26ad566153f124d9e10d935d55 (PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] call any bee near 6d5a97c389c523190a0f8e4e2bd3a7ae523e0751f96543159f6a4b26799a60fc (PO001) - messenger bee: enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 2: from: ourselves, Key: 6d5a97c3; ID: 0, MaxSize: 0, MaxPeers: 0 (*network.retrieveRequestMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #2 (38 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] self lookup for enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0: responding with peers only... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serving 0 nodes at 0 (PO00) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] add 1 -> 1 (PO00, PO000) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] serve 1 (<=0) nodes for target lookup 6d5a97c389c523190a0f8e4e2bd3a7ae523e0751f96543159f6a4b26799a60fc (PO000) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] Hive sending 1 peer addresses to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0. req.Id: 0, req.Key: 6d5a97c3 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] -> 3: from: ourselves, Key: 6d5a97c3; ID: 0, Peers: [enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0] (*network.peersMsgData) to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] buzz kept alive + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] queen's address: 16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2, population: 1 (1) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:35] <- msg #3 (160 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:35] <- peer addresses: {[enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0] 0 6d5a97c389c523190a0f8e4e2bd3a7ae523e0751f96543159f6a4b26799a60fc 0 0xc4201961f8} + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] buzz wakeup + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] kaddb record 16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2 (PO000:0) ready to be tried. seen at 2017-11-30 23:28:35.484878115 -0500 -05 m=+1.377115482 (2.977400313s ago), scheduled at 2017-11-30 23:28:35.484878115 -0500 -05 m=+1.377115482 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] kaddb record 16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2 (PO000:0) selected as candidate connection 1. seen at 2017-11-30 23:28:35.484878115 -0500 -05 m=+1.377115482 (2.977400313s ago), selectable since 2017-11-30 23:28:35.484878115 -0500 -05 m=+1.377115482, retry after 2017-11-30 23:28:44.417123507 -0500 -05 m=+10.309360893 (in 5.954800626s) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] call known bee enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 1 nodes at 1 (PO01) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO01, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO02, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 1 -> 1 (PO03, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 1 (PO04, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 1 (PO05, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 1 (PO06, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 1 (PO07, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 1 (PO08, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 1 (PO00, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 1 (<=1) nodes for target lookup abf8b0858d8953de5425676ad71230f7670b9a26ad566153f124d9e10d935d55 (PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] call any bee near 2d5a97c389c523190a0f8e4e2bd3a7ae523e0751f96543159f6a4b26799a60fc (PO000) - messenger bee: enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 2: from: ourselves, Key: 2d5a97c3; ID: 0, MaxSize: 0, MaxPeers: 0 (*network.retrieveRequestMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] buzz kept alive + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] queen's address: d4b0dee5557ce3608f0ecfdfac9a3fbf1fdbfc40929db63baa4a348a3e77193b, population: 1 (2) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] Adding static node node="enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0" + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] New dial task task="staticdial b3b84aa7176a9ff9 127.0.0.1:32810" + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #3 (160 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] <- peer addresses: {[enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0] 0 2d5a97c389c523190a0f8e4e2bd3a7ae523e0751f96543159f6a4b26799a60fc 0 0xc4203c0038} + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Accepted connection addr=127.0.0.1:34222 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #2 (38 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] self lookup for enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0: responding with peers only... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 0 nodes at 0 (PO00) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 1 -> 1 (PO00, PO000) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 1 (<=0) nodes for target lookup 2d5a97c389c523190a0f8e4e2bd3a7ae523e0751f96543159f6a4b26799a60fc (PO000) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] Hive sending 1 peer addresses to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0. req.Id: 0, req.Key: 2d5a97c3 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 3: from: ourselves, Key: 2d5a97c3; ID: 0, Peers: [enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0] (*network.peersMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] Adding p2p peer id=b3b84aa7176a9ff9 name=swarm/v1.8.0-unstabl... addr=127.0.0.1:32810 peers=2 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Dial task done task="staticdial b3b84aa7176a9ff9 127.0.0.1:32810" + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Starting protocol bzz/0 id=b3b84aa7176a9ff9 conn=staticdial + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] Adding p2p peer id=b059fd9a27cb41a6 name=swarm/v1.8.0-unstabl... addr=127.0.0.1:34222 peers=2 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #2 (38 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] self lookup for enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0: responding with peers only... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 0 nodes at 1 (PO01) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO01, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO02, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 1 -> 1 (PO03, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 1 (<=0) nodes for target lookup a4a24ef38551788ce1ef0716e17e1d733f73ea23127827bbfa6e4d954b307941 (PO001) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] Hive sending 1 peer addresses to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0. req.Id: 0, req.Key: a4a24ef3 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 3: from: ourselves, Key: a4a24ef3; ID: 0, Peers: [enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0] (*network.peersMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] self: advertised IP: enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@[::]:42487?discport=0, peer advertised: enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0, local address: 127.0.0.1:34222 + test_cmd.go:231: (stderr) peer: advertised IP: 127.0.0.1, remote address: 127.0.0.1:32810 + test_cmd.go:231: (stderr) + test_cmd.go:231: (stderr) INFO [11-30|23:28:38] Peer 16ca9794 is capable (0/321) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] hi new bee enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] ========================================================================= + test_cmd.go:231: (stderr) Fri Dec 1 04:28:38 UTC 2017 KΛÐΞMLIΛ hive: queen's address: d4b0de + test_cmd.go:231: (stderr) population: 1 (2), proxLimit: 0, proxSize: 1 + test_cmd.go:231: (stderr) MaxProx: 8, ProxBinSize: 2, BucketSize: 4 + test_cmd.go:231: (stderr) ============ PROX LIMIT: 0 ========================================== + test_cmd.go:231: (stderr) 000 0 | 1 0 16ca97 + test_cmd.go:231: (stderr) 001 0 | 0 0 + test_cmd.go:231: (stderr) 002 0 | 0 0 + test_cmd.go:231: (stderr) 003 1 c75c0f | 1 0 c75c0f + test_cmd.go:231: (stderr) 004 0 | 0 0 + test_cmd.go:231: (stderr) 005 0 | 0 0 + test_cmd.go:231: (stderr) 006 0 | 0 0 + test_cmd.go:231: (stderr) 007 0 | 0 0 + test_cmd.go:231: (stderr) 008 0 | 0 0 + test_cmd.go:231: (stderr) ========================================================================= + test_cmd.go:231: (stderr) INFO [11-30|23:28:38] found record <16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2> in kaddb + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] no sync state for node record <16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2> setting default + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] cb(<16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2>, enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0) -> + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] add node record <16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2> with node enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] add node enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 to table + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 2: from: ourselves, Key: ; ID: 0, MaxSize: 0, MaxPeers: 0 (*network.retrieveRequestMsgData) to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] 'whatsup wheresdaparty' sent to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:38] syncronisation request sent with address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] syncronisation request to peer enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 at state address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 4: address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: (*network.syncRequestMsgData) to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] kaddb record 16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2 (PO000:0/1) already connected + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 1 nodes at 5 (PO05) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO05, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO06, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO07, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO08, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO04, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 1 -> 1 (PO03, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 1 (<=1) nodes for target lookup d3757c17629f6cbdf2d9070b5950929256553de53150858d0fcacb25ab85eacf (PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] call any bee near a4a24ef38551788ce1ef0716e17e1d733f73ea23127827bbfa6e4d954b307941 (PO001) - messenger bee: enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 2: from: ourselves, Key: a4a24ef3; ID: 0, MaxSize: 0, MaxPeers: 0 (*network.retrieveRequestMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] buzz kept alive + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] queen's address: d4b0dee5557ce3608f0ecfdfac9a3fbf1fdbfc40929db63baa4a348a3e77193b, population: 2 (2) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #2 (6 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] self lookup for enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0: responding with peers only... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 0 nodes at 0 (PO00) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 1 -> 1 (PO00, PO000) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 1 (<=0) nodes for target lookup 16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2 (PO000) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] Hive sending 1 peer addresses to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0. req.Id: 0, req.Key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 3: from: ourselves, Key: ; ID: 0, Peers: [enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0] (*network.peersMsgData) to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #4 (11 bytes) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- sync request: {address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: } + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] syncronisation requested by peer enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 at state address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncDb[peer: 16ca9794, priority: 0] - initialised + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncDb[peer: 16ca9794, priority: 1] - initialised + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncDb[peer: 16ca9794, priority: 2] - initialised + test_cmd.go:231: (stderr) INFO [11-30|23:28:38] syncer started: address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer set for peer enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: buffers consumed. Waiting + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #2 (38 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] self lookup for enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0: responding with peers only... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 0 nodes at 0 (PO00) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 1 -> 1 (PO00, PO000) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 1 (<=0) nodes for target lookup 64a24ef38551788ce1ef0716e17e1d733f73ea23127827bbfa6e4d954b307941 (PO000) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] Hive sending 1 peer addresses to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0. req.Id: 0, req.Key: 64a24ef3 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 3: from: ourselves, Key: 64a24ef3; ID: 0, Peers: [enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0] (*network.peersMsgData) to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Starting protocol bzz/0 id=b059fd9a27cb41a6 conn=inbound + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] self: advertised IP: enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@[::]:32810?discport=0, peer advertised: enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0, local address: 127.0.0.1:32810 + test_cmd.go:231: (stderr) peer: advertised IP: 127.0.0.1, remote address: 127.0.0.1:34222 + test_cmd.go:231: (stderr) + test_cmd.go:231: (stderr) INFO [11-30|23:28:38] Peer d4b0dee5 is capable (0/321) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] hi new bee enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] ========================================================================= + test_cmd.go:231: (stderr) Fri Dec 1 04:28:38 UTC 2017 KΛÐΞMLIΛ hive: queen's address: 16ca97 + test_cmd.go:231: (stderr) population: 1 (1), proxLimit: 0, proxSize: 1 + test_cmd.go:231: (stderr) MaxProx: 8, ProxBinSize: 2, BucketSize: 4 + test_cmd.go:231: (stderr) ============ PROX LIMIT: 0 ========================================== + test_cmd.go:231: (stderr) 000 1 c75c0f | 1 0 c75c0f + test_cmd.go:231: (stderr) 001 0 | 0 0 + test_cmd.go:231: (stderr) 002 0 | 0 0 + test_cmd.go:231: (stderr) 003 0 | 0 0 + test_cmd.go:231: (stderr) 004 0 | 0 0 + test_cmd.go:231: (stderr) 005 0 | 0 0 + test_cmd.go:231: (stderr) 006 0 | 0 0 + test_cmd.go:231: (stderr) 007 0 | 0 0 + test_cmd.go:231: (stderr) 008 0 | 0 0 + test_cmd.go:231: (stderr) ========================================================================= + test_cmd.go:231: (stderr) INFO [11-30|23:28:38] add new record to kaddb + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] no sync state for node record setting default + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] cb(, enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0) -> + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] add node record with node enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] add node enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 to table + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 2: from: ourselves, Key: ; ID: 0, MaxSize: 0, MaxPeers: 0 (*network.retrieveRequestMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] 'whatsup wheresdaparty' sent to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) INFO [11-30|23:28:38] syncronisation request sent with address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] syncronisation request to peer enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 at state address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 4: address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: (*network.syncRequestMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] kaddb record c75c0f1abc7deca8c3f40bbca4165c86a17bfc23b39d9a9ec93dc9877484e101 (PO000:0/2) already connected + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] kaddb record d4b0dee5557ce3608f0ecfdfac9a3fbf1fdbfc40929db63baa4a348a3e77193b (PO000:1/2) already connected + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 1 nodes at 5 (PO05) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO05, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO06, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO07, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO08, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO04, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO03, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO02, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO01, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 2 -> 2 (PO00, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 2 (<=1) nodes for target lookup 13757c17629f6cbdf2d9070b5950929256553de53150858d0fcacb25ab85eacf (PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] call any bee near 64a24ef38551788ce1ef0716e17e1d733f73ea23127827bbfa6e4d954b307941 (PO001) - messenger bee: enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 2: from: ourselves, Key: 64a24ef3; ID: 0, MaxSize: 0, MaxPeers: 0 (*network.retrieveRequestMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] buzz kept alive + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] queen's address: 16ca9794c9f396a89807a92aa796a28b4cf7ae3b5c35f43abd3b47a448b0d1d2, population: 2 (2) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #2 (6 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] self lookup for enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0: responding with peers only... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 0 nodes at 0 (PO00) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 2 -> 2 (PO00, PO000) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 2 (<=0) nodes for target lookup d4b0dee5557ce3608f0ecfdfac9a3fbf1fdbfc40929db63baa4a348a3e77193b (PO000) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] Hive sending 2 peer addresses to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0. req.Id: 0, req.Key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 3: from: ourselves, Key: ; ID: 0, Peers: [enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0] (*network.peersMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #4 (11 bytes) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- sync request: {address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: } + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] syncronisation requested by peer enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 at state address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncDb[peer: d4b0dee5, priority: 0] - initialised + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncDb[peer: d4b0dee5, priority: 1] - initialised + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncDb[peer: d4b0dee5, priority: 2] - initialised + test_cmd.go:231: (stderr) INFO [11-30|23:28:38] syncer started: address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer set for peer enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: buffers consumed. Waiting + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #3 (128 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] <- peer addresses: {[enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0] 0 0000000000000000000000000000000000000000000000000000000000000000 0 0xc420220a10} + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #3 (160 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] <- peer addresses: {[enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0] 0 64a24ef38551788ce1ef0716e17e1d733f73ea23127827bbfa6e4d954b307941 0 0xc420220a20} + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncDb[d4b0dee5/2] - counter starts at 0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncDb[d4b0dee5/1] - counter starts at 0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] syncer[d4b0dee5]: nothing to sync + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: (priority -1) syncing complete upto address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: ) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: buffers consumed. Waiting + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncDb[d4b0dee5/0] - counter starts at 0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncDb[16ca9794/0] - counter starts at 0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncDb[16ca9794/1] - counter starts at 0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncDb[16ca9794/2] - counter starts at 0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] syncer[16ca9794]: nothing to sync + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: (priority -1) syncing complete upto address: -, index: 0-0, session started at: 0, last seen at: 0, latest key: ) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: buffers consumed. Waiting + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #3 (160 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] <- peer addresses: {[enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0] 0 a4a24ef38551788ce1ef0716e17e1d733f73ea23127827bbfa6e4d954b307941 0 0xc4204b4a80} + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #3 (249 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] <- peer addresses: {[enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0] 0 0000000000000000000000000000000000000000000000000000000000000000 0 0xc4203c41d0} + upload_test.go:44: uploading file with 'swarm up' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #6 (80 bytes) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- unsynced keys : sync: keys of 1 new chunks (state session started at: 0, last seen at: 1, latest key: 00000000) => synced: true + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] Depo.HandleUnsyncedKeysMsg: received 1 unsynced keys: 1 missing. new state: session started at: 0, last seen at: 1, latest key: 00000000 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #6 (80 bytes) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- unsynced keys : sync: keys of 1 new chunks (state session started at: 0, last seen at: 1, latest key: 00000000) => synced: true + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] Depo.HandleUnsyncedKeysMsg: received 1 unsynced keys: 1 missing. new state: session started at: 0, last seen at: 1, latest key: 00000000 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.HandleUnsyncedKeysMsg: received [] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 5: sync request for new chunks + test_cmd.go:231: (stderr) delivery request for 1 chunks (*network.deliveryRequestMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #1 (54 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] incoming store request: from: self, Key: d19675150bfa4419a2ea4344df06d6be810c922f31892d6ca0add96c845e4fbc; ID: 3007656526759222893, requestTimeout: , storageTimeout: , SData 02000000000000007b7d + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.handleStoreRequest: d19675150bfa4419a2ea4344df06d6be810c922f31892d6ca0add96c845e4fbc not found locally. create new chunk/request + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] delivery of Key: d1967515 TreeSize: 2 Chunksize: 10 from enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] NetStore.Put: localStore.Put d1967515 stored locally + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 0 nodes at 5 (PO05) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO05, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO06, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO07, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO08, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO04, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 1 -> 1 (PO03, PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 1 (<=0) nodes for target lookup d19675150bfa4419a2ea4344df06d6be810c922f31892d6ca0add96c845e4fbc (PO005) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Store: enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 Key: d1967515 TreeSize: 2 Chunksize: 10 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Store: sent to 0 peers (chunk = Key: d1967515 TreeSize: 2 Chunksize: 10) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DbStore.Put: d1967515. db storage counter: 1 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #6 (80 bytes) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- unsynced keys : sync: keys of 1 new chunks (state session started at: 0, last seen at: 2, latest key: 00000000) => synced: true + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] Depo.HandleUnsyncedKeysMsg: received 1 unsynced keys: 1 missing. new state: session started at: 0, last seen at: 2, latest key: 00000000 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.HandleUnsyncedKeysMsg: received [] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 5: sync request for new chunks + test_cmd.go:231: (stderr) delivery request for 1 chunks (*network.deliveryRequestMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #1 (243 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] incoming store request: from: self, Key: c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6; ID: 537312256495307260, requestTimeout: , storageTimeout: , SData bd000000000000007b22 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.handleStoreRequest: c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6 not found locally. create new chunk/request + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] delivery of Key: c9175af8 TreeSize: 189 Chunksize: 197 from enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] NetStore.Put: localStore.Put c9175af8 stored locally + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 0 nodes at 3 (PO03) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 1 -> 1 (PO03, PO003) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 1 (<=0) nodes for target lookup c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6 (PO003) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Store: enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 Key: c9175af8 TreeSize: 189 Chunksize: 197 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Store: sent to 0 peers (chunk = Key: c9175af8 TreeSize: 189 Chunksize: 197) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: HTTP POST request URL: '/bzz:/', Host: '', Path: '/bzz:/', Referer: '', Accept: '' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: POST request received for bzz:// + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DPA.Put: d1967515 new chunk. call netStore.Put + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DPA.Put 0: d1967515 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] NetStore.Put: localStore.Put d1967515 stored locally + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] dpa: store processor d1967515 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 0 nodes at 3 (PO03) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 1 -> 1 (PO03, PO003) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.HandleUnsyncedKeysMsg: received [] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 5: sync request for new chunks + test_cmd.go:231: (stderr) delivery request for 1 chunks (*network.deliveryRequestMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #1 (56 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] incoming store request: from: self, Key: 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8; ID: 5093076345904227888, requestTimeout: , storageTimeout: , SData 04000000000000006461 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.handleStoreRequest: 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8 not found locally. create new chunk/request + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] delivery of Key: 61cc094e TreeSize: 4 Chunksize: 12 from enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] NetStore.Put: localStore.Put 61cc094e stored locally + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 0 nodes at 1 (PO01) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO01, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DbStore.Put: 61cc094e. db storage counter: 1 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO02, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO03, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO04, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO05, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO06, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO07, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO08, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 2 -> 2 (PO00, PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 2 (<=0) nodes for target lookup 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8 (PO001) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Store: enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 Key: 61cc094e TreeSize: 4 Chunksize: 12 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Store: enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 Key: 61cc094e TreeSize: 4 Chunksize: 12 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Store: sent to 1 peers (chunk = Key: 61cc094e TreeSize: 4 Chunksize: 12) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: new unsynced keys available + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/2]: queue: [0, 1, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: reading request with priority 1 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: (priority 1) added to unsynced keys: from: self, Key: 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8; ID: 0, requestTimeout: , storageTimeout: , SData 04000000000000006461 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: (priority 1): request from: self, Key: 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8; ID: 0, requestTimeout: , storageTimeout: , SData 04000000000000006461 (synced = true) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: buffers consumed. Waiting + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 1 (<=0) nodes for target lookup d19675150bfa4419a2ea4344df06d6be810c922f31892d6ca0add96c845e4fbc (PO003) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Store: enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 Key: d1967515 TreeSize: 2 Chunksize: 10 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Store: sent to 1 peers (chunk = Key: d1967515 TreeSize: 2 Chunksize: 10) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: new unsynced keys available + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/2]: queue: [0, 1, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: reading request with priority 1 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: (priority 1) added to unsynced keys: from: self, Key: d19675150bfa4419a2ea4344df06d6be810c922f31892d6ca0add96c845e4fbc; ID: 0, requestTimeout: , storageTimeout: , SData 02000000000000007b7d + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: (priority 1): request from: self, Key: d19675150bfa4419a2ea4344df06d6be810c922f31892d6ca0add96c845e4fbc; ID: 0, requestTimeout: , storageTimeout: , SData 02000000000000007b7d (synced = true) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: buffers consumed. Waiting + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DbStore.Put: d1967515. db storage counter: 1 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] manifest lookup key: 'd1967515'. + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] dpa: retrieve loop : chunk d1967515 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] NetStore.Get: d19675150bfa4419a2ea4344df06d6be810c922f31892d6ca0add96c845e4fbc found locally + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DPA.Get: d1967515 found locally, 10 bytes + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: sending [] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 6: sync: keys of 1 new chunks (state session started at: 0, last seen at: 1, latest key: 00000000) => synced: true (*network.unsyncedKeysMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] syncer[d4b0dee5]: --> 1 keys sent: (total: [0 1 0] (1), history: 0), sent sync state: session started at: 0, last seen at: 1, latest key: 00000000 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Manifest d1967515 retrieved + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Manifest d1967515 has 0 entries. + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #5 (37 bytes) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- delivery request: sync request for new chunks + test_cmd.go:231: (stderr) delivery request for 1 chunks + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.HandleDeliveryRequestMsg: received 1 delivery requests: [] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: peer ready to receive + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: sending [] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 6: sync: keys of 1 new chunks (state session started at: 0, last seen at: 1, latest key: 00000000) => synced: true (*network.unsyncedKeysMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] syncer[d4b0dee5]: --> 1 keys sent: (total: [0 1 0] (1), history: 0), sent sync state: session started at: 0, last seen at: 1, latest key: 00000000 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: buffers consumed. Waiting + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 1: from: self, Key: d19675150bfa4419a2ea4344df06d6be810c922f31892d6ca0add96c845e4fbc; ID: 3007656526759222893, requestTimeout: , storageTimeout: , SData 02000000000000007b7d (*network.storeRequestMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: from: self, Key: d19675150bfa4419a2ea4344df06d6be810c922f31892d6ca0add96c845e4fbc; ID: 3007656526759222893, requestTimeout: , storageTimeout: , SData 02000000000000007b7d successfully delivered + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: adding (4 bytes) to new manifest + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DPA.Put: 61cc094e new chunk. call netStore.Put + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DPA.Put 1: 61cc094e + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] NetStore.Put: localStore.Put 61cc094e stored locally + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 0 nodes at 0 (PO00) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 1 -> 1 (PO00, PO000) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 1 (<=0) nodes for target lookup 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8 (PO000) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Store: enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 Key: 61cc094e TreeSize: 4 Chunksize: 12 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Store: sent to 1 peers (chunk = Key: 61cc094e TreeSize: 4 Chunksize: 12) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: new unsynced keys available + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/2]: queue: [0, 1, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: reading request with priority 1 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: (priority 1) added to unsynced keys: from: self, Key: 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8; ID: 0, requestTimeout: , storageTimeout: , SData 04000000000000006461 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: (priority 1): request from: self, Key: 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8; ID: 0, requestTimeout: , storageTimeout: , SData 04000000000000006461 (synced = true) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: buffers consumed. Waiting + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: sending [] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 6: sync: keys of 1 new chunks (state session started at: 0, last seen at: 1, latest key: 00000000) => synced: true (*network.unsyncedKeysMsgData) to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] syncer[16ca9794]: --> 1 keys sent: (total: [0 1 0] (1), history: 0), sent sync state: session started at: 0, last seen at: 1, latest key: 00000000 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: content for 61cc094e stored + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DbStore.Put: 61cc094e. db storage counter: 2 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DPA.Put: c9175af8 new chunk. call netStore.Put + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DPA.Put 2: c9175af8 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] NetStore.Put: localStore.Put c9175af8 stored locally + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] dpa: store processor c9175af8 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 0 nodes at 4 (PO04) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO04, PO004) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO05, PO004) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO06, PO004) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO07, PO004) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO08, PO004) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 1 -> 1 (PO03, PO004) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 1 (<=0) nodes for target lookup c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6 (PO004) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Store: enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 Key: c9175af8 TreeSize: 189 Chunksize: 197 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Store: sent to 1 peers (chunk = Key: c9175af8 TreeSize: 189 Chunksize: 197) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: new unsynced keys available + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/2]: queue: [0, 1, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: reading request with priority 1 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: (priority 1) added to unsynced keys: from: self, Key: c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6; ID: 0, requestTimeout: , storageTimeout: , SData bd000000000000007b22 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: (priority 1): request from: self, Key: c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6; ID: 0, requestTimeout: , storageTimeout: , SData bd000000000000007b22 (synced = true) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: buffers consumed. Waiting + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: sending [] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 6: sync: keys of 1 new chunks (state session started at: 0, last seen at: 2, latest key: 00000000) => synced: true (*network.unsyncedKeysMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] syncer[d4b0dee5]: --> 1 keys sent: (total: [0 2 0] (2), history: 0), sent sync state: session started at: 0, last seen at: 2, latest key: 00000000 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DbStore.Put: c9175af8. db storage counter: 3 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: generated manifest c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #5 (37 bytes) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- delivery request: sync request for new chunks + test_cmd.go:231: (stderr) delivery request for 1 chunks + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.HandleDeliveryRequestMsg: received 1 delivery requests: [] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: peer ready to receive + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: buffers consumed. Waiting + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 1: from: self, Key: 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8; ID: 5093076345904227888, requestTimeout: , storageTimeout: , SData 04000000000000006461 (*network.storeRequestMsgData) to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: from: self, Key: 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8; ID: 5093076345904227888, requestTimeout: , storageTimeout: , SData 04000000000000006461 successfully delivered + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #5 (37 bytes) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- delivery request: sync request for new chunks + test_cmd.go:231: (stderr) delivery request for 1 chunks + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.HandleDeliveryRequestMsg: received 1 delivery requests: [] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: peer ready to receive + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: buffers consumed. Waiting + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 1: from: self, Key: c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6; ID: 537312256495307260, requestTimeout: , storageTimeout: , SData bd000000000000007b22 (*network.storeRequestMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: from: self, Key: c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6; ID: 537312256495307260, requestTimeout: , storageTimeout: , SData bd000000000000007b22 successfully delivered + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DbStore.Put: c9175af8. db storage counter: 2 + test_cmd.go:157: Matched stdout text: + c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6 + upload_test.go:49: file uploaded with hash c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6 + upload_test.go:53: getting file from swarm00 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #5 (37 bytes) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- delivery request: sync request for new chunks + test_cmd.go:231: (stderr) delivery request for 1 chunks + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.HandleDeliveryRequestMsg: received 1 delivery requests: [] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: peer ready to receive + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: buffers consumed. Waiting + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 1: from: self, Key: 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8; ID: 1027071200060345796, requestTimeout: , storageTimeout: , SData 04000000000000006461 (*network.storeRequestMsgData) to enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[d4b0dee5]: from: self, Key: 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8; ID: 1027071200060345796, requestTimeout: , storageTimeout: , SData 04000000000000006461 successfully delivered + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #6 (80 bytes) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- unsynced keys : sync: keys of 1 new chunks (state session started at: 0, last seen at: 1, latest key: 00000000) => synced: true + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] Depo.HandleUnsyncedKeysMsg: received 1 unsynced keys: 1 missing. new state: session started at: 0, last seen at: 1, latest key: 00000000 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.HandleUnsyncedKeysMsg: received [] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 5: sync request for new chunks + test_cmd.go:231: (stderr) delivery request for 1 chunks (*network.deliveryRequestMsgData) to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #1 (56 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] incoming store request: from: self, Key: 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8; ID: 1027071200060345796, requestTimeout: , storageTimeout: , SData 04000000000000006461 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.handleStoreRequest: 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8 not found locally. create new chunk/request + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] delivery of Key: 61cc094e TreeSize: 4 Chunksize: 12 from enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] NetStore.Put: localStore.Put 61cc094e stored locally + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 0 nodes at 0 (PO00) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 1 -> 1 (PO00, PO000) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 1 (<=0) nodes for target lookup 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8 (PO000) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Store: enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 Key: 61cc094e TreeSize: 4 Chunksize: 12 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Store: sent to 0 peers (chunk = Key: 61cc094e TreeSize: 4 Chunksize: 12) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DbStore.Put: 61cc094e. db storage counter: 3 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: HTTP GET request URL: '/bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6', Host: '', Path: '/bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6', Referer: '', Accept: '' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: GET request received for bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6/ + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: HTTP GET request URL: '/bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6/', Host: '', Path: '/bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6/', Referer: 'http://127.0.0.1:33008/bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6', Accept: '' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: GET request received for bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6/ + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Resolving : c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] manifest lookup key: 'c9175af8'. + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] dpa: retrieve loop : chunk c9175af8 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] NetStore.Get: c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6 found locally + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DPA.Get: c9175af8 found locally, 197 bytes + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Manifest c9175af8 retrieved + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Manifest c9175af8 has 1 entries. + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] getEntry() + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] findPrefixOf() + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] content lookup key: '61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8' (application/octet-stream) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] dpa: retrieve loop : chunk 61cc094e + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] NetStore.Get: 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8 found locally + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DPA.Get: 61cc094e found locally, 12 bytes + upload_test.go:53: getting file from swarm01 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: HTTP GET request URL: '/bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6', Host: '', Path: '/bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6', Referer: '', Accept: '' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: GET request received for bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6/ + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: HTTP GET request URL: '/bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6/', Host: '', Path: '/bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6/', Referer: 'http://127.0.0.1:44488/bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6', Accept: '' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: GET request received for bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6/ + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Resolving : c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] manifest lookup key: 'c9175af8'. + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] dpa: retrieve loop : chunk c9175af8 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] NetStore.Get: c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6 not found locally. open new request + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 0 nodes at 0 (PO00) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 2 -> 2 (PO00, PO000) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 2 (<=0) nodes for target lookup c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6 (PO000) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Retrieve: c9175af8 - received 2 peers from KΛÐΞMLIΛ... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] forwarder.Retrieve: sending retrieveRequest c9175af8 to peer [enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 2: from: ourselves, Key: c9175af8; ID: 2772905504528796354, MaxSize: 0, MaxPeers: 0 (*network.retrieveRequestMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #2 (46 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] NetStore.Get: c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6 found locally + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.strategyUpdateRequest: key c9175af8 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.HandleRetrieveRequest: c9175af8 - content found, delivering... + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serving 0 nodes at 4 (PO04) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO04, PO004) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO05, PO004) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO06, PO004) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO07, PO004) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 0 -> 0 (PO08, PO004) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] add 1 -> 1 (PO03, PO004) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] serve 1 (<=0) nodes for target lookup c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6 (PO004) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] Hive sending 1 peer addresses to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0. req.Id: 2772905504528796354, req.Key: c9175af8 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: new unsynced keys available + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: reading request with priority 2 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 3: from: ourselves, Key: c9175af8; ID: 2772905504528796354, Peers: [enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0] (*network.peersMsgData) to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: (priority 2) added to unsynced keys: from: self, Key: c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6; ID: 2772905504528796354, requestTimeout: , storageTimeout: , SData bd000000000000007b22 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: (priority 2): request from: self, Key: c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6; ID: 2772905504528796354, requestTimeout: , storageTimeout: , SData bd000000000000007b22 (synced = true) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: buffers consumed. Waiting + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: sending [] + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #3 (168 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 6: sync: keys of 1 new chunks (state session started at: 0, last seen at: 3, latest key: 00000000) => synced: true (*network.unsyncedKeysMsgData) to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] <- peer addresses: {[enode://b059fd9a27cb41a64cfb4ca4525bbaed2f639b298708615b3fdfb212e689913d9749725a226ea1285deabe51467a9d769ab6e3b69824906f941a79ddb697cddb@127.0.0.1:42487?discport=0] 0 c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6 2772905504528796354 0xc4201963c0} + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] syncer[16ca9794]: --> 1 keys sent: (total: [0 1 1] (2), history: 0), sent sync state: session started at: 0, last seen at: 3, latest key: 00000000 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #6 (80 bytes) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- unsynced keys : sync: keys of 1 new chunks (state session started at: 0, last seen at: 3, latest key: 00000000) => synced: true + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] Depo.HandleUnsyncedKeysMsg: received 1 unsynced keys: 1 missing. new state: session started at: 0, last seen at: 3, latest key: 00000000 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.HandleUnsyncedKeysMsg: received [] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 5: sync request for new chunks + test_cmd.go:231: (stderr) delivery request for 1 chunks (*network.deliveryRequestMsgData) to enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #5 (37 bytes) + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- delivery request: sync request for new chunks + test_cmd.go:231: (stderr) delivery request for 1 chunks + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.HandleDeliveryRequestMsg: received 1 delivery requests: [] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: peer ready to receive + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/2]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/1]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794/0]: queue: [0, 0, 0] + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] -> 1: from: self, Key: c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6; ID: 1365109515576817684, requestTimeout: , storageTimeout: , SData bd000000000000007b22 (*network.storeRequestMsgData) to enode://b3b84aa7176a9ff93bb8ae963b8d27242225a3d7e74225dfa63c55ddc87b52970dfdfbedc6d9696a85aca6594bdbc06303979f1812b99678db4b2b1da0930110@127.0.0.1:32810?discport=0 + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] <- msg #1 (243 bytes) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] incoming store request: from: self, Key: c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6; ID: 1365109515576817684, requestTimeout: , storageTimeout: , SData bd000000000000007b22 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Depo.HandleStoreRequest: from: c75c0f1abc7deca8c3f40bbca4165c86a17bfc23b39d9a9ec93dc9877484e101, Key: c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6; ID: 1365109515576817684, requestTimeout: , storageTimeout: , SData bd000000000000007b22. request entry found + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] delivery of Key: c9175af8 TreeSize: 189 Chunksize: 197 from enode://4b0492f59c416d0d1af4eef0013876977d63b6be91e7669acd77db4f264ac65f737831a59f2e223313645734e4b1857183ec1b3a0669448fdfd98fb64a6ef826@127.0.0.1:33914?discport=0 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] NetStore.Put: localStore.Put c9175af8 hit existing request...delivering + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DbStore.Put: c9175af8. db storage counter: 2 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DPA.Get: c9175af8 retrieved, 197 bytes (0xc420329ea0) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Manifest c9175af8 retrieved + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Manifest c9175af8 has 1 entries. + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] getEntry() + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] findPrefixOf() + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] content lookup key: '61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8' (application/octet-stream) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] dpa: retrieve loop : chunk 61cc094e + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] NetStore.Get: 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8 found locally + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DPA.Get: 61cc094e found locally, 12 bytes + upload_test.go:53: getting file from swarm02 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: buffers consumed. Waiting + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] syncer[16ca9794]: from: self, Key: c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6; ID: 1365109515576817684, requestTimeout: , storageTimeout: , SData bd000000000000007b22 successfully delivered + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: HTTP GET request URL: '/bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6', Host: '', Path: '/bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6', Referer: '', Accept: '' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: GET request received for bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6/ + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: HTTP GET request URL: '/bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6/', Host: '', Path: '/bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6/', Referer: 'http://127.0.0.1:37489/bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6', Accept: '' + test_cmd.go:231: (stderr) DEBUG[11-30|23:28:38] [BZZ] HTTP: GET request received for bzz:/c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6/ + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Resolving : c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] manifest lookup key: 'c9175af8'. + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] dpa: retrieve loop : chunk c9175af8 + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] NetStore.Get: c9175af8387f3f69d2d8f74d24a4675aca86c6fc4e51d41c59bd89c01f1a00c6 found locally + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DPA.Get: c9175af8 found locally, 197 bytes + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Manifest c9175af8 retrieved + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] Manifest c9175af8 has 1 entries. + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] getEntry() + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] findPrefixOf() + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] content lookup key: '61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8' (application/octet-stream) + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] dpa: retrieve loop : chunk 61cc094e + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] NetStore.Get: 61cc094e478970c7e58bf44cd1e13b2851d9cea254327d08dbdd1918b454b9f8 found locally + test_cmd.go:231: (stderr) TRACE[11-30|23:28:38] DPA.Get: 61cc094e found locally, 12 bytes +PASS +ok github.com/EthereumCommonwealth/go-callisto/cmd/swarm 11.991s +=== RUN TestPathExpansion +--- PASS: TestPathExpansion (0.00s) +=== RUN TestFileDescriptorLimits +--- PASS: TestFileDescriptorLimits (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/cmd/utils 0.061s +? github.com/EthereumCommonwealth/go-callisto/cmd/wnode [no test files] +=== RUN TestFromHex +--- PASS: TestFromHex (0.00s) +=== RUN TestFromHexOddLength +--- PASS: TestFromHexOddLength (0.00s) +=== RUN TestNoPrefixShortHexOddLength +--- PASS: TestNoPrefixShortHexOddLength (0.00s) +=== RUN Test +OK: 4 passed +--- PASS: Test (0.00s) +=== RUN TestStorageSizeString +--- PASS: TestStorageSizeString (0.00s) +=== RUN TestBytesConversion +--- PASS: TestBytesConversion (0.00s) +=== RUN TestHashJsonValidation +--- PASS: TestHashJsonValidation (0.00s) +=== RUN TestAddressUnmarshalJSON +--- PASS: TestAddressUnmarshalJSON (0.00s) +=== RUN TestAddressHexChecksum +--- PASS: TestAddressHexChecksum (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/common 0.003s +=== RUN TestXOR +--- PASS: TestXOR (0.00s) +=== RUN TestAND +--- PASS: TestAND (0.00s) +=== RUN TestOR +--- PASS: TestOR (0.00s) +=== RUN TestTest +--- PASS: TestTest (0.00s) +=== RUN TestEncodingCycle +--- PASS: TestEncodingCycle (0.00s) +=== RUN TestDecodingCycle +--- PASS: TestDecodingCycle (0.00s) +=== RUN TestCompression +--- PASS: TestCompression (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/common/bitutil 0.009s +=== RUN TestCompiler +--- SKIP: TestCompiler (0.00s) + solidity_test.go:37: exec: "solc": executable file not found in $PATH +=== RUN TestCompileError +--- SKIP: TestCompileError (0.00s) + solidity_test.go:37: exec: "solc": executable file not found in $PATH +PASS +ok github.com/EthereumCommonwealth/go-callisto/common/compiler 0.002s +=== RUN TestEncode +--- PASS: TestEncode (0.00s) +=== RUN TestDecode +--- PASS: TestDecode (0.00s) +=== RUN TestEncodeBig +--- PASS: TestEncodeBig (0.00s) +=== RUN TestDecodeBig +--- PASS: TestDecodeBig (0.00s) +=== RUN TestEncodeUint64 +--- PASS: TestEncodeUint64 (0.00s) +=== RUN TestDecodeUint64 +--- PASS: TestDecodeUint64 (0.00s) +=== RUN TestUnmarshalBytes +--- PASS: TestUnmarshalBytes (0.00s) +=== RUN TestMarshalBytes +--- PASS: TestMarshalBytes (0.00s) +=== RUN TestUnmarshalBig +--- PASS: TestUnmarshalBig (0.00s) +=== RUN TestMarshalBig +--- PASS: TestMarshalBig (0.00s) +=== RUN TestUnmarshalUint64 +--- PASS: TestUnmarshalUint64 (0.00s) +=== RUN TestMarshalUint64 +--- PASS: TestMarshalUint64 (0.00s) +=== RUN TestMarshalUint +--- PASS: TestMarshalUint (0.00s) +=== RUN TestUnmarshalUint +--- PASS: TestUnmarshalUint (0.00s) +=== RUN TestUnmarshalFixedUnprefixedText +--- PASS: TestUnmarshalFixedUnprefixedText (0.00s) +=== RUN ExampleUnmarshalFixedText +--- PASS: ExampleUnmarshalFixedText (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/common/hexutil 0.005s +=== RUN TestHexOrDecimal256 +--- PASS: TestHexOrDecimal256 (0.00s) +=== RUN TestMustParseBig256 +--- PASS: TestMustParseBig256 (0.00s) +=== RUN TestBigMax +--- PASS: TestBigMax (0.00s) +=== RUN TestBigMin +--- PASS: TestBigMin (0.00s) +=== RUN TestFirstBigSet +--- PASS: TestFirstBigSet (0.00s) +=== RUN TestPaddedBigBytes +--- PASS: TestPaddedBigBytes (0.00s) +=== RUN TestReadBits +--- PASS: TestReadBits (0.00s) +=== RUN TestU256 +--- PASS: TestU256 (0.00s) +=== RUN TestBigEndianByteAt +--- PASS: TestBigEndianByteAt (0.00s) +=== RUN TestLittleEndianByteAt +--- PASS: TestLittleEndianByteAt (0.00s) +=== RUN TestS256 +--- PASS: TestS256 (0.00s) +=== RUN TestExp +--- PASS: TestExp (0.00s) +=== RUN TestOverflow +--- PASS: TestOverflow (0.00s) +=== RUN TestHexOrDecimal64 +--- PASS: TestHexOrDecimal64 (0.00s) +=== RUN TestMustParseUint64 +--- PASS: TestMustParseUint64 (0.00s) +=== RUN TestMustParseUint64Panic +--- PASS: TestMustParseUint64Panic (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/common/math 0.004s +? github.com/EthereumCommonwealth/go-callisto/common/mclock [no test files] +=== RUN TestSet +--- PASS: TestSet (0.00s) +=== RUN TestInitialiser +--- PASS: TestInitialiser (0.00s) +=== RUN TestGet +--- PASS: TestGet (0.00s) +=== RUN TestCmp +--- PASS: TestCmp (0.00s) +=== RUN TestMaxArith +--- PASS: TestMaxArith (0.00s) +=== RUN TestConversion +--- PASS: TestConversion (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/common/number 0.024s +=== RUN Test +OK: 1 passed +--- PASS: Test (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/compression/rle 0.041s +? github.com/EthereumCommonwealth/go-callisto/consensus [no test files] +=== RUN TestVoting +--- PASS: TestVoting (0.14s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/consensus/clique 0.211s +=== RUN TestSizeCalculations +--- PASS: TestSizeCalculations (0.28s) +=== RUN TestCacheGeneration +--- PASS: TestCacheGeneration (0.00s) +=== RUN TestDatasetGeneration +--- PASS: TestDatasetGeneration (0.01s) +=== RUN TestHashimoto +--- PASS: TestHashimoto (0.01s) +=== RUN TestConcurrentDiskCacheGeneration +--- PASS: TestConcurrentDiskCacheGeneration (6.03s) +=== RUN TestCalcDifficulty +--- SKIP: TestCalcDifficulty (0.00s) + consensus_test.go:63: open ../../tests/testdata/BasicTests/difficulty.json: no such file or directory +=== RUN TestTestMode +--- PASS: TestTestMode (0.03s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/consensus/ethash 6.813s +? github.com/EthereumCommonwealth/go-callisto/consensus/misc [no test files] +=== RUN TestWelcome +--- PASS: TestWelcome (0.24s) +=== RUN TestEvaluate +--- PASS: TestEvaluate (0.20s) +=== RUN TestInteractive +--- PASS: TestInteractive (0.20s) +=== RUN TestPreload +--- PASS: TestPreload (0.21s) +=== RUN TestExecute +--- PASS: TestExecute (0.22s) +=== RUN TestPrettyPrint +--- PASS: TestPrettyPrint (0.16s) +=== RUN TestPrettyError +--- PASS: TestPrettyError (0.21s) +=== RUN TestIndenting +--- PASS: TestIndenting (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/console 1.514s +=== RUN TestIssueAndReceive +--- PASS: TestIssueAndReceive (0.01s) +=== RUN TestCheckbookFile +--- PASS: TestCheckbookFile (0.00s) +=== RUN TestVerifyErrors +--- PASS: TestVerifyErrors (0.02s) + cheque_test.go:193: correct error: beneficiary mismatch: 0x0D3ab14BBaD3D99F4203bd7a11aCB94882050E7e != 0x703c4b2bD70c169f5717101CaeE543299Fc946C7 + cheque_test.go:203: correct error: contract mismatch: 0x35658f7b2a9E7701e65E7a654659eb1C481d1dC5 != 0x3A220f351252089D385b29beca14e27F204c296A + cheque_test.go:209: correct error: amount must be greater than zero (-1) + cheque_test.go:215: correct error: incorrect amount: 0 <= 0 +=== RUN TestDeposit +--- PASS: TestDeposit (0.28s) +=== RUN TestCash +--- PASS: TestCash (0.10s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/contracts/chequebook 0.476s +? github.com/EthereumCommonwealth/go-callisto/contracts/chequebook/contract [no test files] +=== RUN TestENS +--- PASS: TestENS (0.03s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/contracts/ens 0.087s +? github.com/EthereumCommonwealth/go-callisto/contracts/ens/contract [no test files] +=== RUN TestContractCreation +--- PASS: TestContractCreation (0.01s) +=== RUN TestSignerPromotion +--- PASS: TestSignerPromotion (0.23s) +=== RUN TestSignerDemotion +--- PASS: TestSignerDemotion (0.38s) +=== RUN TestVersionRelease +--- PASS: TestVersionRelease (0.36s) +=== RUN TestVersionNuking +--- PASS: TestVersionNuking (0.87s) +=== RUN TestVersionAutoNuke +--- PASS: TestVersionAutoNuke (0.22s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/contracts/release 2.170s +=== RUN TestHeaderVerification +--- PASS: TestHeaderVerification (0.41s) +=== RUN TestHeaderConcurrentVerification2 +--- PASS: TestHeaderConcurrentVerification2 (0.05s) +=== RUN TestHeaderConcurrentVerification8 +--- PASS: TestHeaderConcurrentVerification8 (0.05s) +=== RUN TestHeaderConcurrentVerification32 +--- PASS: TestHeaderConcurrentVerification32 (0.05s) +=== RUN TestHeaderConcurrentAbortion2 +--- PASS: TestHeaderConcurrentAbortion2 (0.14s) +=== RUN TestHeaderConcurrentAbortion8 +--- PASS: TestHeaderConcurrentAbortion8 (0.13s) +=== RUN TestHeaderConcurrentAbortion32 +--- PASS: TestHeaderConcurrentAbortion32 (0.14s) +=== RUN TestLastBlock +--- PASS: TestLastBlock (0.00s) +=== RUN TestExtendCanonicalHeaders +--- PASS: TestExtendCanonicalHeaders (0.01s) +=== RUN TestExtendCanonicalBlocks +--- PASS: TestExtendCanonicalBlocks (0.03s) +=== RUN TestShorterForkHeaders +--- PASS: TestShorterForkHeaders (0.01s) +=== RUN TestShorterForkBlocks +--- PASS: TestShorterForkBlocks (0.03s) +=== RUN TestLongerForkHeaders +--- PASS: TestLongerForkHeaders (0.02s) +=== RUN TestLongerForkBlocks +--- PASS: TestLongerForkBlocks (0.05s) +=== RUN TestEqualForkHeaders +--- PASS: TestEqualForkHeaders (0.03s) +=== RUN TestEqualForkBlocks +--- PASS: TestEqualForkBlocks (0.06s) +=== RUN TestBrokenHeaderChain +--- PASS: TestBrokenHeaderChain (0.00s) +=== RUN TestBrokenBlockChain +--- PASS: TestBrokenBlockChain (0.00s) +=== RUN TestReorgLongHeaders +--- PASS: TestReorgLongHeaders (0.00s) +=== RUN TestReorgLongBlocks +--- PASS: TestReorgLongBlocks (0.00s) +=== RUN TestReorgShortHeaders +--- PASS: TestReorgShortHeaders (0.00s) +=== RUN TestReorgShortBlocks +--- PASS: TestReorgShortBlocks (0.00s) +=== RUN TestBadHeaderHashes +--- PASS: TestBadHeaderHashes (0.00s) +=== RUN TestBadBlockHashes +--- PASS: TestBadBlockHashes (0.00s) +=== RUN TestReorgBadHeaderHashes +--- PASS: TestReorgBadHeaderHashes (0.01s) +=== RUN TestReorgBadBlockHashes +--- PASS: TestReorgBadBlockHashes (0.00s) +=== RUN TestHeadersInsertNonceError +--- PASS: TestHeadersInsertNonceError (0.10s) +=== RUN TestBlocksInsertNonceError +--- PASS: TestBlocksInsertNonceError (0.11s) +=== RUN TestFastVsFullChains +--- PASS: TestFastVsFullChains (2.09s) +=== RUN TestLightVsFastVsFullChainHeads +--- PASS: TestLightVsFastVsFullChainHeads (0.92s) +=== RUN TestChainTxReorgs +--- PASS: TestChainTxReorgs (0.01s) +=== RUN TestLogReorgs +--- PASS: TestLogReorgs (0.00s) +=== RUN TestReorgSideEvent +--- PASS: TestReorgSideEvent (0.26s) +=== RUN TestCanonicalBlockRetrieval +--- PASS: TestCanonicalBlockRetrieval (0.00s) +=== RUN TestEIP155Transition +--- PASS: TestEIP155Transition (0.01s) +=== RUN TestEIP161AccountRemoval +--- PASS: TestEIP161AccountRemoval (0.00s) +=== RUN TestChainIndexerSingle +--- PASS: TestChainIndexerSingle (4.73s) +=== RUN TestChainIndexerWithChildren +--- PASS: TestChainIndexerWithChildren (5.30s) +=== RUN TestDAOForkRangeExtradata +--- PASS: TestDAOForkRangeExtradata (0.29s) +=== RUN TestHeaderStorage +--- PASS: TestHeaderStorage (0.00s) +=== RUN TestBodyStorage +--- PASS: TestBodyStorage (0.00s) +=== RUN TestBlockStorage +--- PASS: TestBlockStorage (0.00s) +=== RUN TestPartialBlockStorage +--- PASS: TestPartialBlockStorage (0.00s) +=== RUN TestTdStorage +--- PASS: TestTdStorage (0.00s) +=== RUN TestCanonicalMappingStorage +--- PASS: TestCanonicalMappingStorage (0.00s) +=== RUN TestHeadStorage +--- PASS: TestHeadStorage (0.00s) +=== RUN TestLookupStorage +--- PASS: TestLookupStorage (0.00s) +=== RUN TestBlockReceiptStorage +--- PASS: TestBlockReceiptStorage (0.00s) +=== RUN TestDefaultGenesisBlock +--- PASS: TestDefaultGenesisBlock (0.35s) +=== RUN TestSetupGenesis +--- PASS: TestSetupGenesis (0.98s) +=== RUN TestStrictTxListAdd +--- PASS: TestStrictTxListAdd (0.28s) +=== RUN TestStateChangeDuringTransactionPoolReset +=== RUN TestInvalidTransactions +=== RUN TestTransactionQueue +=== RUN TestTransactionNegativeValue +=== RUN TestTransactionChainFork +=== RUN TestTransactionDoubleNonce +=== RUN TestTransactionMissingNonce +=== RUN TestTransactionNonceRecovery +=== RUN TestTransactionDropping +=== RUN TestTransactionPostponing +=== RUN TestTransactionGapFilling +=== RUN TestTransactionQueueAccountLimiting +=== RUN TestTransactionQueueGlobalLimiting +=== RUN TestTransactionQueueGlobalLimitingNoLocals +=== RUN TestTransactionQueueTimeLimiting +--- PASS: TestTransactionQueueTimeLimiting (2.00s) +=== RUN TestTransactionQueueTimeLimitingNoLocals +--- PASS: TestTransactionQueueTimeLimitingNoLocals (2.00s) +=== RUN TestTransactionPendingLimiting +=== RUN TestTransactionQueueLimitingEquivalency +=== RUN TestTransactionPendingLimitingEquivalency +=== RUN TestTransactionPendingGlobalLimiting +=== RUN TestTransactionCapClearsFromAll +=== RUN TestTransactionPendingMinimumAllowance +=== RUN TestTransactionPoolRepricing +=== RUN TestTransactionPoolRepricingKeepsLocals +=== RUN TestTransactionPoolUnderpricing +=== RUN TestTransactionReplacement +=== RUN TestTransactionJournaling +=== RUN TestTransactionJournalingNoLocals +--- PASS: TestTransactionMissingNonce (0.00s) +--- PASS: TestStateChangeDuringTransactionPoolReset (0.01s) + tx_pool_test.go:218: 861768759b737570574ced2dc3a973ad78782e05: 2 +--- PASS: TestTransactionCapClearsFromAll (0.02s) +--- PASS: TestTransactionPostponing (0.13s) +--- PASS: TestTransactionPendingLimitingEquivalency (0.24s) +--- PASS: TestTransactionPendingLimiting (0.25s) +--- PASS: TestTransactionQueueAccountLimiting (0.09s) +--- PASS: TestTransactionPendingMinimumAllowance (0.27s) +--- PASS: TestTransactionQueueLimitingEquivalency (0.30s) +--- PASS: TestTransactionQueue (0.01s) +--- PASS: TestTransactionDoubleNonce (0.01s) +--- PASS: TestTransactionChainFork (0.00s) +--- PASS: TestTransactionNegativeValue (0.00s) +--- PASS: TestTransactionGapFilling (0.11s) +--- PASS: TestTransactionReplacement (0.16s) +--- PASS: TestInvalidTransactions (0.00s) +--- PASS: TestTransactionPoolUnderpricing (0.16s) +--- PASS: TestTransactionDropping (0.00s) +--- PASS: TestTransactionNonceRecovery (0.00s) +--- PASS: TestTransactionPendingGlobalLimiting (0.58s) +--- PASS: TestTransactionPoolRepricing (0.22s) +--- PASS: TestTransactionQueueGlobalLimitingNoLocals (1.01s) +--- PASS: TestTransactionQueueGlobalLimiting (1.11s) +--- PASS: TestTransactionPoolRepricingKeepsLocals (0.89s) +--- PASS: TestTransactionJournalingNoLocals (2.00s) +--- PASS: TestTransactionJournaling (2.01s) +=== RUN ExampleGenerateChain +--- FAIL: ExampleGenerateChain (0.01s) +got: +last block: #5 +balance of addr1: 989000 +balance of addr2: 10000 +balance of addr3: 36375000000000001000 +want: +last block: #5 +balance of addr1: 989000 +balance of addr2: 10000 +balance of addr3: 19687500000000001000 +FAIL +FAIL github.com/EthereumCommonwealth/go-callisto/core 23.438s +=== RUN TestInstructionIteratorValid +--- PASS: TestInstructionIteratorValid (0.00s) +=== RUN TestInstructionIteratorInvalid +--- PASS: TestInstructionIteratorInvalid (0.00s) +=== RUN TestInstructionIteratorEmpty +--- PASS: TestInstructionIteratorEmpty (0.00s) +=== RUN TestLexer +--- PASS: TestLexer (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/core/asm 0.047s +=== RUN TestGenerator +--- PASS: TestGenerator (0.26s) +=== RUN TestMatcherWildcards +--- PASS: TestMatcherWildcards (0.00s) +=== RUN TestMatcherContinuous +--- PASS: TestMatcherContinuous (0.06s) +=== RUN TestMatcherIntermittent +--- PASS: TestMatcherIntermittent (0.90s) +=== RUN TestMatcherRandom +--- PASS: TestMatcherRandom (1.23s) +=== RUN TestMatcherShifted +--- PASS: TestMatcherShifted (0.00s) +=== RUN TestWildcardMatcher +--- PASS: TestWildcardMatcher (0.87s) +=== RUN TestSchedulerSingleClientSingleFetcher +--- PASS: TestSchedulerSingleClientSingleFetcher (0.60s) +=== RUN TestSchedulerSingleClientMultiFetcher +--- PASS: TestSchedulerSingleClientMultiFetcher (0.07s) +=== RUN TestSchedulerMultiClientSingleFetcher +--- PASS: TestSchedulerMultiClientSingleFetcher (0.61s) +=== RUN TestSchedulerMultiClientMultiFetcher +--- PASS: TestSchedulerMultiClientMultiFetcher (0.17s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/core/bloombits 4.815s +=== RUN TestNodeIteratorCoverage +--- PASS: TestNodeIteratorCoverage (0.01s) +=== RUN Test +OK: 5 passed +--- PASS: Test (0.00s) +=== RUN TestNewNonce +--- PASS: TestNewNonce (0.00s) +=== RUN TestRemove +--- PASS: TestRemove (0.00s) +=== RUN TestReuse +--- PASS: TestReuse (0.00s) +=== RUN TestRemoteNonceChange +--- PASS: TestRemoteNonceChange (0.00s) +=== RUN TestSetNonce +--- PASS: TestSetNonce (0.00s) +=== RUN TestSnapshot2 +--- PASS: TestSnapshot2 (0.00s) +=== RUN TestUpdateLeaks +--- PASS: TestUpdateLeaks (0.33s) +=== RUN TestIntermediateLeaks +--- PASS: TestIntermediateLeaks (0.05s) +=== RUN TestCopy +--- PASS: TestCopy (0.03s) +=== RUN TestSnapshotRandom +--- PASS: TestSnapshotRandom (15.70s) +=== RUN TestEmptyStateSync +--- PASS: TestEmptyStateSync (0.00s) +=== RUN TestIterativeStateSyncIndividual +--- PASS: TestIterativeStateSyncIndividual (0.01s) +=== RUN TestIterativeStateSyncBatched +--- PASS: TestIterativeStateSyncBatched (0.01s) +=== RUN TestIterativeDelayedStateSync +--- PASS: TestIterativeDelayedStateSync (0.01s) +=== RUN TestIterativeRandomStateSyncIndividual +--- PASS: TestIterativeRandomStateSyncIndividual (0.01s) +=== RUN TestIterativeRandomStateSyncBatched +--- PASS: TestIterativeRandomStateSyncBatched (0.01s) +=== RUN TestIterativeRandomDelayedStateSync +--- PASS: TestIterativeRandomDelayedStateSync (0.01s) +=== RUN TestIncompleteStateSync +--- PASS: TestIncompleteStateSync (3.37s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/core/state 19.574s +=== RUN TestBlockEncoding +[119 177 155 170 77 230 126 69 167 178 110 74 34 11 204 219 182 115 24 133 170 153 39 6 78 35 156 162 50 2 50 21] +{0 10 50000 [9 94 123 174 166 166 199 196 194 223 235 151 126 250 195 38 175 85 45 135] 10 [] 27 70522460370187956038204948924070039059720810735419926107150428544048091171151 62673035389445833073657395954200172251579639992696796677674670364000792703665 } +[119 177 155 170 77 230 126 69 167 178 110 74 34 11 204 219 182 115 24 133 170 153 39 6 78 35 156 162 50 2 50 21] +--- PASS: TestBlockEncoding (0.00s) +=== RUN TestBloom +--- PASS: TestBloom (0.00s) +=== RUN TestUnmarshalLog +--- PASS: TestUnmarshalLog (0.00s) +=== RUN TestEIP155Signing +--- PASS: TestEIP155Signing (0.00s) +=== RUN TestEIP155ChainId +--- PASS: TestEIP155ChainId (0.00s) +=== RUN TestEIP155SigningVitalik +--- PASS: TestEIP155SigningVitalik (0.00s) +=== RUN TestChainId +--- PASS: TestChainId (0.00s) +=== RUN TestTransactionSigHash +--- PASS: TestTransactionSigHash (0.00s) +=== RUN TestTransactionEncode +--- PASS: TestTransactionEncode (0.00s) +=== RUN TestRecipientEmpty +--- PASS: TestRecipientEmpty (0.00s) +=== RUN TestRecipientNormal +--- PASS: TestRecipientNormal (0.00s) +=== RUN TestTransactionPriceNonceSort +--- PASS: TestTransactionPriceNonceSort (0.71s) +=== RUN TestTransactionJSON +--- PASS: TestTransactionJSON (0.02s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/core/types 0.787s +=== RUN TestJumpDestAnalysis +--- PASS: TestJumpDestAnalysis (0.00s) +=== RUN TestPrecompiledModExp +=== RUN TestPrecompiledModExp/eip_example1-Gas=13056 +=== RUN TestPrecompiledModExp/eip_example2-Gas=13056 +=== RUN TestPrecompiledModExp/nagydani-1-square-Gas=204 +=== RUN TestPrecompiledModExp/nagydani-1-qube-Gas=204 +=== RUN TestPrecompiledModExp/nagydani-1-pow0x10001-Gas=3276 +=== RUN TestPrecompiledModExp/nagydani-2-square-Gas=665 +=== RUN TestPrecompiledModExp/nagydani-2-qube-Gas=665 +=== RUN TestPrecompiledModExp/nagydani-2-pow0x10001-Gas=10649 +=== RUN TestPrecompiledModExp/nagydani-3-square-Gas=1894 +=== RUN TestPrecompiledModExp/nagydani-3-qube-Gas=1894 +=== RUN TestPrecompiledModExp/nagydani-3-pow0x10001-Gas=30310 +=== RUN TestPrecompiledModExp/nagydani-4-square-Gas=5580 +=== RUN TestPrecompiledModExp/nagydani-4-qube-Gas=5580 +=== RUN TestPrecompiledModExp/nagydani-4-pow0x10001-Gas=89292 +=== RUN TestPrecompiledModExp/nagydani-5-square-Gas=17868 +=== RUN TestPrecompiledModExp/nagydani-5-qube-Gas=17868 +=== RUN TestPrecompiledModExp/nagydani-5-pow0x10001-Gas=285900 +--- PASS: TestPrecompiledModExp (0.00s) + --- PASS: TestPrecompiledModExp/eip_example1-Gas=13056 (0.00s) + --- PASS: TestPrecompiledModExp/eip_example2-Gas=13056 (0.00s) + --- PASS: TestPrecompiledModExp/nagydani-1-square-Gas=204 (0.00s) + --- PASS: TestPrecompiledModExp/nagydani-1-qube-Gas=204 (0.00s) + --- PASS: TestPrecompiledModExp/nagydani-1-pow0x10001-Gas=3276 (0.00s) + --- PASS: TestPrecompiledModExp/nagydani-2-square-Gas=665 (0.00s) + --- PASS: TestPrecompiledModExp/nagydani-2-qube-Gas=665 (0.00s) + --- PASS: TestPrecompiledModExp/nagydani-2-pow0x10001-Gas=10649 (0.00s) + --- PASS: TestPrecompiledModExp/nagydani-3-square-Gas=1894 (0.00s) + --- PASS: TestPrecompiledModExp/nagydani-3-qube-Gas=1894 (0.00s) + --- PASS: TestPrecompiledModExp/nagydani-3-pow0x10001-Gas=30310 (0.00s) + --- PASS: TestPrecompiledModExp/nagydani-4-square-Gas=5580 (0.00s) + --- PASS: TestPrecompiledModExp/nagydani-4-qube-Gas=5580 (0.00s) + --- PASS: TestPrecompiledModExp/nagydani-4-pow0x10001-Gas=89292 (0.00s) + --- PASS: TestPrecompiledModExp/nagydani-5-square-Gas=17868 (0.00s) + --- PASS: TestPrecompiledModExp/nagydani-5-qube-Gas=17868 (0.00s) + --- PASS: TestPrecompiledModExp/nagydani-5-pow0x10001-Gas=285900 (0.00s) +=== RUN TestPrecompiledBn256Add +=== RUN TestPrecompiledBn256Add/chfast1-Gas=500 +=== RUN TestPrecompiledBn256Add/chfast2-Gas=500 +=== RUN TestPrecompiledBn256Add/cdetrio1-Gas=500 +=== RUN TestPrecompiledBn256Add/cdetrio2-Gas=500 +=== RUN TestPrecompiledBn256Add/cdetrio3-Gas=500 +=== RUN TestPrecompiledBn256Add/cdetrio4-Gas=500 +=== RUN TestPrecompiledBn256Add/cdetrio5-Gas=500 +=== RUN TestPrecompiledBn256Add/cdetrio6-Gas=500 +=== RUN TestPrecompiledBn256Add/cdetrio7-Gas=500 +=== RUN TestPrecompiledBn256Add/cdetrio8-Gas=500 +=== RUN TestPrecompiledBn256Add/cdetrio9-Gas=500 +=== RUN TestPrecompiledBn256Add/cdetrio10-Gas=500 +=== RUN TestPrecompiledBn256Add/cdetrio11-Gas=500 +=== RUN TestPrecompiledBn256Add/cdetrio12-Gas=500 +=== RUN TestPrecompiledBn256Add/cdetrio13-Gas=500 +=== RUN TestPrecompiledBn256Add/cdetrio14-Gas=500 +--- PASS: TestPrecompiledBn256Add (0.00s) + --- PASS: TestPrecompiledBn256Add/chfast1-Gas=500 (0.00s) + --- PASS: TestPrecompiledBn256Add/chfast2-Gas=500 (0.00s) + --- PASS: TestPrecompiledBn256Add/cdetrio1-Gas=500 (0.00s) + --- PASS: TestPrecompiledBn256Add/cdetrio2-Gas=500 (0.00s) + --- PASS: TestPrecompiledBn256Add/cdetrio3-Gas=500 (0.00s) + --- PASS: TestPrecompiledBn256Add/cdetrio4-Gas=500 (0.00s) + --- PASS: TestPrecompiledBn256Add/cdetrio5-Gas=500 (0.00s) + --- PASS: TestPrecompiledBn256Add/cdetrio6-Gas=500 (0.00s) + --- PASS: TestPrecompiledBn256Add/cdetrio7-Gas=500 (0.00s) + --- PASS: TestPrecompiledBn256Add/cdetrio8-Gas=500 (0.00s) + --- PASS: TestPrecompiledBn256Add/cdetrio9-Gas=500 (0.00s) + --- PASS: TestPrecompiledBn256Add/cdetrio10-Gas=500 (0.00s) + --- PASS: TestPrecompiledBn256Add/cdetrio11-Gas=500 (0.00s) + --- PASS: TestPrecompiledBn256Add/cdetrio12-Gas=500 (0.00s) + --- PASS: TestPrecompiledBn256Add/cdetrio13-Gas=500 (0.00s) + --- PASS: TestPrecompiledBn256Add/cdetrio14-Gas=500 (0.00s) +=== RUN TestPrecompiledBn256ScalarMul +=== RUN TestPrecompiledBn256ScalarMul/chfast1-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/chfast2-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/chfast3-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/cdetrio1-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/cdetrio2-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/cdetrio3-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/cdetrio4-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/cdetrio5-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/cdetrio6-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/cdetrio7-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/cdetrio8-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/cdetrio9-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/cdetrio10-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/cdetrio11-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/cdetrio12-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/cdetrio13-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/cdetrio14-Gas=40000 +=== RUN TestPrecompiledBn256ScalarMul/cdetrio15-Gas=40000 +--- PASS: TestPrecompiledBn256ScalarMul (0.06s) + --- PASS: TestPrecompiledBn256ScalarMul/chfast1-Gas=40000 (0.00s) + --- PASS: TestPrecompiledBn256ScalarMul/chfast2-Gas=40000 (0.00s) + --- PASS: TestPrecompiledBn256ScalarMul/chfast3-Gas=40000 (0.00s) + --- PASS: TestPrecompiledBn256ScalarMul/cdetrio1-Gas=40000 (0.01s) + --- PASS: TestPrecompiledBn256ScalarMul/cdetrio2-Gas=40000 (0.02s) + --- PASS: TestPrecompiledBn256ScalarMul/cdetrio3-Gas=40000 (0.00s) + --- PASS: TestPrecompiledBn256ScalarMul/cdetrio4-Gas=40000 (0.00s) + --- PASS: TestPrecompiledBn256ScalarMul/cdetrio5-Gas=40000 (0.00s) + --- PASS: TestPrecompiledBn256ScalarMul/cdetrio6-Gas=40000 (0.00s) + --- PASS: TestPrecompiledBn256ScalarMul/cdetrio7-Gas=40000 (0.00s) + --- PASS: TestPrecompiledBn256ScalarMul/cdetrio8-Gas=40000 (0.00s) + --- PASS: TestPrecompiledBn256ScalarMul/cdetrio9-Gas=40000 (0.00s) + --- PASS: TestPrecompiledBn256ScalarMul/cdetrio10-Gas=40000 (0.00s) + --- PASS: TestPrecompiledBn256ScalarMul/cdetrio11-Gas=40000 (0.00s) + --- PASS: TestPrecompiledBn256ScalarMul/cdetrio12-Gas=40000 (0.00s) + --- PASS: TestPrecompiledBn256ScalarMul/cdetrio13-Gas=40000 (0.00s) + --- PASS: TestPrecompiledBn256ScalarMul/cdetrio14-Gas=40000 (0.00s) + --- PASS: TestPrecompiledBn256ScalarMul/cdetrio15-Gas=40000 (0.00s) +=== RUN TestPrecompiledBn256Pairing +=== RUN TestPrecompiledBn256Pairing/jeff1-Gas=260000 +=== RUN TestPrecompiledBn256Pairing/jeff2-Gas=260000 +=== RUN TestPrecompiledBn256Pairing/jeff3-Gas=260000 +=== RUN TestPrecompiledBn256Pairing/jeff4-Gas=340000 +=== RUN TestPrecompiledBn256Pairing/jeff5-Gas=340000 +=== RUN TestPrecompiledBn256Pairing/jeff6-Gas=260000 +=== RUN TestPrecompiledBn256Pairing/empty_data-Gas=100000 +=== RUN TestPrecompiledBn256Pairing/one_point-Gas=180000 +=== RUN TestPrecompiledBn256Pairing/two_point_match_2-Gas=260000 +=== RUN TestPrecompiledBn256Pairing/two_point_match_3-Gas=260000 +=== RUN TestPrecompiledBn256Pairing/two_point_match_4-Gas=260000 +=== RUN TestPrecompiledBn256Pairing/ten_point_match_1-Gas=900000 +=== RUN TestPrecompiledBn256Pairing/ten_point_match_2-Gas=900000 +=== RUN TestPrecompiledBn256Pairing/ten_point_match_3-Gas=260000 +--- PASS: TestPrecompiledBn256Pairing (0.80s) + --- PASS: TestPrecompiledBn256Pairing/jeff1-Gas=260000 (0.03s) + --- PASS: TestPrecompiledBn256Pairing/jeff2-Gas=260000 (0.07s) + --- PASS: TestPrecompiledBn256Pairing/jeff3-Gas=260000 (0.04s) + --- PASS: TestPrecompiledBn256Pairing/jeff4-Gas=340000 (0.06s) + --- PASS: TestPrecompiledBn256Pairing/jeff5-Gas=340000 (0.06s) + --- PASS: TestPrecompiledBn256Pairing/jeff6-Gas=260000 (0.06s) + --- PASS: TestPrecompiledBn256Pairing/empty_data-Gas=100000 (0.00s) + --- PASS: TestPrecompiledBn256Pairing/one_point-Gas=180000 (0.05s) + --- PASS: TestPrecompiledBn256Pairing/two_point_match_2-Gas=260000 (0.03s) + --- PASS: TestPrecompiledBn256Pairing/two_point_match_3-Gas=260000 (0.03s) + --- PASS: TestPrecompiledBn256Pairing/two_point_match_4-Gas=260000 (0.04s) + --- PASS: TestPrecompiledBn256Pairing/ten_point_match_1-Gas=900000 (0.13s) + --- PASS: TestPrecompiledBn256Pairing/ten_point_match_2-Gas=900000 (0.15s) + --- PASS: TestPrecompiledBn256Pairing/ten_point_match_3-Gas=260000 (0.03s) +=== RUN TestMemoryGasCost +--- PASS: TestMemoryGasCost (0.00s) +=== RUN TestByteOp +--- PASS: TestByteOp (0.00s) +=== RUN TestStoreCapture +--- PASS: TestStoreCapture (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/core/vm 0.965s +=== RUN TestDefaults +--- PASS: TestDefaults (0.00s) +=== RUN TestEVM +--- PASS: TestEVM (0.00s) +=== RUN TestExecute +--- PASS: TestExecute (0.00s) +=== RUN TestCall +--- PASS: TestCall (0.00s) +=== RUN ExampleExecute +--- PASS: ExampleExecute (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/core/vm/runtime 0.048s +=== RUN TestKeccak256Hash +--- PASS: TestKeccak256Hash (0.00s) +=== RUN TestSign +--- PASS: TestSign (0.00s) +=== RUN TestInvalidSign +--- PASS: TestInvalidSign (0.00s) +=== RUN TestNewContractAddress +--- PASS: TestNewContractAddress (0.00s) +=== RUN TestLoadECDSAFile +--- PASS: TestLoadECDSAFile (0.00s) +=== RUN TestValidateSignatureValues +--- PASS: TestValidateSignatureValues (0.00s) +=== RUN TestPythonIntegration +--- PASS: TestPythonIntegration (0.01s) + crypto_test.go:216: msg: 41b1a0649752af1b28b3dc29a1556eee781e4a4c3a1f7f53f90fa834de098c4d, privkey: 289c2857d4598e37fb9647507e47a309d6133539bf21a8b9cb6df88fd5232032 sig: d155e94305af7e07dd8c32873e5c03cb95c9e05960ef85be9c07f671da58c73718c19adc397a211aa9e87e519e2038c5a3b658618db335f74f800b8e0cfeef4401 + crypto_test.go:217: msg: 00000000000000000000000000000000, privkey: 289c2857d4598e37fb9647507e47a309d6133539bf21a8b9cb6df88fd5232032 sig: d155e94305af7e07dd8c32873e5c03cb95c9e05960ef85be9c07f671da58c73718c19adc397a211aa9e87e519e2038c5a3b658618db335f74f800b8e0cfeef4401 +=== RUN TestRecoverSanity +--- PASS: TestRecoverSanity (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/crypto 0.065s +=== RUN TestGFp2Invert +--- PASS: TestGFp2Invert (0.00s) +=== RUN TestGFp6Invert +--- PASS: TestGFp6Invert (0.00s) +=== RUN TestGFp12Invert +--- PASS: TestGFp12Invert (0.00s) +=== RUN TestCurveImpl +--- PASS: TestCurveImpl (0.00s) +=== RUN TestOrderG1 +--- PASS: TestOrderG1 (0.00s) +=== RUN TestOrderG2 +--- PASS: TestOrderG2 (0.01s) +=== RUN TestOrderGT +--- PASS: TestOrderGT (0.04s) +=== RUN TestBilinearity +--- PASS: TestBilinearity (0.23s) +=== RUN TestG1Marshal +--- PASS: TestG1Marshal (0.01s) +=== RUN TestG2Marshal +--- PASS: TestG2Marshal (0.01s) +=== RUN TestG1Identity +--- PASS: TestG1Identity (0.00s) +=== RUN TestG2Identity +--- PASS: TestG2Identity (0.00s) +=== RUN TestTripartiteDiffieHellman +--- PASS: TestTripartiteDiffieHellman (0.18s) +=== RUN TestRandomG2Marshal +--- PASS: TestRandomG2Marshal (0.09s) + main_test.go:16: 12580706272457751544129128951639601231493143451545916396673423284625499706613: 2cf22a4dba9e8c5dd3e8f699334c4dddb765e7d05ec549e87a4fd4ca983d4ef017e5bfa2bab6d6159c7e7ae32e4e582ab446fcdd828dcd4e5b5b54d644d1dd9b2061b11933598c11f0d404478de91480b28245f5959c8b2fe1d88d86a70f1b0724eb43a8849a4d536c0894c46749e11764460aa49e64294526cc16ffa8a33524 + main_test.go:16: 6426351598360118257846986211439356604272438396349347866190556008030128987746: 1ec298c05736b4d34033e1e8f8cf53331f1d62eed6c261948d4a74abf754501b0437e5038130dd6b025c98123f5ff3ae54512024205e49cc334f4c51923aee2210d1dcd6f958eaa87e5c70d06605f79e1abdb090ae5c266587d0a553053b5b5b1531ff8b83fb8e2dea2b42253d34bc827ba3f9e0002bc3c3a5f22831787ebb46 + main_test.go:16: 9872723067676719678416529047274099611463913976541275560684169602605366928657: 21c50777a400d8a458a16b29a2e7382d8e7af704d7335d8b2e0a3cbf37218e9e02d55ca2790831533f51e46cffc22a75be06521dd6a6f9fc8f5a3c8d0715dd0715beabbaf209d46ba67256a28fe66da9d9ca2f8dbd8d957c06bbbdf366ad444b0ee20dcdb15f809c3abf8149274b6719ce6f7da7d29d19622a8291d253c47af1 + main_test.go:16: 3688912310583808332627490765551520563234952125921698335970191187388819300451: 006f5ad718f3f6a3ecfb0d3babe36164c2a75f97e82b22c43cc8546b8290980701a2e835da8fc6d65c53de548900366340bad0124b8ac49e57be18b230e8c283162d98d424e9d84e500079084eea0f71e3a3647c0d75d54af7a1ed335fcaf0b20d35ec210d5a996b3f1e820174fb9160a5cdf2e3be9e802a88f980b29e8efce0 + main_test.go:16: 21388179215331610585220176534045878365472372852773695065760836641531466518736: 0e07c8f4762a6685f288681de88f6da8cb074e8b7b32bc0c49a04480cbcdb8052d834758aed3262906783f2f90353961e4079ac3c32b78255717eaa14ff7e29e02d574c9c894b69552261275a4b2631b5ac05fa041098f0d2000cb23c746ad36160a4a19542c3c68c82345bfc57b32d891fee4fdb9700250439cab8c93e3a7f4 + main_test.go:16: 2558890201514165610506580692417333110543024302743512568805030939597256657271: 1761fcdf2ce6b3dad427a65803ce5725ba16e3a47fcc52b2114599184990b6d706acd2fe6e538f332d09cfb6f1fd6900200e6cce33817b8b741a56345235d511221b34c48eaa0e9fc804a648c50fbe62ef82d5968d5539616a5eeeb94a20f8901120f744f0f0ba3a92def7ba60d1fba6a3c06c1d701d00d8f9af8aa050858f37 + main_test.go:16: 1837986272687912133387120285697040910485555291415064089281489697526636072560: 055301407d0ac2fba01236031faa356ee380337bcb722007f76c69b99e65f4582df5f67a8d08f7cc262d08851a817aa530549fe7bcf429b70637169e620cfb6a00a81a098a91bf3c3d38784b3bc6180e7176198817d3b7d47e020cf89faaf77f0ef2318fe814f546621564bac9e59d756d50c9be22163244010298bbf2f8fcce + main_test.go:16: 3047454147950025259210327136513079366623617567123353895757198044705310899538: 082afd7ab30fc9a1202d338816a35e7f4d8b2f07df17a365019796d1d49123781058d849581a9800570b7fd02ef8d0aa911c2878bf465177fdfea0df5645d66710b7a99963b08d05b9248b13b96716ad1bf9fb1ee4376ee525d7304bca1d0ad80a004263cffab7aeb60e82cdc67e5381e54d6e9aa0ccf577fa0de3f9abc2f588 + main_test.go:16: 170566155203548152462866019603252638690682944781065161343862311463134598697: 2044abb19a4d37c2df3471666dcc8a205ac45516082f7a3c75fd3d9ca3df94690244e6324d033880c77407a280dfa433e40759d6e6654e75420129a2338e84e8142f75aae57a6b5a83e8716429f09d7687db0f27874f2cb0b92c03ec70c6264c0da272d1aadd3e83dfe8c33adef319fe0ec7a91de7281677dc91e0a3063362e2 + main_test.go:16: 19199843894772925361875857713334459711899746574502714773152862785111397400862: 0f0997becd7d49fd682af2f58b749e247c19288898b84c07cdc7fde710fdabdc23fbed609ff4fb259618c2c0db1a2a4da779da3d669544c4d1acb07e2baeefa722e544a0c88ce8edcfd2a8e668b183541ecfa1c1910dab309bf4c47c45ec96cc1b01ee04b7e7093dc2ce00243e0b97003201a31320ec7785a6ada27a14eb2018 +=== RUN TestPairings +--- PASS: TestPairings (0.28s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/crypto/bn256 0.857s +=== RUN TestKDF +--- PASS: TestKDF (0.00s) +=== RUN TestSharedKey +--- PASS: TestSharedKey (0.00s) +=== RUN TestSharedKeyPadding +--- PASS: TestSharedKeyPadding (0.00s) +=== RUN TestTooBigSharedKey +--- PASS: TestTooBigSharedKey (0.00s) +=== RUN TestEncryptDecrypt +--- PASS: TestEncryptDecrypt (0.00s) +=== RUN TestDecryptShared2 +--- PASS: TestDecryptShared2 (0.00s) +=== RUN TestParamSelection +--- PASS: TestParamSelection (0.01s) +=== RUN TestBasicKeyValidation +--- PASS: TestBasicKeyValidation (0.00s) +=== RUN TestBox +--- PASS: TestBox (0.00s) +=== RUN TestSharedKeyStatic +--- PASS: TestSharedKeyStatic (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/crypto/ecies 0.058s +? github.com/EthereumCommonwealth/go-callisto/crypto/randentropy [no test files] +=== RUN TestSignatureValidity +--- PASS: TestSignatureValidity (0.00s) +=== RUN TestInvalidRecoveryID +--- PASS: TestInvalidRecoveryID (0.00s) +=== RUN TestSignAndRecover +--- PASS: TestSignAndRecover (0.00s) +=== RUN TestSignDeterministic +--- PASS: TestSignDeterministic (0.00s) +=== RUN TestRandomMessagesWithSameKey +--- PASS: TestRandomMessagesWithSameKey (0.66s) +=== RUN TestRandomMessagesWithRandomKeys +--- PASS: TestRandomMessagesWithRandomKeys (1.10s) +=== RUN TestRecoveryOfRandomSignature +--- PASS: TestRecoveryOfRandomSignature (0.10s) +=== RUN TestRandomMessagesAgainstValidSig +--- PASS: TestRandomMessagesAgainstValidSig (0.39s) +=== RUN TestRecoverSanity +--- PASS: TestRecoverSanity (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/crypto/secp256k1 2.295s +=== RUN TestKeccakKats +--- PASS: TestKeccakKats (0.21s) +=== RUN TestUnalignedWrite +--- PASS: TestUnalignedWrite (0.02s) +=== RUN TestAppend +--- PASS: TestAppend (0.00s) +=== RUN TestAppendNoRealloc +--- PASS: TestAppendNoRealloc (0.00s) +=== RUN TestSqueezing +--- PASS: TestSqueezing (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/crypto/sha3 0.234s +? github.com/EthereumCommonwealth/go-callisto/dashboard [no test files] +=== RUN TestStorageRangeAt +--- PASS: TestStorageRangeAt (0.00s) +=== RUN TestProtocolCompatibility +--- PASS: TestProtocolCompatibility (0.00s) +=== RUN TestGetBlockHeaders62 +--- PASS: TestGetBlockHeaders62 (0.23s) +=== RUN TestGetBlockHeaders63 +--- PASS: TestGetBlockHeaders63 (0.21s) +=== RUN TestGetBlockBodies62 +--- PASS: TestGetBlockBodies62 (0.05s) +=== RUN TestGetBlockBodies63 +--- PASS: TestGetBlockBodies63 (0.06s) +=== RUN TestGetNodeData63 +--- PASS: TestGetNodeData63 (0.01s) +=== RUN TestGetReceipt63 +--- PASS: TestGetReceipt63 (0.01s) +=== RUN TestDAOChallengeNoVsNo +--- PASS: TestDAOChallengeNoVsNo (0.10s) +=== RUN TestDAOChallengeNoVsPro +--- PASS: TestDAOChallengeNoVsPro (0.10s) +=== RUN TestDAOChallengeProVsNo +--- PASS: TestDAOChallengeProVsNo (0.10s) +=== RUN TestDAOChallengeProVsPro +--- PASS: TestDAOChallengeProVsPro (0.10s) +=== RUN TestDAOChallengeNoVsTimeout +--- PASS: TestDAOChallengeNoVsTimeout (1.00s) +=== RUN TestDAOChallengeProVsTimeout +--- PASS: TestDAOChallengeProVsTimeout (1.00s) +=== RUN TestStatusMsgErrors62 +--- PASS: TestStatusMsgErrors62 (0.00s) +=== RUN TestStatusMsgErrors63 +--- PASS: TestStatusMsgErrors63 (0.00s) +=== RUN TestRecvTransactions62 +--- PASS: TestRecvTransactions62 (0.00s) +=== RUN TestRecvTransactions63 +--- PASS: TestRecvTransactions63 (0.00s) +=== RUN TestSendTransactions62 +--- PASS: TestSendTransactions62 (0.11s) +=== RUN TestSendTransactions63 +--- PASS: TestSendTransactions63 (0.15s) +=== RUN TestGetBlockHeadersDataEncodeDecode +--- PASS: TestGetBlockHeadersDataEncodeDecode (0.00s) +=== RUN TestFastSyncDisabling +--- PASS: TestFastSyncDisabling (0.94s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/eth 4.238s +=== RUN TestCanonicalSynchronisation62 +=== RUN TestCanonicalSynchronisation63Full +=== RUN TestCanonicalSynchronisation63Fast +=== RUN TestCanonicalSynchronisation64Full +=== RUN TestCanonicalSynchronisation64Fast +=== RUN TestCanonicalSynchronisation64Light +=== RUN TestThrottling62 +--- PASS: TestThrottling62 (4.76s) +=== RUN TestThrottling63Full +--- PASS: TestThrottling63Full (4.88s) +=== RUN TestThrottling63Fast +--- PASS: TestThrottling63Fast (5.82s) +=== RUN TestThrottling64Full +--- PASS: TestThrottling64Full (4.98s) +=== RUN TestThrottling64Fast +--- PASS: TestThrottling64Fast (4.99s) +=== RUN TestForkedSync62 +=== RUN TestForkedSync63Full +=== RUN TestForkedSync63Fast +=== RUN TestForkedSync64Full +=== RUN TestForkedSync64Fast +=== RUN TestForkedSync64Light +=== RUN TestHeavyForkedSync62 +=== RUN TestHeavyForkedSync63Full +=== RUN TestHeavyForkedSync63Fast +=== RUN TestHeavyForkedSync64Full +=== RUN TestHeavyForkedSync64Fast +=== RUN TestHeavyForkedSync64Light +=== RUN TestBoundedForkedSync62 +=== RUN TestBoundedForkedSync63Full +=== RUN TestBoundedForkedSync63Fast +=== RUN TestBoundedForkedSync64Full +=== RUN TestBoundedForkedSync64Fast +=== RUN TestBoundedForkedSync64Light +=== RUN TestBoundedHeavyForkedSync62 +=== RUN TestBoundedHeavyForkedSync63Full +=== RUN TestBoundedHeavyForkedSync63Fast +=== RUN TestBoundedHeavyForkedSync64Full +=== RUN TestBoundedHeavyForkedSync64Fast +=== RUN TestBoundedHeavyForkedSync64Light +=== RUN TestInactiveDownloader62 +=== RUN TestInactiveDownloader63 +=== RUN TestCancel62 +=== RUN TestCancel63Full +=== RUN TestCancel63Fast +=== RUN TestCancel64Full +=== RUN TestCancel64Fast +=== RUN TestCancel64Light +=== RUN TestMultiSynchronisation62 +=== RUN TestMultiSynchronisation63Full +=== RUN TestMultiSynchronisation63Fast +=== RUN TestMultiSynchronisation64Full +=== RUN TestMultiSynchronisation64Fast +=== RUN TestMultiSynchronisation64Light +=== RUN TestMultiProtoSynchronisation62 +=== RUN TestMultiProtoSynchronisation63Full +=== RUN TestMultiProtoSynchronisation63Fast +=== RUN TestMultiProtoSynchronisation64Full +=== RUN TestMultiProtoSynchronisation64Fast +=== RUN TestMultiProtoSynchronisation64Light +=== RUN TestEmptyShortCircuit62 +=== RUN TestEmptyShortCircuit63Full +=== RUN TestEmptyShortCircuit63Fast +=== RUN TestEmptyShortCircuit64Full +=== RUN TestEmptyShortCircuit64Fast +=== RUN TestEmptyShortCircuit64Light +=== RUN TestMissingHeaderAttack62 +=== RUN TestMissingHeaderAttack63Full +=== RUN TestMissingHeaderAttack63Fast +=== RUN TestMissingHeaderAttack64Full +=== RUN TestMissingHeaderAttack64Fast +=== RUN TestMissingHeaderAttack64Light +=== RUN TestShiftedHeaderAttack62 +--- PASS: TestShiftedHeaderAttack62 (0.81s) +=== RUN TestShiftedHeaderAttack63Full +--- PASS: TestShiftedHeaderAttack63Full (0.90s) +=== RUN TestShiftedHeaderAttack63Fast +--- PASS: TestShiftedHeaderAttack63Fast (0.95s) +=== RUN TestShiftedHeaderAttack64Full +--- PASS: TestShiftedHeaderAttack64Full (0.89s) +=== RUN TestShiftedHeaderAttack64Fast +--- PASS: TestShiftedHeaderAttack64Fast (0.90s) +=== RUN TestShiftedHeaderAttack64Light +--- PASS: TestShiftedHeaderAttack64Light (0.79s) +=== RUN TestInvalidHeaderRollback63Fast +--- PASS: TestInvalidHeaderRollback63Fast (4.91s) +=== RUN TestInvalidHeaderRollback64Fast +--- PASS: TestInvalidHeaderRollback64Fast (4.34s) +=== RUN TestInvalidHeaderRollback64Light +--- PASS: TestInvalidHeaderRollback64Light (3.62s) +=== RUN TestHighTDStarvationAttack62 +=== RUN TestHighTDStarvationAttack63Full +=== RUN TestHighTDStarvationAttack63Fast +=== RUN TestHighTDStarvationAttack64Full +=== RUN TestHighTDStarvationAttack64Fast +=== RUN TestHighTDStarvationAttack64Light +=== RUN TestBlockHeaderAttackerDropping62 +--- PASS: TestBlockHeaderAttackerDropping62 (0.00s) +=== RUN TestBlockHeaderAttackerDropping63 +--- PASS: TestBlockHeaderAttackerDropping63 (0.00s) +=== RUN TestBlockHeaderAttackerDropping64 +--- PASS: TestBlockHeaderAttackerDropping64 (0.00s) +=== RUN TestSyncProgress62 +=== RUN TestSyncProgress63Full +=== RUN TestSyncProgress63Fast +=== RUN TestSyncProgress64Full +=== RUN TestSyncProgress64Fast +=== RUN TestSyncProgress64Light +=== RUN TestForkedSyncProgress62 +=== RUN TestForkedSyncProgress63Full +=== RUN TestForkedSyncProgress63Fast +=== RUN TestForkedSyncProgress64Full +=== RUN TestForkedSyncProgress64Fast +=== RUN TestForkedSyncProgress64Light +=== RUN TestFailedSyncProgress62 +=== RUN TestFailedSyncProgress63Full +=== RUN TestFailedSyncProgress63Fast +=== RUN TestFailedSyncProgress64Full +=== RUN TestFailedSyncProgress64Fast +=== RUN TestFailedSyncProgress64Light +=== RUN TestFakedSyncProgress62 +=== RUN TestFakedSyncProgress63Full +=== RUN TestFakedSyncProgress63Fast +=== RUN TestFakedSyncProgress64Full +=== RUN TestFakedSyncProgress64Fast +=== RUN TestFakedSyncProgress64Light +=== RUN TestDeliverHeadersHang62 +=== RUN TestDeliverHeadersHang63Full +=== RUN TestDeliverHeadersHang63Fast +=== RUN TestDeliverHeadersHang64Full +=== RUN TestDeliverHeadersHang64Fast +=== RUN TestDeliverHeadersHang64Light +=== RUN TestFastCriticalRestartsFail63 +--- PASS: TestFastCriticalRestartsFail63 (5.75s) +=== RUN TestFastCriticalRestartsFail64 +--- PASS: TestFastCriticalRestartsFail64 (6.68s) +=== RUN TestFastCriticalRestartsCont63 +--- PASS: TestFastCriticalRestartsCont63 (6.73s) +=== RUN TestFastCriticalRestartsCont64 +--- PASS: TestFastCriticalRestartsCont64 (5.85s) +--- PASS: TestCanonicalSynchronisation62 (0.78s) +--- PASS: TestCancel64Light (0.14s) +--- PASS: TestCancel64Fast (0.13s) +--- PASS: TestCancel64Full (0.09s) +--- PASS: TestCancel63Fast (0.16s) +--- PASS: TestEmptyShortCircuit62 (1.36s) +--- PASS: TestCancel63Full (0.14s) +--- PASS: TestInactiveDownloader63 (0.00s) +--- PASS: TestInactiveDownloader62 (0.00s) +--- PASS: TestCancel62 (0.11s) +--- PASS: TestHeavyForkedSync63Full (1.67s) +--- PASS: TestHeavyForkedSync64Full (1.72s) +--- PASS: TestHeavyForkedSync64Fast (1.81s) +--- PASS: TestHeavyForkedSync63Fast (2.10s) +--- PASS: TestBoundedHeavyForkedSync63Full (5.65s) +--- PASS: TestBoundedForkedSync63Full (5.69s) +--- PASS: TestMultiSynchronisation62 (5.72s) +--- PASS: TestBoundedHeavyForkedSync64Light (5.78s) +--- PASS: TestBoundedHeavyForkedSync64Full (5.70s) +--- PASS: TestBoundedHeavyForkedSync64Fast (6.28s) +--- PASS: TestBoundedHeavyForkedSync63Fast (6.11s) +--- PASS: TestMultiProtoSynchronisation64Light (0.69s) +--- PASS: TestMultiProtoSynchronisation64Fast (0.69s) +--- PASS: TestHeavyForkedSync64Light (1.67s) +--- PASS: TestBoundedHeavyForkedSync62 (5.58s) +--- PASS: TestMultiProtoSynchronisation64Full (0.73s) +--- PASS: TestMultiProtoSynchronisation63Fast (0.82s) +--- PASS: TestMultiProtoSynchronisation63Full (0.78s) +--- PASS: TestBoundedForkedSync64Light (4.89s) +--- PASS: TestBoundedForkedSync64Full (4.94s) +--- PASS: TestMultiProtoSynchronisation62 (0.73s) +--- PASS: TestBoundedForkedSync64Fast (5.40s) +--- PASS: TestFakedSyncProgress64Light (0.97s) +--- PASS: TestFakedSyncProgress64Fast (1.07s) +--- PASS: TestFakedSyncProgress64Full (0.75s) +--- PASS: TestBoundedForkedSync62 (4.69s) +--- PASS: TestFakedSyncProgress63Fast (1.05s) +--- PASS: TestFakedSyncProgress63Full (0.86s) +--- PASS: TestBoundedForkedSync63Fast (5.52s) +--- PASS: TestFailedSyncProgress63Full (1.10s) +--- PASS: TestFailedSyncProgress62 (1.10s) +--- PASS: TestForkedSyncProgress63Fast (1.47s) +--- PASS: TestMultiSynchronisation64Light (5.46s) +--- PASS: TestForkedSyncProgress63Full (1.38s) +--- PASS: TestMultiSynchronisation64Full (6.13s) +--- PASS: TestMultiSynchronisation64Fast (6.86s) +--- PASS: TestFakedSyncProgress62 (0.94s) +--- PASS: TestDeliverHeadersHang62 (9.43s) +--- PASS: TestFailedSyncProgress64Light (1.54s) +--- PASS: TestDeliverHeadersHang64Light (7.92s) +--- PASS: TestDeliverHeadersHang63Full (10.46s) +--- PASS: TestHighTDStarvationAttack64Light (0.02s) +--- PASS: TestForkedSyncProgress62 (1.82s) +--- PASS: TestSyncProgress64Full (1.16s) +--- PASS: TestSyncProgress64Light (1.07s) +--- PASS: TestSyncProgress64Fast (1.10s) +--- PASS: TestSyncProgress63Fast (1.12s) +--- PASS: TestHighTDStarvationAttack63Full (0.03s) +--- PASS: TestSyncProgress63Full (1.03s) +--- PASS: TestFailedSyncProgress64Fast (1.22s) +--- PASS: TestHighTDStarvationAttack64Fast (0.01s) +--- PASS: TestHighTDStarvationAttack64Full (0.01s) +--- PASS: TestHighTDStarvationAttack62 (0.03s) +--- PASS: TestHighTDStarvationAttack63Fast (0.03s) +--- PASS: TestFailedSyncProgress64Full (1.05s) +--- PASS: TestSyncProgress62 (1.25s) +--- PASS: TestFailedSyncProgress63Fast (1.39s) +--- PASS: TestMissingHeaderAttack64Light (1.15s) +--- PASS: TestMissingHeaderAttack63Full (1.20s) +--- PASS: TestMissingHeaderAttack64Fast (1.33s) +--- PASS: TestMissingHeaderAttack64Full (1.05s) +--- PASS: TestDeliverHeadersHang64Fast (10.81s) +--- PASS: TestDeliverHeadersHang64Full (9.13s) +--- PASS: TestEmptyShortCircuit64Full (1.66s) +--- PASS: TestMissingHeaderAttack62 (1.04s) +--- PASS: TestEmptyShortCircuit64Fast (1.86s) +--- PASS: TestEmptyShortCircuit63Full (1.63s) +--- PASS: TestEmptyShortCircuit63Fast (1.89s) +--- PASS: TestDeliverHeadersHang63Fast (9.15s) +--- PASS: TestMissingHeaderAttack63Fast (1.08s) +--- PASS: TestEmptyShortCircuit64Light (1.37s) +--- PASS: TestForkedSync64Light (1.17s) +--- PASS: TestForkedSync64Full (1.20s) +--- PASS: TestForkedSync64Fast (1.35s) +--- PASS: TestForkedSync63Fast (1.20s) +--- PASS: TestCanonicalSynchronisation64Light (0.60s) +--- PASS: TestHeavyForkedSync62 (1.67s) +--- PASS: TestForkedSync63Full (0.99s) +--- PASS: TestForkedSync62 (1.03s) +--- PASS: TestCanonicalSynchronisation64Fast (0.70s) +--- PASS: TestCanonicalSynchronisation63Full (0.66s) +--- PASS: TestCanonicalSynchronisation64Full (0.73s) +--- PASS: TestCanonicalSynchronisation63Fast (0.70s) +--- PASS: TestForkedSyncProgress64Light (0.99s) +--- PASS: TestForkedSyncProgress64Full (0.99s) +--- PASS: TestForkedSyncProgress64Fast (1.10s) +--- PASS: TestMultiSynchronisation63Full (4.46s) +--- PASS: TestMultiSynchronisation63Fast (4.84s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/eth/downloader 100.466s +=== RUN TestSequentialAnnouncements62 +--- PASS: TestSequentialAnnouncements62 (0.66s) +=== RUN TestSequentialAnnouncements63 +--- PASS: TestSequentialAnnouncements63 (0.65s) +=== RUN TestSequentialAnnouncements64 +--- PASS: TestSequentialAnnouncements64 (0.64s) +=== RUN TestConcurrentAnnouncements62 +--- PASS: TestConcurrentAnnouncements62 (0.64s) +=== RUN TestConcurrentAnnouncements63 +--- PASS: TestConcurrentAnnouncements63 (0.64s) +=== RUN TestConcurrentAnnouncements64 +--- PASS: TestConcurrentAnnouncements64 (0.74s) +=== RUN TestOverlappingAnnouncements62 +--- PASS: TestOverlappingAnnouncements62 (0.65s) +=== RUN TestOverlappingAnnouncements63 +--- PASS: TestOverlappingAnnouncements63 (0.60s) +=== RUN TestOverlappingAnnouncements64 +--- PASS: TestOverlappingAnnouncements64 (0.62s) +=== RUN TestPendingDeduplication62 +--- PASS: TestPendingDeduplication62 (0.11s) +=== RUN TestPendingDeduplication63 +--- PASS: TestPendingDeduplication63 (0.11s) +=== RUN TestPendingDeduplication64 +--- PASS: TestPendingDeduplication64 (0.11s) +=== RUN TestRandomArrivalImport62 +--- PASS: TestRandomArrivalImport62 (0.11s) +=== RUN TestRandomArrivalImport63 +--- PASS: TestRandomArrivalImport63 (0.10s) +=== RUN TestRandomArrivalImport64 +--- PASS: TestRandomArrivalImport64 (0.10s) +=== RUN TestQueueGapFill62 +--- PASS: TestQueueGapFill62 (0.11s) +=== RUN TestQueueGapFill63 +--- PASS: TestQueueGapFill63 (0.10s) +=== RUN TestQueueGapFill64 +--- PASS: TestQueueGapFill64 (0.12s) +=== RUN TestImportDeduplication62 +--- PASS: TestImportDeduplication62 (0.05s) +=== RUN TestImportDeduplication63 +--- PASS: TestImportDeduplication63 (0.05s) +=== RUN TestImportDeduplication64 +--- PASS: TestImportDeduplication64 (0.05s) +=== RUN TestDistantPropagationDiscarding +--- PASS: TestDistantPropagationDiscarding (0.06s) +=== RUN TestDistantAnnouncementDiscarding62 +--- PASS: TestDistantAnnouncementDiscarding62 (0.14s) +=== RUN TestDistantAnnouncementDiscarding63 +--- PASS: TestDistantAnnouncementDiscarding63 (0.15s) +=== RUN TestDistantAnnouncementDiscarding64 +--- PASS: TestDistantAnnouncementDiscarding64 (0.17s) +=== RUN TestInvalidNumberAnnouncement62 +--- PASS: TestInvalidNumberAnnouncement62 (0.07s) +=== RUN TestInvalidNumberAnnouncement63 +--- PASS: TestInvalidNumberAnnouncement63 (0.07s) +=== RUN TestInvalidNumberAnnouncement64 +--- PASS: TestInvalidNumberAnnouncement64 (0.07s) +=== RUN TestEmptyBlockShortCircuit62 +--- PASS: TestEmptyBlockShortCircuit62 (0.27s) +=== RUN TestEmptyBlockShortCircuit63 +--- PASS: TestEmptyBlockShortCircuit63 (0.24s) +=== RUN TestEmptyBlockShortCircuit64 +--- PASS: TestEmptyBlockShortCircuit64 (0.24s) +=== RUN TestHashMemoryExhaustionAttack62 +--- PASS: TestHashMemoryExhaustionAttack62 (0.90s) +=== RUN TestHashMemoryExhaustionAttack63 +--- PASS: TestHashMemoryExhaustionAttack63 (0.88s) +=== RUN TestHashMemoryExhaustionAttack64 +--- PASS: TestHashMemoryExhaustionAttack64 (0.95s) +=== RUN TestBlockMemoryExhaustionAttack +--- PASS: TestBlockMemoryExhaustionAttack (0.60s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/eth/fetcher 11.816s +=== RUN TestUnmarshalJSONNewFilterArgs +--- PASS: TestUnmarshalJSONNewFilterArgs (0.00s) +=== RUN TestBlockSubscription +=== RUN TestPendingTxFilter +=== RUN TestLogFilterCreation +--- PASS: TestLogFilterCreation (0.00s) +=== RUN TestInvalidLogFilterCreation +=== RUN TestLogFilter +=== RUN TestPendingLogsSubscription +=== RUN TestFilters +--- PASS: TestFilters (0.29s) +--- PASS: TestInvalidLogFilterCreation (0.00s) +--- PASS: TestPendingLogsSubscription (1.00s) +--- PASS: TestBlockSubscription (1.00s) +--- PASS: TestLogFilter (1.10s) +--- PASS: TestPendingTxFilter (1.10s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/eth/filters 1.451s +? github.com/EthereumCommonwealth/go-callisto/eth/gasprice [no test files] +testing: warning: no tests to run +PASS +ok github.com/EthereumCommonwealth/go-callisto/ethclient 0.043s [no tests to run] +=== RUN TestLDB_PutGet +=== RUN TestMemoryDB_PutGet +=== RUN TestLDB_ParallelPutGet +--- PASS: TestLDB_ParallelPutGet (0.00s) +=== RUN TestMemoryDB_ParallelPutGet +--- PASS: TestMemoryDB_ParallelPutGet (0.00s) +--- PASS: TestMemoryDB_PutGet (0.00s) +--- PASS: TestLDB_PutGet (0.01s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/ethdb 0.033s +? github.com/EthereumCommonwealth/go-callisto/ethstats [no test files] +=== RUN TestSubCloseUnsub +--- PASS: TestSubCloseUnsub (0.00s) +=== RUN TestSub +--- PASS: TestSub (0.00s) +=== RUN TestMuxErrorAfterStop +--- PASS: TestMuxErrorAfterStop (0.00s) +=== RUN TestUnsubscribeUnblockPost +--- PASS: TestUnsubscribeUnblockPost (0.00s) +=== RUN TestSubscribeDuplicateType +--- PASS: TestSubscribeDuplicateType (0.00s) +=== RUN TestMuxConcurrent +--- PASS: TestMuxConcurrent (0.14s) +=== RUN TestFeedPanics +--- PASS: TestFeedPanics (0.00s) +=== RUN TestFeed +--- PASS: TestFeed (0.43s) +=== RUN TestFeedSubscribeSameChannel +--- PASS: TestFeedSubscribeSameChannel (0.00s) +=== RUN TestFeedSubscribeBlockedPost +--- PASS: TestFeedSubscribeBlockedPost (0.02s) +=== RUN TestFeedUnsubscribeBlockedPost +--- PASS: TestFeedUnsubscribeBlockedPost (0.09s) +=== RUN TestFeedUnsubscribeFromInbox +--- PASS: TestFeedUnsubscribeFromInbox (0.00s) +=== RUN TestNewSubscriptionError +=== RUN TestResubscribe +=== RUN TestResubscribeAbort +--- PASS: TestResubscribeAbort (0.00s) +--- PASS: TestNewSubscriptionError (0.00s) +--- PASS: TestResubscribe (0.37s) +=== RUN ExampleTypeMux +--- PASS: ExampleTypeMux (0.00s) +=== RUN ExampleFeed_acknowledgedEvents +--- PASS: ExampleFeed_acknowledgedEvents (0.00s) +=== RUN ExampleSubscriptionScope +--- PASS: ExampleSubscriptionScope (0.00s) +=== RUN ExampleNewSubscription +--- PASS: ExampleNewSubscription (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/event 1.062s +=== RUN TestFilters +--- PASS: TestFilters (0.10s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/event/filter 0.102s +? github.com/EthereumCommonwealth/go-callisto/internal/build [no test files] +? github.com/EthereumCommonwealth/go-callisto/internal/cmdtest [no test files] +? github.com/EthereumCommonwealth/go-callisto/internal/debug [no test files] +=== RUN TestTracing +--- PASS: TestTracing (0.00s) +=== RUN TestStack +--- PASS: TestStack (0.00s) +=== RUN TestOpcodes +--- PASS: TestOpcodes (0.00s) +=== RUN TestHalt +--- PASS: TestHalt (1.00s) +=== RUN TestHaltBetweenSteps +--- PASS: TestHaltBetweenSteps (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/internal/ethapi 1.069s +=== RUN TestAccountManagement +--- PASS: TestAccountManagement (15.40s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/internal/guide 15.467s +=== RUN TestCompleteKeywords +--- PASS: TestCompleteKeywords (0.00s) +=== RUN TestExec +--- PASS: TestExec (0.00s) +=== RUN TestNatto +--- PASS: TestNatto (0.10s) +=== RUN TestBind +--- PASS: TestBind (0.00s) +=== RUN TestLoadScript +--- PASS: TestLoadScript (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/internal/jsre 0.110s +? github.com/EthereumCommonwealth/go-callisto/internal/jsre/deps [no test files] +? github.com/EthereumCommonwealth/go-callisto/internal/web3ext [no test files] +=== RUN TestRequestDistributor +--- PASS: TestRequestDistributor (15.47s) +=== RUN TestRequestDistributorResend +--- PASS: TestRequestDistributorResend (19.47s) +=== RUN TestExecQueue +--- PASS: TestExecQueue (0.10s) +=== RUN TestGetBlockHeadersLes1 +--- PASS: TestGetBlockHeadersLes1 (0.23s) +=== RUN TestGetBlockHeadersLes2 +--- PASS: TestGetBlockHeadersLes2 (0.23s) +=== RUN TestGetBlockBodiesLes1 +--- PASS: TestGetBlockBodiesLes1 (0.07s) +=== RUN TestGetBlockBodiesLes2 +--- PASS: TestGetBlockBodiesLes2 (0.06s) +=== RUN TestGetCodeLes1 +--- PASS: TestGetCodeLes1 (0.01s) +=== RUN TestGetCodeLes2 +--- PASS: TestGetCodeLes2 (0.01s) +=== RUN TestGetReceiptLes1 +--- PASS: TestGetReceiptLes1 (0.02s) +=== RUN TestGetReceiptLes2 +--- PASS: TestGetReceiptLes2 (0.01s) +=== RUN TestGetProofsLes1 +--- PASS: TestGetProofsLes1 (0.01s) +=== RUN TestGetProofsLes2 +--- PASS: TestGetProofsLes2 (0.02s) +=== RUN TestTransactionStatusLes2 +--- PASS: TestTransactionStatusLes2 (0.21s) +=== RUN TestOdrGetBlockLes1 +--- PASS: TestOdrGetBlockLes1 (0.15s) +=== RUN TestOdrGetBlockLes2 +--- PASS: TestOdrGetBlockLes2 (0.14s) +=== RUN TestOdrGetReceiptsLes1 +--- PASS: TestOdrGetReceiptsLes1 (0.15s) +=== RUN TestOdrGetReceiptsLes2 +--- PASS: TestOdrGetReceiptsLes2 (0.15s) +=== RUN TestOdrAccountsLes1 +--- PASS: TestOdrAccountsLes1 (0.15s) +=== RUN TestOdrAccountsLes2 +--- PASS: TestOdrAccountsLes2 (0.16s) +=== RUN TestOdrContractCallLes1 +--- PASS: TestOdrContractCallLes1 (0.16s) +=== RUN TestOdrContractCallLes2 +--- PASS: TestOdrContractCallLes2 (0.17s) +=== RUN TestWeightedRandomSelect +--- PASS: TestWeightedRandomSelect (1.50s) +=== RUN TestBlockAccessLes1 +--- PASS: TestBlockAccessLes1 (0.14s) +=== RUN TestBlockAccessLes2 +--- PASS: TestBlockAccessLes2 (0.14s) +=== RUN TestReceiptsAccessLes1 +--- PASS: TestReceiptsAccessLes1 (0.14s) +=== RUN TestReceiptsAccessLes2 +--- PASS: TestReceiptsAccessLes2 (0.14s) +=== RUN TestTrieEntryAccessLes1 +--- PASS: TestTrieEntryAccessLes1 (0.14s) +=== RUN TestTrieEntryAccessLes2 +--- PASS: TestTrieEntryAccessLes2 (0.14s) +=== RUN TestCodeAccessLes1 +--- PASS: TestCodeAccessLes1 (0.14s) +=== RUN TestCodeAccessLes2 +--- PASS: TestCodeAccessLes2 (0.14s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/les 39.852s +? github.com/EthereumCommonwealth/go-callisto/les/flowcontrol [no test files] +=== RUN TestExtendCanonicalHeaders +--- PASS: TestExtendCanonicalHeaders (0.10s) +=== RUN TestShorterForkHeaders +--- PASS: TestShorterForkHeaders (0.13s) +=== RUN TestLongerForkHeaders +--- PASS: TestLongerForkHeaders (0.14s) +=== RUN TestEqualForkHeaders +--- PASS: TestEqualForkHeaders (0.14s) +=== RUN TestBrokenHeaderChain +--- PASS: TestBrokenHeaderChain (0.02s) +=== RUN TestReorgLongHeaders +--- PASS: TestReorgLongHeaders (0.02s) +=== RUN TestReorgShortHeaders +--- PASS: TestReorgShortHeaders (0.02s) +=== RUN TestBadHeaderHashes +--- PASS: TestBadHeaderHashes (0.00s) +=== RUN TestReorgBadHeaderHashes +--- PASS: TestReorgBadHeaderHashes (0.01s) +=== RUN TestOdrGetBlockLes1 +--- PASS: TestOdrGetBlockLes1 (0.02s) + odr_test.go:288: checking without ODR + odr_test.go:293: checking with ODR + odr_test.go:298: checking without ODR, should be cached +=== RUN TestOdrGetReceiptsLes1 +--- PASS: TestOdrGetReceiptsLes1 (0.03s) + odr_test.go:288: checking without ODR + odr_test.go:293: checking with ODR + odr_test.go:298: checking without ODR, should be cached +=== RUN TestOdrAccountsLes1 +--- PASS: TestOdrAccountsLes1 (0.03s) + odr_test.go:288: checking without ODR + odr_test.go:293: checking with ODR + odr_test.go:298: checking without ODR, should be cached +=== RUN TestOdrContractCallLes1 +--- PASS: TestOdrContractCallLes1 (0.03s) + odr_test.go:288: checking without ODR + odr_test.go:293: checking with ODR + odr_test.go:298: checking without ODR, should be cached +=== RUN TestNodeIterator +--- PASS: TestNodeIterator (0.01s) +=== RUN TestTxPool +--- PASS: TestTxPool (2.50s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/light 3.264s +? github.com/EthereumCommonwealth/go-callisto/log [no test files] +? github.com/EthereumCommonwealth/go-callisto/log/term [no test files] +? github.com/EthereumCommonwealth/go-callisto/metrics [no test files] +=== RUN TestUnconfirmedInsertBounds +--- PASS: TestUnconfirmedInsertBounds (0.00s) +=== RUN TestUnconfirmedShifts +--- PASS: TestUnconfirmedShifts (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/miner 0.054s +=== RUN TestAndroid +--- SKIP: TestAndroid (0.00s) + android_test.go:164: command gradle not found, skipping +PASS +ok github.com/EthereumCommonwealth/go-callisto/mobile 0.054s +=== RUN TestDatadirCreation +--- PASS: TestDatadirCreation (0.00s) +=== RUN TestIPCPathResolution +--- PASS: TestIPCPathResolution (0.00s) +=== RUN TestNodeKeyPersistency +--- PASS: TestNodeKeyPersistency (0.00s) +=== RUN TestNodeLifeCycle +--- PASS: TestNodeLifeCycle (0.01s) +=== RUN TestNodeUsedDataDir +--- PASS: TestNodeUsedDataDir (0.01s) +=== RUN TestServiceRegistry +--- PASS: TestServiceRegistry (0.00s) +=== RUN TestServiceLifeCycle +--- PASS: TestServiceLifeCycle (0.00s) +=== RUN TestServiceRestarts +--- PASS: TestServiceRestarts (0.01s) +=== RUN TestServiceConstructionAbortion +--- PASS: TestServiceConstructionAbortion (0.00s) +=== RUN TestServiceStartupAbortion +--- PASS: TestServiceStartupAbortion (0.49s) +=== RUN TestServiceTerminationGuarantee +--- PASS: TestServiceTerminationGuarantee (0.55s) +=== RUN TestServiceRetrieval +--- PASS: TestServiceRetrieval (0.01s) +=== RUN TestProtocolGather +--- PASS: TestProtocolGather (0.00s) +=== RUN TestAPIGather +--- PASS: TestAPIGather (0.00s) +=== RUN TestContextDatabases +--- PASS: TestContextDatabases (0.01s) +=== RUN TestContextServices +--- PASS: TestContextServices (0.01s) +=== RUN ExampleService +--- PASS: ExampleService (0.01s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/node 1.181s +=== RUN TestDialStateDynDial +--- PASS: TestDialStateDynDial (0.00s) +=== RUN TestDialStateDynDialBootnode +--- PASS: TestDialStateDynDialBootnode (0.00s) +=== RUN TestDialStateDynDialFromTable +--- PASS: TestDialStateDynDialFromTable (0.00s) +=== RUN TestDialStateNetRestrict +--- PASS: TestDialStateNetRestrict (0.00s) +=== RUN TestDialStateStaticDial +--- PASS: TestDialStateStaticDial (0.00s) +=== RUN TestDialStateCache +--- PASS: TestDialStateCache (0.00s) +=== RUN TestDialResolve +--- PASS: TestDialResolve (0.00s) +=== RUN TestMsgPipeUnblockWrite +--- PASS: TestMsgPipeUnblockWrite (0.00s) +=== RUN TestMsgPipeConcurrentClose +--- PASS: TestMsgPipeConcurrentClose (0.00s) +=== RUN TestEOFSignal +--- PASS: TestEOFSignal (0.00s) +=== RUN TestPeerProtoReadMsg +--- PASS: TestPeerProtoReadMsg (0.00s) +=== RUN TestPeerProtoEncodeMsg +--- PASS: TestPeerProtoEncodeMsg (0.00s) +=== RUN TestPeerPing +--- PASS: TestPeerPing (0.00s) +=== RUN TestPeerDisconnect +--- PASS: TestPeerDisconnect (0.00s) +=== RUN TestPeerDisconnectRace +--- PASS: TestPeerDisconnectRace (0.11s) +=== RUN TestNewPeer +--- PASS: TestNewPeer (0.00s) +=== RUN TestMatchProtocols +--- PASS: TestMatchProtocols (0.01s) +=== RUN TestSharedSecret +--- PASS: TestSharedSecret (0.00s) + rlpx_test.go:55: Secret: + 32 d9ed03c4ce9d674b9054460931219ebc5c50342967de9917ff53ad3b64665754 + 32 d9ed03c4ce9d674b9054460931219ebc5c50342967de9917ff53ad3b64665754 +=== RUN TestEncHandshake +--- PASS: TestEncHandshake (0.14s) + rlpx_test.go:67: (without token) 1 6.179371ms + rlpx_test.go:67: (without token) 2 6.168388ms + rlpx_test.go:67: (without token) 3 12.922267ms + rlpx_test.go:67: (without token) 4 6.269467ms + rlpx_test.go:67: (without token) 5 6.147042ms + rlpx_test.go:67: (without token) 6 6.414154ms + rlpx_test.go:67: (without token) 7 6.231609ms + rlpx_test.go:67: (without token) 8 6.351132ms + rlpx_test.go:67: (without token) 9 6.381641ms + rlpx_test.go:67: (without token) 10 6.21872ms + rlpx_test.go:76: (with token) 1 6.060583ms + rlpx_test.go:76: (with token) 2 6.337387ms + rlpx_test.go:76: (with token) 3 6.268818ms + rlpx_test.go:76: (with token) 4 6.359423ms + rlpx_test.go:76: (with token) 5 9.510746ms + rlpx_test.go:76: (with token) 6 9.419367ms + rlpx_test.go:76: (with token) 7 6.501108ms + rlpx_test.go:76: (with token) 8 10.215485ms + rlpx_test.go:76: (with token) 9 6.16229ms + rlpx_test.go:76: (with token) 10 6.122744ms +=== RUN TestProtocolHandshake +--- PASS: TestProtocolHandshake (0.01s) +=== RUN TestProtocolHandshakeErrors +--- PASS: TestProtocolHandshakeErrors (0.00s) +=== RUN TestRLPXFrameFake +--- PASS: TestRLPXFrameFake (0.00s) +=== RUN TestRLPXFrameRW +--- PASS: TestRLPXFrameRW (0.00s) +=== RUN TestHandshakeForwardCompatibility +--- PASS: TestHandshakeForwardCompatibility (0.01s) +=== RUN TestServerListen +--- PASS: TestServerListen (0.02s) +=== RUN TestServerDial +--- PASS: TestServerDial (0.01s) +=== RUN TestServerTaskScheduling +--- PASS: TestServerTaskScheduling (0.00s) +=== RUN TestServerManyTasks +--- PASS: TestServerManyTasks (0.00s) +=== RUN TestServerAtCap +--- PASS: TestServerAtCap (0.01s) +=== RUN TestServerSetupConn +--- PASS: TestServerSetupConn (0.03s) +=== RUN ExampleMsgPipe +--- PASS: ExampleMsgPipe (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/p2p 0.401s +=== RUN TestNodeDBKeys +--- PASS: TestNodeDBKeys (0.00s) +=== RUN TestNodeDBInt64 +--- PASS: TestNodeDBInt64 (0.00s) +=== RUN TestNodeDBFetchStore +--- PASS: TestNodeDBFetchStore (0.00s) +=== RUN TestNodeDBSeedQuery +--- PASS: TestNodeDBSeedQuery (0.02s) +=== RUN TestNodeDBPersistency +--- PASS: TestNodeDBPersistency (0.02s) +=== RUN TestNodeDBExpiration +--- PASS: TestNodeDBExpiration (0.00s) +=== RUN TestNodeDBSelfExpiration +--- PASS: TestNodeDBSelfExpiration (0.00s) +=== RUN TestParseNode +--- PASS: TestParseNode (0.00s) +=== RUN TestNodeString +--- PASS: TestNodeString (0.00s) +=== RUN TestHexID +--- PASS: TestHexID (0.00s) +=== RUN TestNodeID_textEncoding +--- PASS: TestNodeID_textEncoding (0.00s) +=== RUN TestNodeID_recover +--- PASS: TestNodeID_recover (0.00s) +=== RUN TestNodeID_pubkeyBad +--- PASS: TestNodeID_pubkeyBad (0.00s) +=== RUN TestNodeID_distcmp +--- PASS: TestNodeID_distcmp (0.03s) +=== RUN TestNodeID_distcmpEqual +--- PASS: TestNodeID_distcmpEqual (0.00s) +=== RUN TestNodeID_logdist +--- PASS: TestNodeID_logdist (0.02s) +=== RUN TestNodeID_logdistEqual +--- PASS: TestNodeID_logdistEqual (0.00s) +=== RUN TestNodeID_hashAtDistance +--- PASS: TestNodeID_hashAtDistance (0.01s) +=== RUN TestTable_pingReplace +--- PASS: TestTable_pingReplace (0.02s) +=== RUN TestBucket_bumpNoDuplicates +=== RUN TestTable_closest +=== RUN TestTable_ReadRandomNodesGetAll +--- PASS: TestTable_ReadRandomNodesGetAll (1.34s) +=== RUN TestTable_Lookup +--- PASS: TestTable_Lookup (0.03s) + table_test.go:295: results: + table_test.go:297: ld=246, 5cbc39716171e253df9a5021765d4414a814f9b57b2cff1106807cd8aa1d83c7 + table_test.go:297: ld=246, 5cbe2080c94f83311437f55676252320c4126e0643f14728cdb5436791c689ef + table_test.go:297: ld=246, 5caab00e8273a3f5265384e66859416694f9633d27e114b40b278a5d85168aa2 + table_test.go:297: ld=247, 5cd2ae61ed768220b90f62fc33b3f146bba4d522d4b7a283ab85b66fc8feebbb + table_test.go:297: ld=247, 5cd3371c3623a6328f677ee5adc24e76835c132151fc49d14ad11e1fe2ac611a + table_test.go:297: ld=247, 5cc025e8688ca824501f4af4ac94ba7c2de3f8c8ff7de6ab43407cd75eadac25 + table_test.go:297: ld=247, 5cf8248c4a67601d8a4aa17c0d01ec93a98826c4f09a341a8677f9669b6f49b9 + table_test.go:297: ld=247, 5cf88501f1ee7cca638e957296bc6ba5afe6d556f3bc79866f0dbca984c955cd + table_test.go:297: ld=247, 5ce5132c8f1fff0ef38a84dfd059f978b2d6514aa2e12a5f1698104e3b35d541 + table_test.go:297: ld=247, 5ce68c5cc2d7f4daffdc927f5781e3973c0683e7046c20b435aea0679a274bb9 + table_test.go:297: ld=247, 5ce249c20408feb354012496a15dcb35a4619d41e00ad3ce5d6173a195bae532 + table_test.go:297: ld=247, 5cef1e87ea01f8aa40147f643795b3271a24d4d3dd66f76b79dad23a9c894cea + table_test.go:297: ld=247, 5cef124df5c23298f610eafa878d55d00fa4bade89812a21e435421cc6d7c780 + table_test.go:297: ld=248, 5c1646ffb4c9daf49fde58e4b35780e921cd2d5078f7ef55927ff0238b175aa5 + table_test.go:297: ld=248, 5c181d747de5905ede2e6c2b8068519f95b97efd7da37eedc83b531367b0d78c + table_test.go:297: ld=248, 5c0be64be73fc2aab7f418fca455f1b703aba3c2c1c404460f1af31c3686c176 +=== RUN TestUDP_packetErrors +--- PASS: TestUDP_packetErrors (0.01s) +=== RUN TestUDP_pingTimeout +=== RUN TestUDP_responseTimeouts +=== RUN TestUDP_findnodeTimeout +=== RUN TestUDP_findnode +--- PASS: TestUDP_findnode (0.01s) +=== RUN TestUDP_findnodeMultiReply +--- PASS: TestUDP_findnodeMultiReply (0.51s) +=== RUN TestUDP_successfulPing +--- PASS: TestUDP_successfulPing (0.00s) +=== RUN TestForwardCompatibility +--- PASS: TestForwardCompatibility (0.00s) +--- PASS: TestBucket_bumpNoDuplicates (0.33s) +--- PASS: TestUDP_findnodeTimeout (0.53s) +--- PASS: TestUDP_pingTimeout (0.53s) +--- PASS: TestUDP_responseTimeouts (4.04s) +--- PASS: TestTable_closest (16.47s) +=== RUN ExampleNewNode +--- PASS: ExampleNewNode (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/p2p/discover 18.595s +=== RUN TestNodeDBKeys +--- PASS: TestNodeDBKeys (0.00s) +=== RUN TestNodeDBInt64 +--- PASS: TestNodeDBInt64 (0.00s) +=== RUN TestNodeDBFetchStore +--- PASS: TestNodeDBFetchStore (0.00s) +=== RUN TestNodeDBSeedQuery +--- PASS: TestNodeDBSeedQuery (0.01s) +=== RUN TestNodeDBPersistency +--- PASS: TestNodeDBPersistency (0.03s) +=== RUN TestNodeDBExpiration +--- PASS: TestNodeDBExpiration (0.01s) +=== RUN TestNodeDBSelfExpiration +--- PASS: TestNodeDBSelfExpiration (0.00s) +=== RUN TestNetwork_Lookup +--- PASS: TestNetwork_Lookup (6.02s) + net_test.go:50: results: + net_test.go:52: ld=250, 5e96912eacf9483a8eed0b6a27e20392a0e319f87b1a3243336c6c9054244915 + net_test.go:52: ld=250, 5e99ea3a94c10e53d5dd40d260fb8bf36fd584c5784ac319b27ffb0496613a89 + net_test.go:52: ld=250, 5ed03cff8bb0fa3554e5e32dccffddb4c54b9d03c4f6d59fb02072edf95b3a8f + net_test.go:52: ld=250, 5e3eff7213cd44bd4389c3f86b4e60b7f3cf2ef309a204c0152acde1f3cd8706 + net_test.go:52: ld=250, 5e66c72e072dc03d384ac987aa3f0e95531af4d7eff004ae3443ffcaa34e5c6f + net_test.go:52: ld=250, 5e6cc083da6f9442deadc1f4cb819bbb43b6317c9769293f04322a7d284fa291 + net_test.go:52: ld=250, 5f8ff13db91e17e4b52a61496ab6b69c90b90de1b5d59e3f2ae49513716d20f6 + net_test.go:52: ld=250, 5fb1c507a1680ce8e8c97cf42dbbb269913c77a7225ec78275282827ffe8d5f9 + net_test.go:52: ld=250, 5fb87253029551e50abacde06997a476314a542ad179bdad68a4ed1d09aba598 + net_test.go:52: ld=250, 5ffb218e71724a836ff9d00c3377b5b4828269dd55e26cb730a6254c09949f1c + net_test.go:52: ld=250, 5feba2cb0b5ec523b692838987ed57643b59865834d6c64c594b41f1d1a01464 + net_test.go:52: ld=250, 5f0375ba2bdafb8b467c650aa82116bd3a6508adf49e3ff6ad48cffc52ec8643 + net_test.go:52: ld=250, 5f365f1667d34afb69eb64043ddf0e662a6a586dbc262979a4c1c30e595eb340 + net_test.go:52: ld=250, 5f39be62460bd0641a681f196d21c77cd2db3518942eb65ecb2e17e7c4d5eb93 + net_test.go:52: ld=250, 5f2ecabbe0f5c158e442aec8109b8265726ae6bfa148b29c2bb94a3a404f3a79 + net_test.go:52: ld=250, 5f4e5717cf7163cfd38766dcc312e9748a5948def60543e5c860f00b8779d390 +=== RUN TestParseNode +--- PASS: TestParseNode (0.00s) +=== RUN TestNodeString +--- PASS: TestNodeString (0.00s) +=== RUN TestHexID +--- PASS: TestHexID (0.00s) +=== RUN TestNodeID_recover +--- PASS: TestNodeID_recover (0.00s) +=== RUN TestNodeID_pubkeyBad +--- PASS: TestNodeID_pubkeyBad (0.00s) +=== RUN TestNodeID_distcmp +--- PASS: TestNodeID_distcmp (0.04s) +=== RUN TestNodeID_distcmpEqual +--- PASS: TestNodeID_distcmpEqual (0.00s) +=== RUN TestNodeID_logdist +--- PASS: TestNodeID_logdist (0.02s) +=== RUN TestNodeID_logdistEqual +--- PASS: TestNodeID_logdistEqual (0.00s) +=== RUN TestNodeID_hashAtDistance +--- PASS: TestNodeID_hashAtDistance (0.01s) +=== RUN TestSimRandomResolve +--- SKIP: TestSimRandomResolve (0.00s) + sim_test.go:36: boring +=== RUN TestSimTopics +--- SKIP: TestSimTopics (0.00s) + sim_test.go:64: NaCl test +=== RUN TestSimTopicHierarchy +--- SKIP: TestSimTopicHierarchy (0.00s) + sim_test.go:153: NaCl test +=== RUN TestBucket_bumpNoDuplicates +=== RUN TestTable_closest +=== RUN TestTable_ReadRandomNodesGetAll +--- PASS: TestTable_ReadRandomNodesGetAll (0.33s) +=== RUN TestTopicRadius +--- PASS: TestTopicRadius (0.00s) +=== RUN TestForwardCompatibility +--- SKIP: TestForwardCompatibility (0.00s) + udp_test.go:369: skipped while working on discovery v5 +--- PASS: TestBucket_bumpNoDuplicates (0.28s) +--- PASS: TestTable_closest (0.69s) +=== RUN ExampleNewNode +--- PASS: ExampleNewNode (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/p2p/discv5 7.241s +=== RUN TestAutoDiscRace +--- PASS: TestAutoDiscRace (0.50s) +=== RUN TestUPNP_DDWRT +2017/11/30 23:28:54 ssdp: got unexpected search target result "urn:schemas-upnp-org:device:WANConnectionDevice:1" +2017/11/30 23:28:54 ssdp: got unexpected search target result "urn:schemas-upnp-org:device:WANConnectionDevice:1" +2017/11/30 23:28:54 ssdp: got unexpected search target result "urn:schemas-upnp-org:device:WANConnectionDevice:1" +--- PASS: TestUPNP_DDWRT (2.11s) + natupnp_test.go:199: HTTPU request M-SEARCH * + natupnp_test.go:199: HTTPU request M-SEARCH * + natupnp_test.go:199: HTTPU request M-SEARCH * + natupnp_test.go:199: HTTPU request M-SEARCH * + natupnp_test.go:199: HTTPU request M-SEARCH * + natupnp_test.go:199: HTTPU request M-SEARCH * + natupnp_test.go:212: HTTP request "GET /InternetGatewayDevice.xml" --> 200 + natupnp_test.go:212: HTTP request "POST /control?WANIPConnection" --> 200 +PASS +ok github.com/EthereumCommonwealth/go-callisto/p2p/nat 2.612s +=== RUN TestIsPacketTooBig +--- PASS: TestIsPacketTooBig (0.00s) +=== RUN TestParseNetlist +--- PASS: TestParseNetlist (0.00s) +=== RUN TestNilNetListContains +--- PASS: TestNilNetListContains (0.00s) +=== RUN TestIsLAN +--- PASS: TestIsLAN (0.00s) +=== RUN TestIsSpecialNetwork +--- PASS: TestIsSpecialNetwork (0.00s) +=== RUN TestCheckRelayIP +--- PASS: TestCheckRelayIP (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/p2p/netutil 0.015s +=== RUN TestHTTPNetwork +--- PASS: TestHTTPNetwork (0.02s) + http_test.go:472: received node event: id: d5b21154e31a07d9 up: false + http_test.go:472: received node event: id: 3cc867027f410657 up: false + http_test.go:472: received node event: id: d5b21154e31a07d9 up: true + http_test.go:472: received node event: id: 3cc867027f410657 up: true + http_test.go:472: received conn event: nodes: d5b21154e31a07d9->3cc867027f410657 up: false + http_test.go:472: received conn event: nodes: d5b21154e31a07d9->3cc867027f410657 up: true + http_test.go:472: received node event: id: d5b21154e31a07d9 up: true + http_test.go:472: received node event: id: 3cc867027f410657 up: true + http_test.go:472: received conn event: nodes: d5b21154e31a07d9->3cc867027f410657 up: true +=== RUN TestHTTPNodeRPC +--- PASS: TestHTTPNodeRPC (0.00s) +=== RUN TestHTTPSnapshot +--- PASS: TestHTTPSnapshot (0.03s) + http_test.go:472: received node event: id: e3f82240bc61542c up: false + http_test.go:472: received node event: id: e3f82240bc61542c up: true + http_test.go:472: received node event: id: 39139bfddf4e02ae up: false + http_test.go:472: received node event: id: 39139bfddf4e02ae up: true + http_test.go:472: received conn event: nodes: e3f82240bc61542c->39139bfddf4e02ae up: false + http_test.go:472: received conn event: nodes: e3f82240bc61542c->39139bfddf4e02ae up: true +=== RUN TestMsgFilterPassMultiple +--- PASS: TestMsgFilterPassMultiple (0.03s) + http_test.go:437: received node event: id: 77a9830866457c0e up: false + http_test.go:437: received node event: id: 163559e4fd44c05f up: false + http_test.go:437: received node event: id: 77a9830866457c0e up: true + http_test.go:437: received node event: id: 163559e4fd44c05f up: true + http_test.go:437: received conn event: nodes: 77a9830866457c0e->163559e4fd44c05f up: false + http_test.go:437: received conn event: nodes: 77a9830866457c0e->163559e4fd44c05f up: true + http_test.go:437: received msg event: nodes: 163559e4fd44c05f->77a9830866457c0e proto: test, code: 0, received: false + http_test.go:437: received msg event: nodes: 163559e4fd44c05f->77a9830866457c0e proto: test, code: 0, received: true + http_test.go:437: received msg event: nodes: 77a9830866457c0e->163559e4fd44c05f proto: test, code: 0, received: true + http_test.go:437: received msg event: nodes: 77a9830866457c0e->163559e4fd44c05f proto: test, code: 0, received: false + http_test.go:437: received msg event: nodes: 163559e4fd44c05f->77a9830866457c0e proto: prb, code: 0, received: false + http_test.go:437: received msg event: nodes: 163559e4fd44c05f->77a9830866457c0e proto: prb, code: 0, received: true + http_test.go:437: received msg event: nodes: 77a9830866457c0e->163559e4fd44c05f proto: prb, code: 0, received: false +=== RUN TestMsgFilterPassWildcard +--- PASS: TestMsgFilterPassWildcard (0.02s) + http_test.go:437: received node event: id: 9447caca6ec29317 up: false + http_test.go:437: received node event: id: fbd7f803cdc1f86d up: false + http_test.go:437: received node event: id: 9447caca6ec29317 up: true + http_test.go:437: received node event: id: fbd7f803cdc1f86d up: true + http_test.go:437: received conn event: nodes: 9447caca6ec29317->fbd7f803cdc1f86d up: false + http_test.go:437: received conn event: nodes: 9447caca6ec29317->fbd7f803cdc1f86d up: true + http_test.go:437: received msg event: nodes: 9447caca6ec29317->fbd7f803cdc1f86d proto: test, code: 2, received: true + http_test.go:437: received msg event: nodes: fbd7f803cdc1f86d->9447caca6ec29317 proto: test, code: 2, received: true + http_test.go:437: received msg event: nodes: 9447caca6ec29317->fbd7f803cdc1f86d proto: test, code: 2, received: false + http_test.go:437: received msg event: nodes: fbd7f803cdc1f86d->9447caca6ec29317 proto: test, code: 2, received: false + http_test.go:437: received msg event: nodes: fbd7f803cdc1f86d->9447caca6ec29317 proto: test, code: 1, received: false + http_test.go:437: received msg event: nodes: fbd7f803cdc1f86d->9447caca6ec29317 proto: test, code: 1, received: true + http_test.go:437: received msg event: nodes: 9447caca6ec29317->fbd7f803cdc1f86d proto: test, code: 1, received: true + http_test.go:437: received msg event: nodes: fbd7f803cdc1f86d->9447caca6ec29317 proto: test, code: 0, received: false + http_test.go:437: received msg event: nodes: 9447caca6ec29317->fbd7f803cdc1f86d proto: test, code: 1, received: false + http_test.go:437: received msg event: nodes: fbd7f803cdc1f86d->9447caca6ec29317 proto: test, code: 0, received: true + http_test.go:437: received msg event: nodes: 9447caca6ec29317->fbd7f803cdc1f86d proto: test, code: 0, received: true + http_test.go:437: received msg event: nodes: 9447caca6ec29317->fbd7f803cdc1f86d proto: test, code: 0, received: false + http_test.go:437: received msg event: nodes: fbd7f803cdc1f86d->9447caca6ec29317 proto: prb, code: 0, received: false + http_test.go:437: received msg event: nodes: fbd7f803cdc1f86d->9447caca6ec29317 proto: prb, code: 0, received: true + http_test.go:437: received msg event: nodes: 9447caca6ec29317->fbd7f803cdc1f86d proto: prb, code: 0, received: true + http_test.go:437: received msg event: nodes: 9447caca6ec29317->fbd7f803cdc1f86d proto: prb, code: 0, received: false +=== RUN TestMsgFilterPassSingle +--- PASS: TestMsgFilterPassSingle (0.02s) + http_test.go:437: received node event: id: f94ebcc644fd8fd6 up: false + http_test.go:437: received node event: id: 05efb2d698ac131b up: false + http_test.go:437: received node event: id: f94ebcc644fd8fd6 up: true + http_test.go:437: received node event: id: 05efb2d698ac131b up: true + http_test.go:437: received conn event: nodes: f94ebcc644fd8fd6->05efb2d698ac131b up: false + http_test.go:437: received conn event: nodes: f94ebcc644fd8fd6->05efb2d698ac131b up: true + http_test.go:437: received msg event: nodes: 05efb2d698ac131b->f94ebcc644fd8fd6 proto: dum, code: 0, received: false + http_test.go:437: received msg event: nodes: 05efb2d698ac131b->f94ebcc644fd8fd6 proto: dum, code: 0, received: true + http_test.go:437: received msg event: nodes: f94ebcc644fd8fd6->05efb2d698ac131b proto: dum, code: 0, received: true + http_test.go:437: received msg event: nodes: f94ebcc644fd8fd6->05efb2d698ac131b proto: dum, code: 0, received: false +=== RUN TestMsgFilterFailBadParams +--- PASS: TestMsgFilterFailBadParams (0.00s) +=== RUN TestNetworkSimulation +--- PASS: TestNetworkSimulation (0.13s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/p2p/simulations 0.300s +? github.com/EthereumCommonwealth/go-callisto/p2p/simulations/adapters [no test files] +? github.com/EthereumCommonwealth/go-callisto/p2p/simulations/examples [no test files] +=== RUN TestCheckCompatible +--- PASS: TestCheckCompatible (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/params 0.003s +=== RUN TestStreamKind +--- PASS: TestStreamKind (0.00s) +=== RUN TestNewListStream +--- PASS: TestNewListStream (0.00s) +=== RUN TestStreamErrors +--- PASS: TestStreamErrors (0.00s) +=== RUN TestStreamList +--- PASS: TestStreamList (0.00s) +=== RUN TestStreamRaw +--- PASS: TestStreamRaw (0.00s) +=== RUN TestDecodeErrors +--- PASS: TestDecodeErrors (0.00s) +=== RUN TestDecodeWithByteReader +--- PASS: TestDecodeWithByteReader (0.00s) +=== RUN TestDecodeWithNonByteReader +--- PASS: TestDecodeWithNonByteReader (0.00s) +=== RUN TestDecodeStreamReset +--- PASS: TestDecodeStreamReset (0.00s) +=== RUN TestDecodeDecoder +--- PASS: TestDecodeDecoder (0.00s) +=== RUN TestDecoderInByteSlice +--- PASS: TestDecoderInByteSlice (0.00s) +=== RUN TestEncode +--- PASS: TestEncode (0.00s) +=== RUN TestEncodeToBytes +--- PASS: TestEncodeToBytes (0.00s) +=== RUN TestEncodeToReader +--- PASS: TestEncodeToReader (0.00s) +=== RUN TestEncodeToReaderPiecewise +--- PASS: TestEncodeToReaderPiecewise (0.00s) +=== RUN TestEncodeToReaderReturnToPool +--- PASS: TestEncodeToReaderReturnToPool (0.01s) +=== RUN TestCountValues +--- PASS: TestCountValues (0.00s) +=== RUN TestSplitTypes +--- PASS: TestSplitTypes (0.00s) +=== RUN TestSplit +--- PASS: TestSplit (0.00s) +=== RUN TestReadSize +--- PASS: TestReadSize (0.00s) +=== RUN ExampleDecode_structTagTail +--- PASS: ExampleDecode_structTagTail (0.00s) +=== RUN ExampleDecode +--- PASS: ExampleDecode (0.00s) +=== RUN ExampleDecode_structTagNil +--- PASS: ExampleDecode_structTagNil (0.00s) +=== RUN ExampleStream +--- PASS: ExampleStream (0.00s) +=== RUN ExampleEncoder +--- PASS: ExampleEncoder (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/rlp 0.018s +=== RUN TestClientRequest +--- PASS: TestClientRequest (0.00s) +=== RUN TestClientBatchRequest +--- PASS: TestClientBatchRequest (0.00s) +=== RUN TestClientCancelWebsocket +=== RUN TestClientCancelHTTP +=== RUN TestClientCancelIPC +=== RUN TestClientSubscribeInvalidArg +--- PASS: TestClientSubscribeInvalidArg (0.00s) +=== RUN TestClientSubscribe +--- PASS: TestClientSubscribe (5.00s) +=== RUN TestClientSubscribeCustomNamespace +--- PASS: TestClientSubscribeCustomNamespace (5.00s) +=== RUN TestClientSubscribeClose +--- PASS: TestClientSubscribeClose (0.00s) +=== RUN TestClientNotificationStorm +--- PASS: TestClientNotificationStorm (10.99s) +=== RUN TestClientHTTP +--- PASS: TestClientHTTP (0.05s) +=== RUN TestClientReconnect +--- PASS: TestClientReconnect (2.00s) + client_test.go:482: err: +=== RUN TestHTTPErrorResponseWithDelete +--- PASS: TestHTTPErrorResponseWithDelete (0.00s) +=== RUN TestHTTPErrorResponseWithPut +--- PASS: TestHTTPErrorResponseWithPut (0.00s) +=== RUN TestHTTPErrorResponseWithMaxContentLength +--- PASS: TestHTTPErrorResponseWithMaxContentLength (0.00s) +=== RUN TestHTTPErrorResponseWithEmptyContentType +--- PASS: TestHTTPErrorResponseWithEmptyContentType (0.00s) +=== RUN TestHTTPErrorResponseWithValidRequest +--- PASS: TestHTTPErrorResponseWithValidRequest (0.00s) +=== RUN TestJSONRequestParsing +--- PASS: TestJSONRequestParsing (0.00s) +=== RUN TestJSONRequestParamsParsing +--- PASS: TestJSONRequestParamsParsing (0.00s) +=== RUN TestServerRegisterName +--- PASS: TestServerRegisterName (0.00s) +=== RUN TestServerMethodExecution +--- PASS: TestServerMethodExecution (0.00s) +=== RUN TestServerMethodWithCtx +--- PASS: TestServerMethodWithCtx (0.00s) +=== RUN TestNotifications +--- PASS: TestNotifications (6.00s) +=== RUN TestSubscriptionMultipleNamespaces +--- PASS: TestSubscriptionMultipleNamespaces (30.00s) +=== RUN TestBlockNumberJSONUnmarshal +--- PASS: TestBlockNumberJSONUnmarshal (0.00s) +=== RUN TestNewID +--- PASS: TestNewID (0.00s) +--- PASS: TestClientCancelIPC (1.36s) +--- PASS: TestClientCancelWebsocket (2.49s) +--- PASS: TestClientCancelHTTP (2.26s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/rpc 62.260s +? github.com/EthereumCommonwealth/go-callisto/swarm [no test files] +=== RUN TestApiPut +--- PASS: TestApiPut (0.01s) +=== RUN TestAPIResolve +=== RUN TestAPIResolve/DNS_not_configured,_hash_address,_returns_hash_address +=== RUN TestAPIResolve/DNS_not_configured,_ENS_address,_returns_error +=== RUN TestAPIResolve/DNS_configured,_hash_address,_hash_resolves,_returns_resolved_address +=== RUN TestAPIResolve/DNS_configured,_immutable_hash_address,_hash_resolves,_returns_hash_address +=== RUN TestAPIResolve/DNS_configured,_hash_address,_hash_doesn't_resolve,_returns_hash_address +=== RUN TestAPIResolve/DNS_configured,_ENS_address,_name_resolves,_returns_resolved_address +=== RUN TestAPIResolve/DNS_configured,_immutable_ENS_address,_name_resolves,_returns_error +=== RUN TestAPIResolve/DNS_configured,_ENS_address,_name_doesn't_resolve,_returns_error +--- PASS: TestAPIResolve (0.00s) + --- PASS: TestAPIResolve/DNS_not_configured,_hash_address,_returns_hash_address (0.00s) + --- PASS: TestAPIResolve/DNS_not_configured,_ENS_address,_returns_error (0.00s) + --- PASS: TestAPIResolve/DNS_configured,_hash_address,_hash_resolves,_returns_resolved_address (0.00s) + --- PASS: TestAPIResolve/DNS_configured,_immutable_hash_address,_hash_resolves,_returns_hash_address (0.00s) + --- PASS: TestAPIResolve/DNS_configured,_hash_address,_hash_doesn't_resolve,_returns_hash_address (0.00s) + --- PASS: TestAPIResolve/DNS_configured,_ENS_address,_name_resolves,_returns_resolved_address (0.00s) + --- PASS: TestAPIResolve/DNS_configured,_immutable_ENS_address,_name_resolves,_returns_error (0.00s) + --- PASS: TestAPIResolve/DNS_configured,_ENS_address,_name_doesn't_resolve,_returns_error (0.00s) +=== RUN TestConfigWriteRead +--- PASS: TestConfigWriteRead (0.00s) +=== RUN TestApiDirUpload0 +--- PASS: TestApiDirUpload0 (0.01s) +=== RUN TestApiDirUploadModify +--- PASS: TestApiDirUploadModify (0.01s) +=== RUN TestApiDirUploadWithRootFile +--- PASS: TestApiDirUploadWithRootFile (0.01s) +=== RUN TestApiFileUpload +--- PASS: TestApiFileUpload (0.01s) +=== RUN TestApiFileUploadWithRootFile +--- PASS: TestApiFileUploadWithRootFile (0.00s) +=== RUN TestGetEntry +--- PASS: TestGetEntry (0.00s) +=== RUN TestExactMatch +--- PASS: TestExactMatch (0.00s) +=== RUN TestDeleteEntry +--- PASS: TestDeleteEntry (0.00s) +=== RUN TestAddFileWithManifestPath +--- PASS: TestAddFileWithManifestPath (0.00s) +=== RUN TestStoragePutGet +--- PASS: TestStoragePutGet (0.00s) +=== RUN TestParseURI +--- PASS: TestParseURI (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/swarm/api 0.112s +=== RUN TestClientUploadDownloadRaw +--- PASS: TestClientUploadDownloadRaw (0.01s) +=== RUN TestClientUploadDownloadFiles +--- PASS: TestClientUploadDownloadFiles (0.01s) +=== RUN TestClientUploadDownloadDirectory +--- PASS: TestClientUploadDownloadDirectory (0.02s) +=== RUN TestClientFileList +--- PASS: TestClientFileList (0.02s) +=== RUN TestClientMultipartUpload +--- PASS: TestClientMultipartUpload (0.01s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/swarm/api/client 0.141s +=== RUN TestRoundTripper +--- PASS: TestRoundTripper (0.00s) +=== RUN TestError +--- PASS: TestError (0.01s) +=== RUN Test404Page +--- PASS: Test404Page (0.01s) +=== RUN Test500Page +--- PASS: Test500Page (0.00s) +=== RUN TestJsonResponse +--- PASS: TestJsonResponse (0.00s) +=== RUN TestBzzrGetPath +--- PASS: TestBzzrGetPath (0.01s) +=== RUN TestBzzRootRedirect +--- PASS: TestBzzRootRedirect (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/swarm/api/http 0.101s +=== RUN TestFUSE +=== RUN TestFUSE/mountListAndUmount +=== RUN TestFUSE/maxMounts +=== RUN TestFUSE/remount +=== RUN TestFUSE/unmount +=== RUN TestFUSE/unmountWhenResourceBusy +=== RUN TestFUSE/seekInMultiChunkFile +=== RUN TestFUSE/createNewFile +=== RUN TestFUSE/createNewFileInsideDirectory +=== RUN TestFUSE/createNewFileInsideNewDirectory +=== RUN TestFUSE/removeExistingFile +=== RUN TestFUSE/removeExistingFileInsideDir +=== RUN TestFUSE/removeNewlyAddedFile +=== RUN TestFUSE/addNewFileAndModifyContents +=== RUN TestFUSE/removeEmptyDir +=== RUN TestFUSE/removeDirWhichHasFiles +=== RUN TestFUSE/removeDirWhichHasSubDirs +=== RUN TestFUSE/appendFileContentsToEnd +--- PASS: TestFUSE (1.98s) + --- PASS: TestFUSE/mountListAndUmount (0.10s) + --- PASS: TestFUSE/maxMounts (0.24s) + --- PASS: TestFUSE/remount (0.06s) + --- PASS: TestFUSE/unmount (0.05s) + --- PASS: TestFUSE/unmountWhenResourceBusy (0.05s) + --- PASS: TestFUSE/seekInMultiChunkFile (0.06s) + --- PASS: TestFUSE/createNewFile (0.07s) + --- PASS: TestFUSE/createNewFileInsideDirectory (0.11s) + --- PASS: TestFUSE/createNewFileInsideNewDirectory (0.10s) + --- PASS: TestFUSE/removeExistingFile (0.12s) + --- PASS: TestFUSE/removeExistingFileInsideDir (0.11s) + --- PASS: TestFUSE/removeNewlyAddedFile (0.11s) + --- PASS: TestFUSE/addNewFileAndModifyContents (0.20s) + --- PASS: TestFUSE/removeEmptyDir (0.06s) + --- PASS: TestFUSE/removeDirWhichHasFiles (0.10s) + --- PASS: TestFUSE/removeDirWhichHasSubDirs (0.32s) + --- PASS: TestFUSE/appendFileContentsToEnd (0.09s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/swarm/fuse 2.026s +=== RUN TestSyncDb +--- SKIP: TestSyncDb (0.00s) + syncdb_test.go:143: fails randomly on all platforms +=== RUN TestSaveSyncDb +--- PASS: TestSaveSyncDb (0.03s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/swarm/network 0.086s +=== RUN TestCommonBitsAddrF +--- PASS: TestCommonBitsAddrF (0.00s) +=== RUN TestRandomAddressAt +--- PASS: TestRandomAddressAt (0.00s) +=== RUN TestOn +--- PASS: TestOn (0.00s) +=== RUN TestBootstrap +--- PASS: TestBootstrap (4.80s) +=== RUN TestFindClosest +--- PASS: TestFindClosest (0.07s) +=== RUN TestProxAdjust +--- PASS: TestProxAdjust (0.02s) +=== RUN TestSaveLoad +--- PASS: TestSaveLoad (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/swarm/network/kademlia 4.898s +? github.com/EthereumCommonwealth/go-callisto/swarm/services/swap [no test files] +=== RUN TestSwap +--- PASS: TestSwap (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/swarm/services/swap/swap 0.011s +=== RUN TestSha3ForCorrectness +--- PASS: TestSha3ForCorrectness (0.00s) +=== RUN TestDataAppend +--- PASS: TestDataAppend (0.22s) + chunker_test.go:257: Key = 869fed53820e5256fe687b1d38ce73d9508ceef7dde529b0033c62c6be7cd965 + chunker_test.go:276: NewKey = 5a2f42470179efc0a337a3adfea885d35ab5a05c62fcb5aa9514300845cc5d28 + chunker_test.go:257: Key = 869fed53820e5256fe687b1d38ce73d9508ceef7dde529b0033c62c6be7cd965 + chunker_test.go:276: NewKey = 7c8943b4ef21376284ec426b2ef7be0c032fa9abb19205c62d27d277e4380cef + chunker_test.go:257: Key = 869fed53820e5256fe687b1d38ce73d9508ceef7dde529b0033c62c6be7cd965 + chunker_test.go:276: NewKey = 3d057125dabc7b854d2b4ee5e2f84bcc3e9f45a964bf858cd0e57744ec1ed60f + chunker_test.go:257: Key = a39922bfe0fe49a53c9eed30004c1bb7e504c17963c965f2f7e73433cf546f1d + chunker_test.go:276: NewKey = 519c7fa9dd5426bcb5cf8ad2ae5b6bfccca1dd4e0d655873d575deab8fe5cbdc + chunker_test.go:257: Key = 577220a9d7290c4666aafbed5df28a63d8e7e3c320ae8af2c00dfc5b9cf65726 + chunker_test.go:276: NewKey = bacc372e044aaaa21a18122050f7d519e2c27416e8ed57c63df01a961e21e545 + chunker_test.go:257: Key = 39781c7fad12825c3af1072a52ea8290509f1bd5383cf885a48e2728d9df5e43 + chunker_test.go:276: NewKey = b12680ac2405ef92bb145754ce38e83cf2be1adce0ab6bb8d99d84d8f2a29106 + chunker_test.go:257: Key = 869fed53820e5256fe687b1d38ce73d9508ceef7dde529b0033c62c6be7cd965 + chunker_test.go:276: NewKey = fa00633f452f36ffa9c428aeb807b2d39471c962a6982519ed05f127a595b280 + chunker_test.go:257: Key = 869fed53820e5256fe687b1d38ce73d9508ceef7dde529b0033c62c6be7cd965 + chunker_test.go:276: NewKey = e3e34e30e349aa184b63ddea7acefaec9e8c25564daf3a08388c030af15568db + chunker_test.go:257: Key = 869fed53820e5256fe687b1d38ce73d9508ceef7dde529b0033c62c6be7cd965 + chunker_test.go:276: NewKey = c96465adcd12e7c0d497ea176c6669cf4ac50961bf18f1282fdbafe2dea38655 + chunker_test.go:257: Key = 6ed89c1384a2e788c794e1a9696d61cfba5d97e8a1314fea384235a38217641b + chunker_test.go:276: NewKey = c5460c2902241f5d1de558d253220999018cce68119ef32f2cfe56dc22bfa626 + chunker_test.go:257: Key = dd3a15d12445782379e58e358f2dfb0c5ad64f6f78827fba52c1fc46f1301ba5 + chunker_test.go:276: NewKey = 8e70ffb51d45e57f255077c6f11bb376954b7e02e449473dbc6ea1837fa2c335 + chunker_test.go:257: Key = dd3a15d12445782379e58e358f2dfb0c5ad64f6f78827fba52c1fc46f1301ba5 + chunker_test.go:276: NewKey = 98dd9d364c8d8fcc418a11664964ba0985e1edf7f3479cabf3a3552689df1da9 +=== RUN TestRandomData +--- PASS: TestRandomData (0.68s) + chunker_test.go:214: Key = d5ebd03406ee954b4675e9e6f2976d689ffd1f5e1384db849add0a16a9e18ffa + chunker_test.go:214: Key = d5ebd03406ee954b4675e9e6f2976d689ffd1f5e1384db849add0a16a9e18ffa + chunker_test.go:214: Key = 93721ff92d3b73324379648c0336fc4614e5cc136f43770dd98c37a2637c6242 + chunker_test.go:214: Key = 93721ff92d3b73324379648c0336fc4614e5cc136f43770dd98c37a2637c6242 + chunker_test.go:214: Key = c36c120a32b9346651e70d85633802a86e739cbb48555893830a8016a0aee0da + chunker_test.go:214: Key = c36c120a32b9346651e70d85633802a86e739cbb48555893830a8016a0aee0da + chunker_test.go:214: Key = 53b5da497c4efbafa28cfde5c92de2c7ae7ca3441a080e545ed931400a13f208 + chunker_test.go:214: Key = 53b5da497c4efbafa28cfde5c92de2c7ae7ca3441a080e545ed931400a13f208 + chunker_test.go:214: Key = 11c055fc47f917c28240f40f042b721e34d56e2b31a77a4e1401ebb013e5b3c6 + chunker_test.go:214: Key = 11c055fc47f917c28240f40f042b721e34d56e2b31a77a4e1401ebb013e5b3c6 + chunker_test.go:214: Key = c886ec67a38c6b1d5da93c024658bfbf81209956212dfaa882b7067ee06aa6f4 + chunker_test.go:214: Key = c886ec67a38c6b1d5da93c024658bfbf81209956212dfaa882b7067ee06aa6f4 + chunker_test.go:214: Key = 3e2c75bc097ddb70a758c96b55a4498d007bf3e202f1b37483210605f8f29220 + chunker_test.go:214: Key = 3e2c75bc097ddb70a758c96b55a4498d007bf3e202f1b37483210605f8f29220 + chunker_test.go:214: Key = ad437d5631eca4a38a44a079075d0081bb4729b3d885eb43febf3440d4d44b73 + chunker_test.go:214: Key = ad437d5631eca4a38a44a079075d0081bb4729b3d885eb43febf3440d4d44b73 + chunker_test.go:214: Key = 2834187e496b8c0484178c4c382314686515e3508c13385a25ed3ad92bd208b3 + chunker_test.go:214: Key = 2834187e496b8c0484178c4c382314686515e3508c13385a25ed3ad92bd208b3 + chunker_test.go:214: Key = 86d2cca31965766341ba1291439298258243e4d6bd18ca8f215c2109537a6c02 + chunker_test.go:214: Key = 86d2cca31965766341ba1291439298258243e4d6bd18ca8f215c2109537a6c02 + chunker_test.go:214: Key = b91ad756ccd9534bf92183652bb39d7946fd2a8a59534aedc1f0b92a81317388 + chunker_test.go:214: Key = b91ad756ccd9534bf92183652bb39d7946fd2a8a59534aedc1f0b92a81317388 + chunker_test.go:214: Key = 8ea4796cd13af468305559f3db5283df826cdd42041a54f7f37d4cb39d13f8fb + chunker_test.go:214: Key = 8ea4796cd13af468305559f3db5283df826cdd42041a54f7f37d4cb39d13f8fb + chunker_test.go:214: Key = ffc6ab718a344181d7ab23950caa5dc3eaca54090e27a71c1d4460fae37832cf + chunker_test.go:214: Key = ffc6ab718a344181d7ab23950caa5dc3eaca54090e27a71c1d4460fae37832cf + chunker_test.go:214: Key = 0c7bfe7b988d4f02a2cbe7108d916894199f49aa87950d3737b9ac4cfb31c0c3 + chunker_test.go:214: Key = 0c7bfe7b988d4f02a2cbe7108d916894199f49aa87950d3737b9ac4cfb31c0c3 + chunker_test.go:214: Key = 2eb2d422ec9945c410ba6997c3b6ee239390db775bafb553056c4a458d0356b3 + chunker_test.go:214: Key = 2eb2d422ec9945c410ba6997c3b6ee239390db775bafb553056c4a458d0356b3 + chunker_test.go:214: Key = a4b7da8ded7259992350b30b6546c30d57d70378230cfda4c1713aea596d3e92 + chunker_test.go:214: Key = a4b7da8ded7259992350b30b6546c30d57d70378230cfda4c1713aea596d3e92 + chunker_test.go:214: Key = 1b33d0e0ff67d73028c461743ad032cd71419d0d00d632157a08ee71af844e68 + chunker_test.go:214: Key = 1b33d0e0ff67d73028c461743ad032cd71419d0d00d632157a08ee71af844e68 + chunker_test.go:214: Key = ce9d7bf0e8014c6ac0f7eb5ec9810d1053cc84da369d26db9aa20093bd12dfa4 + chunker_test.go:214: Key = ce9d7bf0e8014c6ac0f7eb5ec9810d1053cc84da369d26db9aa20093bd12dfa4 + chunker_test.go:214: Key = 9b6ce9c6cd75d1f6343024d1577395057f21ed37d45bd12844418dc2378158b4 + chunker_test.go:214: Key = 9b6ce9c6cd75d1f6343024d1577395057f21ed37d45bd12844418dc2378158b4 + chunker_test.go:214: Key = 212a3aa62974e85e811bd6cb49cbc11e128abfa1bc0a6697b14e25663f9a40ee + chunker_test.go:214: Key = 212a3aa62974e85e811bd6cb49cbc11e128abfa1bc0a6697b14e25663f9a40ee + chunker_test.go:214: Key = 67dbcdde415ed3ec390ec29ad47f1c048847a1ee9458cfc10d8dbab149664f6f + chunker_test.go:214: Key = 67dbcdde415ed3ec390ec29ad47f1c048847a1ee9458cfc10d8dbab149664f6f + chunker_test.go:214: Key = 50b1981be9b3aa86df6432383b71e47149318c909834cf95cc3ee3253becc7a9 + chunker_test.go:214: Key = 50b1981be9b3aa86df6432383b71e47149318c909834cf95cc3ee3253becc7a9 + chunker_test.go:214: Key = 0e1bf94113bf8b35b7f28bc42bd11a50fee77957a77a23b06ad6358a5087cf36 + chunker_test.go:214: Key = 0e1bf94113bf8b35b7f28bc42bd11a50fee77957a77a23b06ad6358a5087cf36 + chunker_test.go:214: Key = f86a5615cbb70243b89a0cfe145d8b92562aa36d2fb56d4bd89724e60e830a58 + chunker_test.go:214: Key = f86a5615cbb70243b89a0cfe145d8b92562aa36d2fb56d4bd89724e60e830a58 + chunker_test.go:214: Key = 234fc92597823e7b12e5f0840c71792687358db5314867134267315c903815ba + chunker_test.go:214: Key = 234fc92597823e7b12e5f0840c71792687358db5314867134267315c903815ba + chunker_test.go:214: Key = 72b5697bf53de8c1242906404a41f40210f62eb73d3b0974bf5d130f5e44380e + chunker_test.go:214: Key = 72b5697bf53de8c1242906404a41f40210f62eb73d3b0974bf5d130f5e44380e + chunker_test.go:214: Key = c8595e512ebd3d87056af342432f484a0fb383dca56ed80dd779e9297d5c9d31 + chunker_test.go:214: Key = c8595e512ebd3d87056af342432f484a0fb383dca56ed80dd779e9297d5c9d31 + chunker_test.go:214: Key = 618443f4c5c375d3826d0953ce717959c1edafc57b183af1703d9442c8d55546 + chunker_test.go:214: Key = 618443f4c5c375d3826d0953ce717959c1edafc57b183af1703d9442c8d55546 + chunker_test.go:214: Key = 0e110d8f2b52f5e586b951da6b62fc7ff22ee46fa7affb47c884597ce2aefedd + chunker_test.go:214: Key = 0e110d8f2b52f5e586b951da6b62fc7ff22ee46fa7affb47c884597ce2aefedd + chunker_test.go:214: Key = 29c5cd803c62df7a160222da0bf020904b4f0ea1cac9ed69126a8bbda664cd13 + chunker_test.go:214: Key = 29c5cd803c62df7a160222da0bf020904b4f0ea1cac9ed69126a8bbda664cd13 + chunker_test.go:214: Key = eb8d830d26de365a34fd943a3eb26a268b3b0e33c208a9073694760c5db4e43c + chunker_test.go:214: Key = eb8d830d26de365a34fd943a3eb26a268b3b0e33c208a9073694760c5db4e43c + chunker_test.go:214: Key = 23802277dfcc32a37bd67145db35f0e5aadb2ad8e6b6cd37440bdec1f49b24a8 + chunker_test.go:214: Key = 23802277dfcc32a37bd67145db35f0e5aadb2ad8e6b6cd37440bdec1f49b24a8 + chunker_test.go:214: Key = f75ecd2a14ef72fbe60f8d360f4c22cf3e41e7d49e677ecd323501667c4d0a86 + chunker_test.go:214: Key = f75ecd2a14ef72fbe60f8d360f4c22cf3e41e7d49e677ecd323501667c4d0a86 + chunker_test.go:214: Key = b4534d08ce464c57f2f95383991f632e6e202b2f05b104e726bc2690bd96048e + chunker_test.go:214: Key = b4534d08ce464c57f2f95383991f632e6e202b2f05b104e726bc2690bd96048e +=== RUN TestRandomBrokenData +--- PASS: TestRandomBrokenData (0.11s) + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 + chunker_test.go:191: Key = 0000000000000000000000000000000000000000000000000000000000000000 +=== RUN TestDbStore128_0x1000000 +--- PASS: TestDbStore128_0x1000000 (1.80s) +=== RUN TestDbStore128_10000_ +--- PASS: TestDbStore128_10000_ (0.01s) +=== RUN TestDbStore128_1000_ +--- PASS: TestDbStore128_1000_ (0.01s) +=== RUN TestDbStore128_100_ +--- PASS: TestDbStore128_100_ (0.01s) +=== RUN TestDbStore2_100_ +--- PASS: TestDbStore2_100_ (0.03s) +=== RUN TestDbStoreNotFound +--- PASS: TestDbStoreNotFound (0.01s) +=== RUN TestDbStoreSyncIterator +--- PASS: TestDbStoreSyncIterator (0.01s) +=== RUN TestDPArandom +--- PASS: TestDPArandom (1.99s) +=== RUN TestDPA_capacity +--- PASS: TestDPA_capacity (1.93s) +=== RUN TestMemStore128_10000 +--- PASS: TestMemStore128_10000 (0.00s) +=== RUN TestMemStore128_1000 +--- PASS: TestMemStore128_1000 (0.00s) +=== RUN TestMemStore128_100 +--- PASS: TestMemStore128_100 (0.00s) +=== RUN TestMemStore2_100 +--- PASS: TestMemStore2_100 (0.00s) +=== RUN TestMemStoreNotFound +--- PASS: TestMemStoreNotFound (0.00s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/swarm/storage 6.957s +? github.com/EthereumCommonwealth/go-callisto/swarm/testutil [no test files] +=== RUN TestBlockchain +=== RUN TestDifficulty +=== RUN TestRLP +=== RUN TestState +=== RUN TestTransaction +=== RUN TestVM +can't find test files in testdata/RLPTests, did you clone the tests submodule? +--- SKIP: TestRLP (0.00s) + init_test.go:188: missing test files +can't find test files in testdata/TransactionTests, did you clone the tests submodule? +--- SKIP: TestTransaction (0.00s) + init_test.go:188: missing test files +can't find test files in testdata/BasicTests, did you clone the tests submodule? +--- SKIP: TestDifficulty (0.00s) + init_test.go:188: missing test files +can't find test files in testdata/VMTests, did you clone the tests submodule? +--- SKIP: TestVM (0.00s) + init_test.go:188: missing test files +can't find test files in testdata/BlockchainTests, did you clone the tests submodule? +--- SKIP: TestBlockchain (0.00s) + init_test.go:188: missing test files +can't find test files in testdata/GeneralStateTests, did you clone the tests submodule? +--- SKIP: TestState (0.00s) + init_test.go:188: missing test files +PASS +ok github.com/EthereumCommonwealth/go-callisto/tests 0.055s +=== RUN TestHexCompact +--- PASS: TestHexCompact (0.00s) +=== RUN TestHexKeybytes +--- PASS: TestHexKeybytes (0.00s) +=== RUN TestIterator +--- PASS: TestIterator (0.00s) +=== RUN TestIteratorLargeData +--- PASS: TestIteratorLargeData (0.00s) +=== RUN TestNodeIteratorCoverage +--- PASS: TestNodeIteratorCoverage (0.03s) +=== RUN TestIteratorSeek +--- PASS: TestIteratorSeek (0.00s) +=== RUN TestDifferenceIterator +--- PASS: TestDifferenceIterator (0.00s) +=== RUN TestUnionIterator +--- PASS: TestUnionIterator (0.00s) +=== RUN TestIteratorNoDups +--- PASS: TestIteratorNoDups (0.00s) +=== RUN TestIteratorContinueAfterError +--- PASS: TestIteratorContinueAfterError (0.00s) + iterator_test.go:290: node count 23 +=== RUN TestIteratorContinueAfterSeekError +--- PASS: TestIteratorContinueAfterSeekError (0.00s) +=== RUN TestCanUnload +--- PASS: TestCanUnload (0.00s) +=== RUN TestProof +--- PASS: TestProof (0.10s) +=== RUN TestOneElementProof +--- PASS: TestOneElementProof (0.00s) +=== RUN TestVerifyBadProof +--- PASS: TestVerifyBadProof (0.13s) +=== RUN TestSecureDelete +--- PASS: TestSecureDelete (0.00s) +=== RUN TestSecureGetKey +--- PASS: TestSecureGetKey (0.00s) +=== RUN TestSecureTrieConcurrency +--- PASS: TestSecureTrieConcurrency (0.55s) +=== RUN TestEmptyTrieSync +--- PASS: TestEmptyTrieSync (0.00s) +=== RUN TestIterativeTrieSyncIndividual +--- PASS: TestIterativeTrieSyncIndividual (0.03s) +=== RUN TestIterativeTrieSyncBatched +--- PASS: TestIterativeTrieSyncBatched (0.04s) +=== RUN TestIterativeDelayedTrieSync +--- PASS: TestIterativeDelayedTrieSync (0.04s) +=== RUN TestIterativeRandomTrieSyncIndividual +--- PASS: TestIterativeRandomTrieSyncIndividual (0.03s) +=== RUN TestIterativeRandomTrieSyncBatched +--- PASS: TestIterativeRandomTrieSyncBatched (0.04s) +=== RUN TestIterativeRandomDelayedTrieSync +--- PASS: TestIterativeRandomDelayedTrieSync (0.05s) +=== RUN TestDuplicateAvoidanceTrieSync +--- PASS: TestDuplicateAvoidanceTrieSync (0.04s) +=== RUN TestIncompleteTrieSync +--- PASS: TestIncompleteTrieSync (1.37s) +=== RUN TestEmptyTrie +--- PASS: TestEmptyTrie (0.00s) +=== RUN TestNull +--- PASS: TestNull (0.00s) +=== RUN TestMissingRoot +--- PASS: TestMissingRoot (0.00s) +=== RUN TestMissingNode +--- PASS: TestMissingNode (0.00s) +=== RUN TestInsert +--- PASS: TestInsert (0.00s) +=== RUN TestGet +--- PASS: TestGet (0.00s) +=== RUN TestDelete +--- PASS: TestDelete (0.00s) +=== RUN TestEmptyValues +--- PASS: TestEmptyValues (0.00s) +=== RUN TestReplication +--- PASS: TestReplication (0.00s) +=== RUN TestLargeValue +--- PASS: TestLargeValue (0.00s) +=== RUN TestCacheUnload +--- PASS: TestCacheUnload (0.00s) +=== RUN TestRandom +--- PASS: TestRandom (0.03s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/trie 2.545s +=== RUN TestDBKey +--- PASS: TestDBKey (0.00s) +=== RUN TestMailServer +--- PASS: TestMailServer (0.27s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/whisper/mailserver 0.341s +? github.com/EthereumCommonwealth/go-callisto/whisper/shhclient [no test files] +=== RUN TestEnvelopeOpen +--- PASS: TestEnvelopeOpen (0.05s) +=== RUN TestEnvelopeAnonymousOpenUntargeted +--- PASS: TestEnvelopeAnonymousOpenUntargeted (0.05s) +=== RUN TestEnvelopeAnonymousOpenTargeted +--- PASS: TestEnvelopeAnonymousOpenTargeted (0.05s) +=== RUN TestEnvelopeIdentifiedOpenUntargeted +--- PASS: TestEnvelopeIdentifiedOpenUntargeted (0.06s) +=== RUN TestEnvelopeIdentifiedOpenTargeted +--- PASS: TestEnvelopeIdentifiedOpenTargeted (0.05s) +=== RUN TestFilterTopicsCreation +--- PASS: TestFilterTopicsCreation (0.00s) +=== RUN TestFilterCompare +--- PASS: TestFilterCompare (0.00s) +=== RUN TestMessageSimpleWrap +--- PASS: TestMessageSimpleWrap (0.06s) +=== RUN TestMessageCleartextSignRecover +--- PASS: TestMessageCleartextSignRecover (0.06s) +=== RUN TestMessageAnonymousEncryptDecrypt +--- PASS: TestMessageAnonymousEncryptDecrypt (0.05s) +=== RUN TestMessageFullCrypto +--- PASS: TestMessageFullCrypto (0.06s) +=== RUN TestPeerStatusMessage +--- PASS: TestPeerStatusMessage (0.00s) +=== RUN TestPeerHandshakeFail +--- PASS: TestPeerHandshakeFail (0.00s) +=== RUN TestPeerHandshakeSuccess +--- PASS: TestPeerHandshakeSuccess (0.10s) +=== RUN TestPeerSend +--- PASS: TestPeerSend (0.61s) +=== RUN TestPeerDeliver +--- PASS: TestPeerDeliver (0.65s) +=== RUN TestPeerMessageExpiration +--- PASS: TestPeerMessageExpiration (3.30s) +=== RUN TestTopicCreation +--- PASS: TestTopicCreation (0.00s) +=== RUN TestTopicMatcherCreation +--- PASS: TestTopicMatcherCreation (0.00s) +=== RUN TestTopicMatcher +--- PASS: TestTopicMatcher (0.00s) +=== RUN TestSelfMessage +--- PASS: TestSelfMessage (0.05s) +=== RUN TestDirectMessage +--- PASS: TestDirectMessage (0.30s) +=== RUN TestAnonymousBroadcast +--- PASS: TestAnonymousBroadcast (0.30s) +=== RUN TestIdentifiedBroadcast +--- PASS: TestIdentifiedBroadcast (0.30s) +=== RUN TestMessageExpiration +--- PASS: TestMessageExpiration (2.65s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/whisper/whisperv2 8.840s +=== RUN TestInstallFilters +--- PASS: TestInstallFilters (0.12s) +=== RUN TestInstallSymKeyGeneratesHash +--- PASS: TestInstallSymKeyGeneratesHash (0.00s) +=== RUN TestInstallIdenticalFilters +--- PASS: TestInstallIdenticalFilters (0.00s) +=== RUN TestComparePubKey +--- PASS: TestComparePubKey (0.00s) +=== RUN TestMatchEnvelope +--- PASS: TestMatchEnvelope (0.01s) +=== RUN TestMatchMessageSym +--- PASS: TestMatchMessageSym (0.03s) +=== RUN TestMatchMessageAsym +--- PASS: TestMatchMessageAsym (0.01s) +=== RUN TestWatchers +--- PASS: TestWatchers (4.50s) +=== RUN TestVariableTopics +--- PASS: TestVariableTopics (0.00s) +=== RUN TestMessageEncryption +--- PASS: TestMessageEncryption (2.55s) +=== RUN TestMessageWrap +--- PASS: TestMessageWrap (1.04s) +=== RUN TestMessageSeal +--- PASS: TestMessageSeal (1.10s) +=== RUN TestEnvelopeOpen +--- PASS: TestEnvelopeOpen (2.38s) +=== RUN TestEncryptWithZeroKey +--- PASS: TestEncryptWithZeroKey (0.00s) +=== RUN TestRlpEncode +--- PASS: TestRlpEncode (0.00s) +=== RUN TestPadding +--- PASS: TestPadding (2.76s) +=== RUN TestSimulation +--- FAIL: TestSimulation (0.00s) + peer_test.go:159: failed to start server 0. +=== RUN TestPeerBasic +--- PASS: TestPeerBasic (0.00s) +=== RUN TestTopicString +--- PASS: TestTopicString (0.00s) +=== RUN TestBytesToTopic +--- PASS: TestBytesToTopic (0.00s) +=== RUN TestUnmarshalTestsGood +--- PASS: TestUnmarshalTestsGood (0.00s) +=== RUN TestUnmarshalTestsBad +--- PASS: TestUnmarshalTestsBad (0.00s) +=== RUN TestUnmarshalTestsUgly +--- PASS: TestUnmarshalTestsUgly (0.00s) +=== RUN TestWhisperBasic +--- PASS: TestWhisperBasic (0.10s) +=== RUN TestWhisperAsymmetricKeyImport +--- PASS: TestWhisperAsymmetricKeyImport (0.02s) +=== RUN TestWhisperIdentityManagement +--- PASS: TestWhisperIdentityManagement (0.00s) +=== RUN TestWhisperSymKeyManagement +--- PASS: TestWhisperSymKeyManagement (0.20s) +=== RUN TestExpiry +--- PASS: TestExpiry (2.00s) +=== RUN TestCustomization +--- PASS: TestCustomization (0.11s) +=== RUN TestSymmetricSendCycle +--- PASS: TestSymmetricSendCycle (0.06s) +=== RUN TestSymmetricSendWithoutAKey +--- PASS: TestSymmetricSendWithoutAKey (0.03s) +=== RUN TestSymmetricSendKeyMismatch +--- PASS: TestSymmetricSendKeyMismatch (0.04s) +FAIL +FAIL github.com/EthereumCommonwealth/go-callisto/whisper/whisperv5 17.122s +=== RUN TestInstallFilters +--- PASS: TestInstallFilters (0.10s) +=== RUN TestInstallSymKeyGeneratesHash +--- PASS: TestInstallSymKeyGeneratesHash (0.00s) +=== RUN TestInstallIdenticalFilters +--- PASS: TestInstallIdenticalFilters (0.01s) +=== RUN TestComparePubKey +--- PASS: TestComparePubKey (0.00s) +=== RUN TestMatchEnvelope +--- PASS: TestMatchEnvelope (0.00s) +=== RUN TestMatchMessageSym +--- PASS: TestMatchMessageSym (0.00s) +=== RUN TestMatchMessageAsym +--- PASS: TestMatchMessageAsym (0.00s) +=== RUN TestWatchers +--- PASS: TestWatchers (4.31s) +=== RUN TestVariableTopics +--- PASS: TestVariableTopics (0.04s) +=== RUN TestMessageEncryption +--- PASS: TestMessageEncryption (2.39s) +=== RUN TestMessageWrap +--- PASS: TestMessageWrap (1.10s) +=== RUN TestMessageSeal +--- PASS: TestMessageSeal (1.02s) +=== RUN TestEnvelopeOpen +--- PASS: TestEnvelopeOpen (1.92s) +=== RUN TestEncryptWithZeroKey +--- PASS: TestEncryptWithZeroKey (0.00s) +=== RUN TestRlpEncode +--- PASS: TestRlpEncode (0.00s) +=== RUN TestPadding +--- PASS: TestPadding (2.75s) +=== RUN TestSimulation +--- PASS: TestSimulation (1.51s) +=== RUN TestPeerBasic +--- PASS: TestPeerBasic (0.00s) +=== RUN TestTopicString +--- PASS: TestTopicString (0.00s) +=== RUN TestBytesToTopic +--- PASS: TestBytesToTopic (0.00s) +=== RUN TestUnmarshalTestsGood +--- PASS: TestUnmarshalTestsGood (0.00s) +=== RUN TestUnmarshalTestsBad +--- PASS: TestUnmarshalTestsBad (0.00s) +=== RUN TestUnmarshalTestsUgly +--- PASS: TestUnmarshalTestsUgly (0.00s) +=== RUN TestWhisperBasic +--- PASS: TestWhisperBasic (0.10s) +=== RUN TestWhisperAsymmetricKeyImport +--- PASS: TestWhisperAsymmetricKeyImport (0.02s) +=== RUN TestWhisperIdentityManagement +--- PASS: TestWhisperIdentityManagement (0.00s) +=== RUN TestWhisperSymKeyManagement +--- PASS: TestWhisperSymKeyManagement (0.19s) +=== RUN TestExpiry +--- PASS: TestExpiry (2.00s) +=== RUN TestCustomization +--- PASS: TestCustomization (0.11s) +=== RUN TestSymmetricSendCycle +--- PASS: TestSymmetricSendCycle (0.03s) +=== RUN TestSymmetricSendWithoutAKey +--- PASS: TestSymmetricSendWithoutAKey (0.02s) +=== RUN TestSymmetricSendKeyMismatch +--- PASS: TestSymmetricSendKeyMismatch (0.02s) +PASS +ok github.com/EthereumCommonwealth/go-callisto/whisper/whisperv6 17.725s