Documentation ¶
Index ¶
- type BlockBodies
- type BlockHeaders
- type Chain
- type Conn
- type Disconnect
- type Error
- type GetBlockBodies
- type GetBlockHeaders
- type GetPooledTransactions
- type Hello
- type Message
- type NewBlock
- type NewBlockHashes
- type NewPooledTransactionHashes
- type Ping
- type Pong
- type PooledTransactions
- type Status
- type Suite
- func (s *Suite) AllEthTests() []utesting.Test
- func (s *Suite) Eth66Tests() []utesting.Test
- func (s *Suite) EthTests() []utesting.Test
- func (s *Suite) Is_66(t *utesting.T)
- func (s *Suite) TestBlockHashAnnounce65(t *utesting.T)
- func (s *Suite) TestBlockHashAnnounce66(t *utesting.T)
- func (s *Suite) TestBroadcast65(t *utesting.T)
- func (s *Suite) TestBroadcast66(t *utesting.T)
- func (s *Suite) TestGetBlockBodies65(t *utesting.T)
- func (s *Suite) TestGetBlockBodies66(t *utesting.T)
- func (s *Suite) TestGetBlockHeaders65(t *utesting.T)
- func (s *Suite) TestGetBlockHeaders66(t *utesting.T)
- func (s *Suite) TestLargeAnnounce65(t *utesting.T)
- func (s *Suite) TestLargeAnnounce66(t *utesting.T)
- func (s *Suite) TestLargeTxRequest66(t *utesting.T)
- func (s *Suite) TestMaliciousHandshake65(t *utesting.T)
- func (s *Suite) TestMaliciousHandshake66(t *utesting.T)
- func (s *Suite) TestMaliciousStatus65(t *utesting.T)
- func (s *Suite) TestMaliciousStatus66(t *utesting.T)
- func (s *Suite) TestMaliciousTx65(t *utesting.T)
- func (s *Suite) TestMaliciousTx66(t *utesting.T)
- func (s *Suite) TestNewPooledTxs66(t *utesting.T)
- func (s *Suite) TestOldAnnounce65(t *utesting.T)
- func (s *Suite) TestOldAnnounce66(t *utesting.T)
- func (s *Suite) TestSameRequestID66(t *utesting.T)
- func (s *Suite) TestSimultaneousRequests66(t *utesting.T)
- func (s *Suite) TestStatus65(t *utesting.T)
- func (s *Suite) TestStatus66(t *utesting.T)
- func (s *Suite) TestTransaction65(t *utesting.T)
- func (s *Suite) TestTransaction66(t *utesting.T)
- func (s *Suite) TestZeroRequestID66(t *utesting.T)
- type Transactions
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BlockBodies ¶
type BlockBodies eth.BlockBodiesPacket
BlockBodies is the network packet for block content distribution.
func (BlockBodies) Code ¶
func (bb BlockBodies) Code() int
type BlockHeaders ¶
type BlockHeaders eth.BlockHeadersPacket
func (BlockHeaders) Code ¶
func (bh BlockHeaders) Code() int
type Chain ¶
type Chain struct {
// contains filtered or unexported fields
}
func (*Chain) GetHeaders ¶
func (c *Chain) GetHeaders(req GetBlockHeaders) (BlockHeaders, error)
type Conn ¶
Conn represents an individual connection with a peer
type Disconnect ¶
type Disconnect struct {
Reason p2p.DiscReason
}
Disconnect is the RLP structure for a disconnect message.
func (Disconnect) Code ¶
func (d Disconnect) Code() int
type GetBlockBodies ¶
type GetBlockBodies eth.GetBlockBodiesPacket
GetBlockBodies represents a GetBlockBodies request
func (GetBlockBodies) Code ¶
func (gbb GetBlockBodies) Code() int
type GetBlockHeaders ¶
type GetBlockHeaders eth.GetBlockHeadersPacket
GetBlockHeaders represents a block header query.
func (GetBlockHeaders) Code ¶
func (g GetBlockHeaders) Code() int
type GetPooledTransactions ¶
type GetPooledTransactions eth.GetPooledTransactionsPacket
func (GetPooledTransactions) Code ¶
func (gpt GetPooledTransactions) Code() int
type Hello ¶
type Hello struct { Version uint64 Name string Caps []p2p.Cap ListenPort uint64 ID []byte // secp256k1 public key // Ignore additional fields (for forward compatibility). Rest []rlp.RawValue `rlp:"tail"` }
Hello is the RLP structure of the protocol handshake.
type NewBlock ¶
type NewBlock eth.NewBlockPacket
NewBlock is the network packet for the block propagation message.
type NewBlockHashes ¶
type NewBlockHashes eth.NewBlockHashesPacket
NewBlockHashes is the network packet for the block announcements.
func (NewBlockHashes) Code ¶
func (nbh NewBlockHashes) Code() int
type NewPooledTransactionHashes ¶
type NewPooledTransactionHashes eth.NewPooledTransactionHashesPacket
NewPooledTransactionHashes is the network packet for the tx hash propagation message.
func (NewPooledTransactionHashes) Code ¶
func (nb NewPooledTransactionHashes) Code() int
type PooledTransactions ¶
type PooledTransactions eth.PooledTransactionsPacket
func (PooledTransactions) Code ¶
func (pt PooledTransactions) Code() int
type Status ¶
type Status eth.StatusPacket
Status is the network packet for the status message for eth/64 and later.
type Suite ¶
Suite represents a structure used to test a node's conformance to the eth protocol.
func NewSuite ¶
NewSuite creates and returns a new eth-test suite that can be used to test the given node against the given blockchain data.
func (*Suite) AllEthTests ¶
func (*Suite) Eth66Tests ¶
func (*Suite) Is_66 ¶
Is_66 checks if the node supports the eth66 protocol version, and if not, exists the test suite
func (*Suite) TestBlockHashAnnounce65 ¶
TestBlockHashAnnounce65 sends a new block hash announcement and expects the node to perform a `GetBlockHeaders` request.
func (*Suite) TestBlockHashAnnounce66 ¶
TestBlockHashAnnounce66 sends a new block hash announcement and expects the node to perform a `GetBlockHeaders` request.
func (*Suite) TestBroadcast65 ¶
TestBroadcast65 tests whether a block announcement is correctly propagated to the given node's peer(s).
func (*Suite) TestBroadcast66 ¶
TestBroadcast66 tests whether a block announcement is correctly propagated to the given node's peer(s) on the eth66 protocol.
func (*Suite) TestGetBlockBodies65 ¶
TestGetBlockBodies65 tests whether the given node can respond to a `GetBlockBodies` request and that the response is accurate.
func (*Suite) TestGetBlockBodies66 ¶
TestGetBlockBodies66 tests whether the given node can respond to a `GetBlockBodies` request and that the response is accurate over the eth66 protocol.
func (*Suite) TestGetBlockHeaders65 ¶
TestGetBlockHeaders65 tests whether the given node can respond to a `GetBlockHeaders` request accurately.
func (*Suite) TestGetBlockHeaders66 ¶
TestGetBlockHeaders66 tests whether the given node can respond to an eth66 `GetBlockHeaders` request and that the response is accurate.
func (*Suite) TestLargeAnnounce65 ¶
TestLargeAnnounce65 tests the announcement mechanism with a large block.
func (*Suite) TestLargeAnnounce66 ¶
TestLargeAnnounce66 tests the announcement mechanism with a large block over the eth66 protocol.
func (*Suite) TestLargeTxRequest66 ¶
TestLargeTxRequest66 tests whether a node can fulfill a large GetPooledTransactions request.
func (*Suite) TestMaliciousHandshake65 ¶
TestMaliciousHandshake65 tries to send malicious data during the handshake.
func (*Suite) TestMaliciousHandshake66 ¶
TestMaliciousHandshake66 tries to send malicious data during the handshake.
func (*Suite) TestMaliciousStatus65 ¶
TestMaliciousStatus65 sends a status package with a large total difficulty.
func (*Suite) TestMaliciousStatus66 ¶
TestMaliciousStatus66 sends a status package with a large total difficulty over the eth66 protocol.
func (*Suite) TestMaliciousTx65 ¶
TestMaliciousTx65 sends several invalid transactions and tests whether the node will propagate them.
func (*Suite) TestMaliciousTx66 ¶
TestMaliciousTx66 sends several invalid transactions and tests whether the node will propagate them.
func (*Suite) TestNewPooledTxs66 ¶
TestNewPooledTxs_66 tests whether a node will do a GetPooledTransactions request upon receiving a NewPooledTransactionHashes announcement.
func (*Suite) TestOldAnnounce65 ¶
TestOldAnnounce65 tests the announcement mechanism with an old block.
func (*Suite) TestOldAnnounce66 ¶
TestOldAnnounce66 tests the announcement mechanism with an old block, over the eth66 protocol.
func (*Suite) TestSameRequestID66 ¶
TestSameRequestID66 sends two requests with the same request ID to a single node.
func (*Suite) TestSimultaneousRequests66 ¶
TestSimultaneousRequests66 sends two simultaneous `GetBlockHeader` requests from the same connection with different request IDs and checks to make sure the node responds with the correct headers per request.
func (*Suite) TestStatus65 ¶
TestStatus65 attempts to connect to the given node and exchange a status message with it.
func (*Suite) TestStatus66 ¶
TestStatus66 attempts to connect to the given node and exchange a status message with it on the eth66 protocol.
func (*Suite) TestTransaction65 ¶
TestTransaction65 sends a valid transaction to the node and checks if the transaction gets propagated.
func (*Suite) TestTransaction66 ¶
TestTransaction66 sends a valid transaction to the node and checks if the transaction gets propagated.
func (*Suite) TestZeroRequestID66 ¶
TestZeroRequestID_66 checks that a message with a request ID of zero is still handled by the node.
type Transactions ¶
type Transactions eth.TransactionsPacket
func (Transactions) Code ¶
func (t Transactions) Code() int