-
Notifications
You must be signed in to change notification settings - Fork 956
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
Alternative draft + multisig #1742
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add the epoch-sleep helper, which queries the current epoch and then sleeps until the epoch is greater (polling once a second). This can replace the multiple namadac invocations used in e2e tests.
Instead of manually querying, we now epoch-sleep until the next epoch, limiting the number of clients invoked to 1. Also update the epoch sleep e2e test to check the return value (parsed from the output of epoch-sleep).
PoS hammered the node as fast as possible with epoch queries in its tests to wait for a specified epoch. Instead, epoch-sleep repeatedly until the target epoch has been reached. This could be improved further by adding an --until parameter to epoch-sleep.
* tiago/remove-native-vp-addr: changelog: add #1725 Remove `ADDR` associated type from native VPs
* main: ci: clean up fix formatting don't use flaky sleep refactor creation of namada nodes make Who clonable test/e2e/slashing: wait for wasm on original validator test/e2e/proposal_submission: wait for proposal to be committed test/e2e/double_signing: path for validator copy that keeps logs in CI remove more --mode argument in the generator script remove deprecated --mode argument in scripts
* origin/tomas/pos-fix-rewards-boundary: changelog: add #1729 test/ledger/finalize_block: fix slashing tests pos/slash: fix the validator state update to be in sync with set changes app/ledger/finalize_block: log block rewards before recording slashes test/e2e/slashing: extend the test to discover rewards issues pos: error out if validator is not in expected state for rewards
* origin/tomas/pos-data-history: changelog: add #1733 pos/epoched: keep 2 past epochs of data by default
* bat/feature/refactor-cli: [feat]: Moved cli commands common to testing, cli, and sdk out into apps
* origin/yuji/ibc-multitoken: remove test_invalid_sender remove negative check remove vp_token fix client_connections encoding add comments fix according to feedback fix a test fix for tx signing for clippy fix multitoken vp to check the minter for clippy modify EthBridge VP and EthBridgePool VP for multitoken revert unexpected changes change eth_bridge balance keys to multitoken keys add unit tests remove InternalAddress::Minted rename fix token decoding fix balance print add multitoken VP file change to multitokens change multitoken clean denom validation
…added max_signature_per_transaction genesis parameter
…ifiation, rebuild wasm_for_tests
* fraccaman/multisignature-draft-rebase: added changelog test: fix e2e test test: fix unit tests wasm: added new account methods to tx_prelude, refactor signature verifiation, rebuild wasm_for_tests docs: update tx definitions apps,shared: added cli tx and query methods core: added multisignature tx format, refacctor account storage api, added max_signature_per_transaction genesis parameter
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
WARNING: ☠️ do not merge this branch into your development branches and do not rely on it being stable. ☠️
contains:
From<u64>
on Ethereum bridge voting power type #1692