-
Notifications
You must be signed in to change notification settings - Fork 595
feat!: make note_getter return BoundedVec instead of an Option array #7050
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
Merged
Merged
Changes from 4 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
4fdd046
Make note_getter return BoundedVecs
nventuro 66fd710
Add migration notes
nventuro 1128f9f
Merge branch 'master' into nv/note_getter_bounded_vec
nventuro 3fd6cde
Add link to map PR
nventuro baf7b29
Remove compile script
nventuro 4bbd5a7
Undo noir stdlib accidental change
nventuro 9ed9054
Add todo link
nventuro ffe87e6
Merge branch 'master' into nv/note_getter_bounded_vec
nventuro 781c6e7
Remove console statement
nventuro dc40923
Fix e2e test
nventuro ee64e77
Merge branch 'master' into nv/note_getter_bounded_vec
nventuro e52cd73
Update migration_notes.md
nventuro b0150df
Merge branch 'master' into nv/note_getter_bounded_vec
nventuro 2391e2b
Fix noir tests
nventuro File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,82 @@ | ||
| echo "app_subscription_contract" | ||
|
nventuro marked this conversation as resolved.
Outdated
|
||
| nargo compile --silence-warnings --package app_subscription_contract | ||
| echo "auth_contract" | ||
| nargo compile --silence-warnings --package auth_contract | ||
| echo "avm_initializer_test_contract" | ||
| nargo compile --silence-warnings --package avm_initializer_test_contract | ||
| echo "avm_test_contract" | ||
| nargo compile --silence-warnings --package avm_test_contract | ||
| echo "benchmarking_contract" | ||
| nargo compile --silence-warnings --package benchmarking_contract | ||
| echo "card_game_contract" | ||
| nargo compile --silence-warnings --package card_game_contract | ||
| echo "child_contract" | ||
| nargo compile --silence-warnings --package child_contract | ||
| echo "claim_contract" | ||
| nargo compile --silence-warnings --package claim_contract | ||
| echo "contract_class_registerer_contract" | ||
| nargo compile --silence-warnings --package contract_class_registerer_contract | ||
| echo "contract_instance_deployer_contract" | ||
| nargo compile --silence-warnings --package contract_instance_deployer_contract | ||
| echo "counter_contract" | ||
| nargo compile --silence-warnings --package counter_contract | ||
| echo "crowdfunding_contract" | ||
| nargo compile --silence-warnings --package crowdfunding_contract | ||
| echo "delegated_on_contract" | ||
| nargo compile --silence-warnings --package delegated_on_contract | ||
| echo "delegator_contract" | ||
| nargo compile --silence-warnings --package delegator_contract | ||
| echo "docs_example_contract" | ||
| nargo compile --silence-warnings --package docs_example_contract | ||
| echo "easy_private_token_contract" | ||
| nargo compile --silence-warnings --package easy_private_token_contract | ||
| echo "easy_private_voting_contract" | ||
| nargo compile --silence-warnings --package easy_private_voting_contract | ||
| echo "ecdsa_account_contract" | ||
| nargo compile --silence-warnings --package ecdsa_account_contract | ||
| echo "escrow_contract" | ||
| nargo compile --silence-warnings --package escrow_contract | ||
| echo "fpc_contract" | ||
| nargo compile --silence-warnings --package fpc_contract | ||
| echo "gas_token_contract" | ||
| nargo compile --silence-warnings --package gas_token_contract | ||
| echo "import_test_contract" | ||
| nargo compile --silence-warnings --package import_test_contract | ||
| echo "inclusion_proofs_contract" | ||
| nargo compile --silence-warnings --package inclusion_proofs_contract | ||
| echo "key_registry_contract" | ||
| nargo compile --silence-warnings --package key_registry_contract | ||
| echo "lending_contract" | ||
| nargo compile --silence-warnings --package lending_contract | ||
| echo "multi_call_entrypoint_contract" | ||
| nargo compile --silence-warnings --package multi_call_entrypoint_contract | ||
| echo "parent_contract" | ||
| nargo compile --silence-warnings --package parent_contract | ||
| echo "pending_note_hashes_contract" | ||
| nargo compile --silence-warnings --package pending_note_hashes_contract | ||
| echo "price_feed_contract" | ||
| nargo compile --silence-warnings --package price_feed_contract | ||
| echo "schnorr_account_contract" | ||
| nargo compile --silence-warnings --package schnorr_account_contract | ||
| echo "schnorr_hardcoded_account_contract" | ||
| nargo compile --silence-warnings --package schnorr_hardcoded_account_contract | ||
| echo "schnorr_single_key_account_contract" | ||
| nargo compile --silence-warnings --package schnorr_single_key_account_contract | ||
| echo "stateful_test_contract" | ||
| nargo compile --silence-warnings --package stateful_test_contract | ||
| echo "static_child_contract" | ||
| nargo compile --silence-warnings --package static_child_contract | ||
| echo "static_parent_contract" | ||
| nargo compile --silence-warnings --package static_parent_contract | ||
| echo "test_contract" | ||
| nargo compile --silence-warnings --package test_contract | ||
| echo "test_log_contract" | ||
| nargo compile --silence-warnings --package test_log_contract | ||
| echo "token_blacklist_contract" | ||
| nargo compile --silence-warnings --package token_blacklist_contract | ||
| echo "token_bridge_contract" | ||
| nargo compile --silence-warnings --package token_bridge_contract | ||
| echo "token_contract" | ||
| nargo compile --silence-warnings --package token_contract | ||
| echo "uniswap_contract" | ||
| nargo compile --silence-warnings --package uniswap_contract | ||
This file contains hidden or 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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.