This is an automated email from the ASF dual-hosted git repository.

toulmean pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-tuweni.git


    from 6c6f1668 Merge pull request #411 from atoulme/add_code_test
     new 7b249710 Add validators, wip
     new 9fba4d23 Add listener that gets triggered whenever a new block is 
added to chain head
     new b51bfe4b Merge pull request #409 from atoulme/validators

The 1213 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../org/apache/tuweni/ethclient/DNSClient.kt       |   3 +
 .../org/apache/tuweni/ethclient/EthereumClient.kt  | 125 ++++++++----
 .../tuweni/ethclient/EthereumClientConfig.kt       |  80 +++++++-
 .../tuweni/ethclient/sync/CanonicalSynchronizer.kt |  54 ++++++
 .../{ => sync}/FromBestBlockHeaderSynchronizer.kt  |   3 +-
 .../{ => sync}/FromUnknownParentSynchronizer.kt    |   3 +-
 .../{ => sync}/PeerStatusEthSynchronizer.kt        |   5 +-
 .../tuweni/ethclient/{ => sync}/Synchronizer.kt    |   3 +-
 .../apache/tuweni/ethclient/validator/Validator.kt |  40 ++++
 .../tuweni/ethclient/validator/Validators.kt       |  59 ++++++
 .../tuweni/ethclient/validator/ValidatorsTest.kt   | 211 +++++++++++++++++++++
 .../tuweni/eth/repository/BlockchainIndex.kt       |  62 ++++--
 .../tuweni/eth/repository/BlockchainRepository.kt  |  27 ++-
 .../apache/tuweni/eth/repository/IndexResult.kt    |  24 +++
 .../eth/repository/BlockchainRepositoryTest.kt     | 115 +++++++++++
 15 files changed, 750 insertions(+), 64 deletions(-)
 create mode 100644 
eth-client/src/main/kotlin/org/apache/tuweni/ethclient/sync/CanonicalSynchronizer.kt
 rename eth-client/src/main/kotlin/org/apache/tuweni/ethclient/{ => 
sync}/FromBestBlockHeaderSynchronizer.kt (96%)
 rename eth-client/src/main/kotlin/org/apache/tuweni/ethclient/{ => 
sync}/FromUnknownParentSynchronizer.kt (96%)
 rename eth-client/src/main/kotlin/org/apache/tuweni/ethclient/{ => 
sync}/PeerStatusEthSynchronizer.kt (94%)
 rename eth-client/src/main/kotlin/org/apache/tuweni/ethclient/{ => 
sync}/Synchronizer.kt (96%)
 create mode 100644 
eth-client/src/main/kotlin/org/apache/tuweni/ethclient/validator/Validator.kt
 create mode 100644 
eth-client/src/main/kotlin/org/apache/tuweni/ethclient/validator/Validators.kt
 create mode 100644 
eth-client/src/test/kotlin/org/apache/tuweni/ethclient/validator/ValidatorsTest.kt
 create mode 100644 
eth-repository/src/main/kotlin/org/apache/tuweni/eth/repository/IndexResult.kt


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to