mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Asynchronous connect. Fixes #7.
This commit is contained in:
parent
f0f391187d
commit
0bdbfae3b8
9
main.cpp
9
main.cpp
@ -30,8 +30,17 @@ int stateTest();
|
|||||||
int hexPrefixTest();
|
int hexPrefixTest();
|
||||||
int peerTest(int argc, char** argv);
|
int peerTest(int argc, char** argv);
|
||||||
|
|
||||||
|
#include <BlockInfo.h>
|
||||||
|
using namespace eth;
|
||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char** argv)
|
||||||
{
|
{
|
||||||
|
/*RLPStream s;
|
||||||
|
BlockInfo::genesis().fillStream(s, false);
|
||||||
|
std::cout << RLP(s.out()) << std::endl;
|
||||||
|
std::cout << asHex(s.out()) << std::endl;
|
||||||
|
std::cout << sha3(s.out()) << std::endl;*/
|
||||||
|
|
||||||
// hexPrefixTest();
|
// hexPrefixTest();
|
||||||
// rlpTest();
|
// rlpTest();
|
||||||
trieTest();
|
trieTest();
|
||||||
|
Loading…
Reference in New Issue
Block a user