diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-05-28 19:17:47 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-05-28 19:17:47 +0800 |
commit | 9f467c387a790242eb7cfa155e593a7df8dd82d0 (patch) | |
tree | bf51d5351cc3c4939371eb7facb33a2917fe0c03 /p2p | |
parent | 8add3bb009ba06a7f0b6fb7cb188f5acd0dacfb3 (diff) | |
parent | e84bbcce3c335b863eb6304ad910047054b68c20 (diff) | |
download | dexon-9f467c387a790242eb7cfa155e593a7df8dd82d0.tar dexon-9f467c387a790242eb7cfa155e593a7df8dd82d0.tar.gz dexon-9f467c387a790242eb7cfa155e593a7df8dd82d0.tar.bz2 dexon-9f467c387a790242eb7cfa155e593a7df8dd82d0.tar.lz dexon-9f467c387a790242eb7cfa155e593a7df8dd82d0.tar.xz dexon-9f467c387a790242eb7cfa155e593a7df8dd82d0.tar.zst dexon-9f467c387a790242eb7cfa155e593a7df8dd82d0.zip |
Merge pull request #1123 from fjl/lean-blockchain-commands
cmd/geth: leaner blockchain commands
Diffstat (limited to 'p2p')
-rw-r--r-- | p2p/nat/nat_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p2p/nat/nat_test.go b/p2p/nat/nat_test.go index 95c50522e..b62640b4b 100644 --- a/p2p/nat/nat_test.go +++ b/p2p/nat/nat_test.go @@ -30,7 +30,7 @@ func TestAutoDiscRace(t *testing.T) { } // Check that they all return the correct result within the deadline. - deadline := time.After(550 * time.Millisecond) + deadline := time.After(2 * time.Second) for i := 0; i < cap(results); i++ { select { case <-deadline: |