Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebase peppermint branch to v0.38.5 #2

Merged
merged 138 commits into from
Mar 1, 2024

Commits on May 10, 2019

  1. Configuration menu
    Copy the full SHA
    0ff2b30 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2019

  1. updated import

    vaibhavchellani committed May 13, 2019
    Configuration menu
    Copy the full SHA
    c7d4c6e View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2019

  1. Configuration menu
    Copy the full SHA
    aa42854 View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2019

  1. removed sig size

    vaibhavchellani committed Jun 16, 2019
    Configuration menu
    Copy the full SHA
    a57b0d7 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2019

  1. Configuration menu
    Copy the full SHA
    9df1177 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9867a65 View commit details
    Browse the repository at this point in the history
  3. abci/client: fix DATA RACE in gRPC client (cometbft#3798)

    * Remove go func {}()
    
    closes cometbft#357
    
    - Remove go func(){}() that caused race condiditon
    
    - To reproduce
    	- add -race in make file to `install_abci`
    	- Remove `CGO_ENABLED=0` & add -race to `install`
    
    Signed-off-by: Marko Baricevic <[email protected]>
    
    * remove -race
    
    * fix data race
    
    also, reorder callbacks similarly to socket client
    tac0turtle authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    8da4350 View commit details
    Browse the repository at this point in the history
  4. docs: "Writing a built-in Tendermint Core application in Go" guide (c…

    …ometbft#3608)
    
    * docs: go built-in guide
    
    * fix package imports, add badger db, simplify Query
    
    * newTendermint function
    
    * working example
    
    * finish the first guide
    
    * add one more note
    
    * add the second Golang guide - external ABCI app
    
    * fix typos
    melekes authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    c264db3 View commit details
    Browse the repository at this point in the history
  5. libs: Remove db from tendermint in favor of tendermint/tm-cmn (cometb…

    …ft#3811)
    
    * Remove db from tendemrint in favor of tendermint/tm-cmn
    
    - remove db from `libs`
    - update dependancy, there have been no breaking changes in the updated deps
    	- https://github.com/grpc/grpc-go/releases
    	- https://github.com/golang/protobuf/releases
    
    Signed-off-by: Marko Baricevic <[email protected]>
    
    * changelog add
    
    * gofmt
    
    * more gofmt
    tac0turtle authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    7041001 View commit details
    Browse the repository at this point in the history
  6. docs: add A TOC to the Readme.md of ADR Section (cometbft#3820)

    * ADR TOC in readme.md
    
    * Added A TOC to the Readme.md of ADR Section
    
    - Added table of contents to the Readme of the architecture section.
    	- Easier to traverse and when you know what is there.
    	- If the Adr's become viewable online it would help guide the user
    
    Signed-off-by: Marko Baricevic <[email protected]>
    
    * add tm-cmn to subprojects
    
    * normalize word
    tac0turtle authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    073cd11 View commit details
    Browse the repository at this point in the history
  7. rpc: make max_body_bytes and max_header_bytes configurable (cometbft#…

    …3818)
    
    * rpc: make max_body_bytes and max_header_bytes configurable
    
    * update changelog pending
    bluele authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    5d7e22a View commit details
    Browse the repository at this point in the history
  8. p2p/conn: Add Bufferpool (cometbft#3664)

    * use byte buffer pool to decreass allocs
    
    * wrap to put buffer in defer
    
    * wapper defer
    
    * add dependency
    
    * remove Gopkg,*
    
    * add change log
    unclezoro authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    17b69d4 View commit details
    Browse the repository at this point in the history
  9. rpc: /broadcast_evidence (cometbft#3481)

    * implement broadcast_duplicate_vote endpoint
    
    * fix test_cover
    
    * address comments
    
    * address comments
    
    * Update abci/example/kvstore/persistent_kvstore.go
    
    Co-Authored-By: mossid <[email protected]>
    
    * Update rpc/client/main_test.go
    
    Co-Authored-By: mossid <[email protected]>
    
    * address comments in progress
    
    * reformat the code
    
    * make linter happy
    
    * make tests pass
    
    * replace BroadcastDuplicateVote with BroadcastEvidence
    
    * fix test
    
    * fix endpoint name
    
    * improve doc
    
    * fix TestBroadcastEvidenceDuplicateVote
    
    * Update rpc/core/evidence.go
    
    Co-Authored-By: Thane Thomson <[email protected]>
    
    * add changelog entry
    
    * fix TestBroadcastEvidenceDuplicateVote
    melekes authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    5ed39fd View commit details
    Browse the repository at this point in the history
  10. mempool: make max_msg_bytes configurable (cometbft#3826)

    * mempool: make max_msg_bytes configurable
    
    * apply suggestions from code review
    
    * update changelog pending
    
    * apply suggestions from code review again
    bluele authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    df6df61 View commit details
    Browse the repository at this point in the history
  11. rpc: return err if page is incorrect (less than 0 or greater than tot… (

    cometbft#3825)
    
    * rpc: return err if page is incorrect (less than 0 or greater than total pages)
    
    Fixes cometbft#3813
    
    * fix rpc_test
    melekes authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    e89991c View commit details
    Browse the repository at this point in the history
  12. blockchain: Reorg reactor (cometbft#3561)

    * go routines in blockchain reactor
    
    * Added reference to the go routine diagram
    
    * Initial commit
    
    * cleanup
    
    * Undo testing_logger change, committed by mistake
    
    * Fix the test loggers
    
    * pulled some fsm code into pool.go
    
    * added pool tests
    
    * changes to the design
    
    added block requests under peer
    
    moved the request trigger in the reactor poolRoutine, triggered now by a ticker
    
    in general moved everything required for making block requests smarter in the poolRoutine
    
    added a simple map of heights to keep track of what will need to be requested next
    
    added a few more tests
    
    * send errors to FSM in a different channel than blocks
    
    send errors (RemovePeer) from switch on a different channel than the
    one receiving blocks
    renamed channels
    added more pool tests
    
    * more pool tests
    
    * lint errors
    
    * more tests
    
    * more tests
    
    * switch fast sync to new implementation
    
    * fixed data race in tests
    
    * cleanup
    
    * finished fsm tests
    
    * address golangci comments :)
    
    * address golangci comments :)
    
    * Added timeout on next block needed to advance
    
    * updating docs and cleanup
    
    * fix issue in test from previous cleanup
    
    * cleanup
    
    * Added termination scenarios, tests and more cleanup
    
    * small fixes to adr, comments and cleanup
    
    * Fix bug in sendRequest()
    
    If we tried to send a request to a peer not present in the switch, a
    missing continue statement caused the request to be blackholed in a peer
    that was removed and never retried.
    
    While this bug was manifesting, the reactor kept asking for other
    blocks that would be stored and never consumed. Added the number of
    unconsumed blocks in the math for requesting blocks ahead of current
    processing height so eventually there will be no more blocks requested
    until the already received ones are consumed.
    
    * remove bpPeer's didTimeout field
    
    * Use distinct err codes for peer timeout and FSM timeouts
    
    * Don't allow peers to update with lower height
    
    * review comments from Ethan and Zarko
    
    * some cleanup, renaming, comments
    
    * Move block execution in separate goroutine
    
    * Remove pool's numPending
    
    * review comments
    
    * fix lint, remove old blockchain reactor and duplicates in fsm tests
    
    * small reorg around peer after review comments
    
    * add the reactor spec
    
    * verify block only once
    
    * review comments
    
    * change to int for max number of pending requests
    
    * cleanup and godoc
    
    * Add configuration flag fast sync version
    
    * golangci fixes
    
    * fix config template
    
    * move both reactor versions under blockchain
    
    * cleanup, golint, renaming stuff
    
    * updated documentation, fixed more golint warnings
    
    * integrate with behavior package
    
    * sync with master
    
    * gofmt
    
    * add changelog_pending entry
    
    * move to improvments
    
    * suggestion to changelog entry
    ancazamfir authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    abc3082 View commit details
    Browse the repository at this point in the history
  13. Renamed wire.go to codec.go (cometbft#3827)

    * Renamed wire.go to codec.go
    
    - Wire was the previous name of amino
    - Codec describes the file better than `wire` & `amino`
    
    Signed-off-by: Marko Baricevic <[email protected]>
    
    * ide error
    
    * rename amino.go to codec.go
    tac0turtle authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    5d0e703 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    0335add View commit details
    Browse the repository at this point in the history
  15. add staticcheck linting (cometbft#3828)

    cleanup to add linter
    
        grpc change:
            https://godoc.org/google.golang.org/grpc#WithContextDialer
            https://godoc.org/google.golang.org/grpc#WithDialer
            grpc/grpc-go#2627
        prometheous change:
            due to UninstrumentedHandler, being deprecated in the future
        empty branch = empty if or else statement
            didn't delete them entirely but commented
            couldn't find a reason to have them
        could not replicate the issue cometbft#3406
            but if want to keep it commented then we should comment out the if statement as well
    tac0turtle authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    ff9e08a View commit details
    Browse the repository at this point in the history
  16. types: move MakeVote / MakeBlock functions (cometbft#3819)

    to the types package
    
    Paritally Fixes cometbft#3584
    tac0turtle authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    58c3e59 View commit details
    Browse the repository at this point in the history
  17. p2p: Fix error logging for connection stop (cometbft#3824)

    * p2p: fix false-positive error logging when stopping connections
    
    This changeset fixes two types of false-positive errors occurring during
    connection shutdown.
    
    The first occurs when the process invokes FlushStop() or Stop() on a
    connection. While the previous behavior did properly wait for the sendRoutine
    to finish, it did not notify the recvRoutine that the connection was shutting
    down. This would cause the recvRouting to receive and error when reading and
    log this error. The changeset fixes this by notifying the recvRoutine that
    the connection is shutting down.
    
    The second occurs when the connection is terminated (gracefully) by the other side.
    The recvRoutine would get an EOF error during the read, log it, and stop the connection
    with an error. The changeset detects EOF and gracefully shuts down the connection.
    
    * bring back the comment about flushing
    
    * add changelog entry
    
    * listen for quitRecvRoutine too
    
    * we have to call stopForError
    
    Otherwise peer won't be removed from the peer set and maybe readded
    later.
    melekes authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    55066ce View commit details
    Browse the repository at this point in the history
  18. p2p: Do not write 'Couldn't connect to any seeds' if there are no see…

    …ds (cometbft#3834)
    
    * Do not write 'Couldn't connect to any seeds' if there are no seeds
    
    * changelog
    
    * remove privValUpgrade
    
    * Fix typo in changelog
    
    * Update CHANGELOG_PENDING.md
    
    Co-Authored-By: Marko <[email protected]>
    
    I'm setting up all peers dynamically by calling dial_peers, so p2p.seeds in configs is empty, and I'm seeing error log a lot in logs.
    folex authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    6d4f18a View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    5f6617d View commit details
    Browse the repository at this point in the history
  20. docs: "Writing a Tendermint Core application in Kotlin (gRPC)" guide (c…

    …ometbft#3838)
    
    * add abci grpc kotlin guide
    
    * Update docs/guides/kotlin.md
    
    Co-Authored-By: Anton Kaliaev <[email protected]>
    
    * Update docs/guides/kotlin.md
    
    Co-Authored-By: Anton Kaliaev <[email protected]>
    
    * Update docs/guides/kotlin.md
    
    Co-Authored-By: Anton Kaliaev <[email protected]>
    
    * Update kotlin.md
    climber73 authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    53fdcfd View commit details
    Browse the repository at this point in the history
  21. node: allow replacing existing p2p.Reactor(s) (cometbft#3846)

    * node: allow replacing existing p2p.Reactor(s)
    
    using [`CustomReactors`
    option](https://godoc.org/github.com/tendermint/tendermint/node#CustomReactors).
    Warning: beware of accidental name clashes. Here is the list of existing
    reactors: MEMPOOL, BLOCKCHAIN, CONSENSUS, EVIDENCE, PEX.
    
    * check the absence of "CUSTOM" prefix
    
    * merge 2 tests
    
    * add doc.go to node package
    melekes authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    5c9d6d8 View commit details
    Browse the repository at this point in the history
  22. gocritic (1/2) (cometbft#3836)

        Add gocritic as a linter
    
        The linting is not complete, but should i complete in this PR or in a following.
    
        23 files have been touched so it may be better to do in a following PR
    
    
    Commits:
    
    * Add gocritic to linting
    
    - Added gocritic to linting
    
    Signed-off-by: Marko Baricevic <[email protected]>
    
    * gocritic
    
    * pr comments
    
    * remove switch in cmdBatch
    tac0turtle authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    513a32a View commit details
    Browse the repository at this point in the history
  23. tm-cmn to tm-db (cometbft#3850)

    * tm-cmn to tm-db
    
    * go.mod changes
    
    * go.mod changes
    
    * more go.mod
    
    * fix tm-db
    
    * ci fix, pending change
    tac0turtle authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    8025d40 View commit details
    Browse the repository at this point in the history
  24. version tmdb (cometbft#3854)

    tac0turtle authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    d56fb6e View commit details
    Browse the repository at this point in the history
  25. txindexer: Refactor Tx Search Aggregation (cometbft#3851)

    - Replace the previous intersect call, which was called at each query condition, with a map intersection.
    - Replace fmt.Sprintf with string()
    
    closes: cometbft#3076
    
    Benchmarks
    
    ```
    Old
    goos: darwin
    goarch: amd64
    pkg: github.com/tendermint/tendermint/state/txindex/kv
    BenchmarkTxSearch-4   	     200	 103641206 ns/op	 7998416 B/op	   71171 allocs/op
    PASS
    ok  	github.com/tendermint/tendermint/state/txindex/kv	26.019s
    
    New
    goos: darwin
    goarch: amd64
    pkg: github.com/tendermint/tendermint/state/txindex/kv
    BenchmarkTxSearch-4   	    1000	  38615024 ns/op	13515226 B/op	  166460 allocs/op
    PASS
    ok  	github.com/tendermint/tendermint/state/txindex/kv	53.618s
    ```
    
    ~62% performance improvement
    
    Commits:
    
    * Refactor tx search
    
    * Add pending changelog entry
    
    * Add tx search benchmarking
    
    * remove intermediate hashes list
    
    also reset timer in BenchmarkTxSearch
    and fix other benchmark
    
    * fix import
    
    * Add test cases
    
    * Fix searching
    
    * Replace fmt.Sprintf with string
    
    * Update state/txindex/kv/kv.go
    
    Co-Authored-By: Anton Kaliaev <[email protected]>
    
    * Rename params
    
    * Cleanup
    
    * Check error in benchmarks
    alexanderbez authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    aacc71d View commit details
    Browse the repository at this point in the history
  26. release for v0.32.2

    tac0turtle authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    15878dc View commit details
    Browse the repository at this point in the history
  27. Merge PR cometbft#3860: Update log v0.32.2

    * changelog updates
    
    * pr comments
    tac0turtle authored and jackzampolin committed Aug 1, 2019
    Configuration menu
    Copy the full SHA
    76f3db0 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2019

  1. Configuration menu
    Copy the full SHA
    86a581f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0ad70fb View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2019

  1. Configuration menu
    Copy the full SHA
    ff2308b View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2019

  1. Configuration menu
    Copy the full SHA
    0354ea8 View commit details
    Browse the repository at this point in the history
  2. update version.go

    zmanian authored and jackzampolin committed Oct 2, 2019
    Configuration menu
    Copy the full SHA
    d062869 View commit details
    Browse the repository at this point in the history
  3. Changelog update

    zmanian authored and jackzampolin committed Oct 2, 2019
    Configuration menu
    Copy the full SHA
    d6ea1ed View commit details
    Browse the repository at this point in the history
  4. Update CHANGELOG.md

    Co-Authored-By: Anton Kaliaev <[email protected]>
    2 people authored and jackzampolin committed Oct 2, 2019
    Configuration menu
    Copy the full SHA
    b08f655 View commit details
    Browse the repository at this point in the history
  5. update changelog

    melekes authored and jackzampolin committed Oct 2, 2019
    Configuration menu
    Copy the full SHA
    0f111b3 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2019

  1. p2p: only allow ed25519 pubkeys when connecting

    also, recover from any possible failures in acceptPeers
    
    Refs cometbft#4030
    melekes authored and jackzampolin committed Oct 10, 2019
    Configuration menu
    Copy the full SHA
    ab62fd9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    88946fd View commit details
    Browse the repository at this point in the history
  3. set the date to today

    melekes authored and jackzampolin committed Oct 10, 2019
    Configuration menu
    Copy the full SHA
    c4ba93a View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2019

  1. cs: panic only when WAL#WriteSync fails

    - modify WAL#Write and WAL#WriteSync to return an error
    melekes authored and jackzampolin committed Oct 29, 2019
    Configuration menu
    Copy the full SHA
    470a23f View commit details
    Browse the repository at this point in the history
  2. types: validate Part#Proof

    add ValidateBasic to crypto/merkle/SimpleProof
    melekes authored and jackzampolin committed Oct 29, 2019
    Configuration menu
    Copy the full SHA
    c207fa6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c38dbdb View commit details
    Browse the repository at this point in the history
  4. cs: test new limits

    melekes authored and jackzampolin committed Oct 29, 2019
    Configuration menu
    Copy the full SHA
    564d6a2 View commit details
    Browse the repository at this point in the history
  5. cs: only assert important stuff

    melekes authored and jackzampolin committed Oct 29, 2019
    Configuration menu
    Copy the full SHA
    7149485 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b5cad43 View commit details
    Browse the repository at this point in the history
  7. fixes after Ethan's review

    melekes authored and jackzampolin committed Oct 29, 2019
    Configuration menu
    Copy the full SHA
    7ec2dff View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    c013501 View commit details
    Browse the repository at this point in the history
  9. fix tests

    melekes authored and jackzampolin committed Oct 29, 2019
    Configuration menu
    Copy the full SHA
    7ffd3ff View commit details
    Browse the repository at this point in the history
  10. fix test

    melekes authored and jackzampolin committed Oct 29, 2019
    Configuration menu
    Copy the full SHA
    7b67ee4 View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2019

  1. Configuration menu
    Copy the full SHA
    94d7329 View commit details
    Browse the repository at this point in the history
  2. use bor

    jdkanani committed Dec 23, 2019
    Configuration menu
    Copy the full SHA
    141a717 View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2019

  1. add data in commit

    jdkanani committed Dec 26, 2019
    Configuration menu
    Copy the full SHA
    c743ff6 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2020

  1. remove votes from header

    jdkanani committed Jan 5, 2020
    Configuration menu
    Copy the full SHA
    9b2d312 View commit details
    Browse the repository at this point in the history

Commits on Apr 18, 2020

  1. Configuration menu
    Copy the full SHA
    39bc808 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2020

  1. fix: go mod

    jdkanani committed Apr 19, 2020
    Configuration menu
    Copy the full SHA
    646076b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    05a7957 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    edca16f View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2020

  1. Configuration menu
    Copy the full SHA
    3629ded View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9f2f9b4 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2020

  1. Configuration menu
    Copy the full SHA
    e1550ee View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2020

  1. Configuration menu
    Copy the full SHA
    a118413 View commit details
    Browse the repository at this point in the history
  2. chg: allow empty sig

    jdkanani committed Apr 22, 2020
    Configuration menu
    Copy the full SHA
    37d9389 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2020

  1. Configuration menu
    Copy the full SHA
    5b449d9 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2020

  1. chg: remove data from vote

    jdkanani committed Apr 24, 2020
    Configuration menu
    Copy the full SHA
    e69ded9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    565f655 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2020

  1. Configuration menu
    Copy the full SHA
    edc079e View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2020

  1. Merge pull request cometbft#8 from maticnetwork/sidechannel

    Sidechannel spec implementation
    jdkanani authored Jun 16, 2020
    Configuration menu
    Copy the full SHA
    0c39d2e View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2022

  1. feat: add rollback feature

    Sai Kumar committed Mar 11, 2022
    Configuration menu
    Copy the full SHA
    3ea059b View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2022

  1. Use bor version v0.2.16

    0xKrishna committed Aug 2, 2022
    Configuration menu
    Copy the full SHA
    fafb424 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2022

  1. Merge pull request cometbft#23 from maticnetwork/krishna/update-bor-v…

    …ersion
    
    Update bor version and include vitwit changes from March
    0xKrishna authored Aug 3, 2022
    Configuration menu
    Copy the full SHA
    9c20f60 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2022

  1. Change log level tag from a single character to a full word

    This will change logging format from:
    
    D[2016-05-02|11:06:44.322]
    
    to:
    
    DEBUG[2016-05-02|11:06:44.322]
    
    The purpose is to unify the logging with bor.
    cffls committed Sep 23, 2022
    Configuration menu
    Copy the full SHA
    2208a11 View commit details
    Browse the repository at this point in the history
  2. Merge pull request cometbft#25 from maticnetwork/log_tag_change

    Change log level tag from a single character to a full word
    cffls authored Sep 23, 2022
    Configuration menu
    Copy the full SHA
    3e7c7f8 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2023

  1. Configuration menu
    Copy the full SHA
    2a4b4a5 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2023

  1. Merge pull request cometbft#26 from maticnetwork/raneet10/pos-1645

    consensus,scripts,state,store,types: change PartSetHeader total to uint32
    Raneet10 authored Aug 7, 2023
    Configuration menu
    Copy the full SHA
    d115834 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2023

  1. libs/log: add warn log level (cometbft#27)

    * libs/log: add warn log level
    anshalshukla authored Aug 31, 2023
    Configuration menu
    Copy the full SHA
    a7e9709 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2023

  1. Configuration menu
    Copy the full SHA
    ea050d2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    85da6cb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ab02946 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a166673 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a50d41c View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2023

  1. Configuration menu
    Copy the full SHA
    d50af6e View commit details
    Browse the repository at this point in the history
  2. Merge pull request cometbft#29 from maticnetwork/vaibhav/DefaultValue…

    …Change
    
    Change the default value of maxInboundPeer and maxOutBoundPeer to 100
    VAIBHAVJINDAL3012 authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    da9dfa1 View commit details
    Browse the repository at this point in the history
  3. Merge pull request cometbft#28 from maticnetwork/mardizzone/POS-1609

    dev: chg: solve vulns and set maxInboundPeer and maxOutBoundPeer to 100
    marcello33 authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    2bb6a83 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2023

  1. Configuration menu
    Copy the full SHA
    7bceb90 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5f94b7e View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2023

  1. Added log to print number of peers (cometbft#32)

    * added log to print number of peers
    
    * update
    pratikspatil024 authored Nov 6, 2023
    Configuration menu
    Copy the full SHA
    2f132b9 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. peppermint: changes to crypto

    sergio-mena authored and Raneet10 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    a7573e8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    60506c0 View commit details
    Browse the repository at this point in the history
  3. (temporarily) allow both tendermint/P*KeySecp256k1 and comet/P*KeySec…

    …p256k1Uncompressed to ease migration
    sergio-mena authored and Raneet10 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    fe7d6d6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    63309b0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d904d49 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2023

  1. Configuration menu
    Copy the full SHA
    1dfec6a View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2023

  1. Configuration menu
    Copy the full SHA
    637be25 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2023

  1. Configuration menu
    Copy the full SHA
    2c33c46 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0bdcced View commit details
    Browse the repository at this point in the history
  3. Fixed TestPubKeySecp256k1Address

    sergio-mena authored and Raneet10 committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    aad2b34 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b45920d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d8d62a0 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2023

  1. Configuration menu
    Copy the full SHA
    a5be190 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b2134e0 View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2023

  1. fix lint

    Raneet10 committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    ec2c7b0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b301c01 View commit details
    Browse the repository at this point in the history
  3. Fix TestReactorValidatorSetChanges

    sergio-mena authored and Raneet10 committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    6479a06 View commit details
    Browse the repository at this point in the history
  4. Fix UTs in execution_test.go

    sergio-mena authored and Raneet10 committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    1adf0cc View commit details
    Browse the repository at this point in the history
  5. Fix TestEvidencePoolBasic

    sergio-mena authored and Raneet10 committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    b6c7c63 View commit details
    Browse the repository at this point in the history
  6. Fix TestVoteExtension

    sergio-mena authored and Raneet10 committed Nov 24, 2023
    Configuration menu
    Copy the full SHA
    f88b324 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2023

  1. Configuration menu
    Copy the full SHA
    b3b70f3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8648e45 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9e607e8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9050f99 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2024

  1. all: address PR comments

    Raneet10 committed Feb 2, 2024
    Configuration menu
    Copy the full SHA
    bf3a0cf View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2024

  1. Configuration menu
    Copy the full SHA
    86c34c2 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2024

  1. Configuration menu
    Copy the full SHA
    8a94524 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2d738ce View commit details
    Browse the repository at this point in the history
  3. resolve go mod deps

    Raneet10 committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    e404e0f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2706fc9 View commit details
    Browse the repository at this point in the history
  5. Revert "Merge branch 'v0.38.5-upstream' into raneet10/peppermint-chan…

    …ges"
    
    This reverts commit 2706fc9, reversing
    changes made to e404e0f.
    Raneet10 committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    fc56973 View commit details
    Browse the repository at this point in the history
  6. Revert "Revert "Merge branch 'v0.38.5-upstream' into raneet10/pepperm…

    …int-changes""
    
    This reverts commit fc56973.
    Raneet10 committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    31d8071 View commit details
    Browse the repository at this point in the history
  7. all: fix issue from merge

    Raneet10 committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    0aaa933 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    fe97472 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2024

  1. Configuration menu
    Copy the full SHA
    94b13af View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ec89035 View commit details
    Browse the repository at this point in the history
  3. cmd: minor refactor

    Co-authored-by: Sergio Mena <[email protected]>
    Raneet10 and sergio-mena authored Feb 8, 2024
    Configuration menu
    Copy the full SHA
    705978c View commit details
    Browse the repository at this point in the history
  4. libs/protoio: minor refactor

    Co-authored-by: Sergio Mena <[email protected]>
    Raneet10 and sergio-mena authored Feb 8, 2024
    Configuration menu
    Copy the full SHA
    572fac2 View commit details
    Browse the repository at this point in the history
  5. libs/pubsub: minor refactor

    Co-authored-by: Sergio Mena <[email protected]>
    Raneet10 and sergio-mena authored Feb 8, 2024
    Configuration menu
    Copy the full SHA
    7dd6ddb View commit details
    Browse the repository at this point in the history
  6. state: minor refactor

    Co-authored-by: Sergio Mena <[email protected]>
    Raneet10 and sergio-mena authored Feb 8, 2024
    Configuration menu
    Copy the full SHA
    918b8d8 View commit details
    Browse the repository at this point in the history
  7. state: minor restructure in test

    Co-authored-by: Sergio Mena <[email protected]>
    Raneet10 and sergio-mena authored Feb 8, 2024
    Configuration menu
    Copy the full SHA
    7bfb667 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e286a8b View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    ea329c1 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    3996328 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    b274f1f View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2024

  1. Configuration menu
    Copy the full SHA
    63d4874 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2024

  1. Configuration menu
    Copy the full SHA
    d81a33c View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2024

  1. Configuration menu
    Copy the full SHA
    236d0d0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    de0bd99 View commit details
    Browse the repository at this point in the history