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

Minimum Account Balance in Algod #3287

Merged
merged 39 commits into from
Dec 17, 2021
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
c8e17b7
initial commit
Dec 8, 2021
f247cbe
Merge branch 'master' of https://github.com/algorand/go-algorand into…
Dec 8, 2021
f8edde8
don't run the debugger on circle
Dec 8, 2021
ee5451c
can query TEAL for stateful min_balance. Next up: get algod to do the…
Dec 9, 2021
7e4daef
adding facade, but no content
Dec 9, 2021
5dafabb
revert
Dec 9, 2021
4ed0617
remote debugging
Dec 9, 2021
88544cf
add get_endpoint_info to e2e python Goal
Dec 9, 2021
d0cacfe
add get_endpoint_info to e2e python Goal
Dec 9, 2021
1f1fc88
testing
Dec 9, 2021
bd90ea6
tests basically passing
Dec 10, 2021
035432d
simple goal e2e test is passing
Dec 10, 2021
85de603
test passing -knock on wood-
Dec 10, 2021
d6034e5
Update daemon/algod/api/algod.oas2.json
tzaffi Dec 10, 2021
3bcb8bc
better wording
Dec 10, 2021
2139807
Merge branch 'master' of https://github.com/algorand/go-algorand into…
Dec 10, 2021
2b7a8b5
comment on its own line
Dec 11, 2021
9edf2e0
improvments in python abi e2e test wrapper
Dec 13, 2021
aa2196b
Merge branch 'master' of https://github.com/algorand/go-algorand into…
Dec 13, 2021
4894d95
per reviewer suggestions - use block header instead of block + add co…
Dec 13, 2021
42adb53
longer if clearer name for execute_singleton()
Dec 13, 2021
7dd6db4
Pass one .exp test and update the README
Dec 14, 2021
9c71612
Merge branch 'master' of https://github.com/algorand/go-algorand into…
Dec 14, 2021
5ecd5b0
Less TEAL, more python testing comments.
Dec 14, 2021
277c6ce
notFound --> internalError
Dec 15, 2021
395a6e4
Merge branch 'master' of https://github.com/algorand/go-algorand into…
Dec 15, 2021
992609b
removing ABI dependency
Dec 16, 2021
d15fc97
Merge branch 'master' of https://github.com/algorand/go-algorand into…
Dec 16, 2021
5d20acb
remove the teal file
Dec 16, 2021
c12a0ed
Merge branch 'master' of https://github.com/algorand/go-algorand into…
Dec 16, 2021
19ed866
revert
Dec 16, 2021
19e2a40
reorder functions
Dec 16, 2021
084adf0
better endpoint description
Dec 16, 2021
125bfbf
INTERACTIVE switch at the top
Dec 16, 2021
ae82da2
revert formatting changes
Dec 16, 2021
5efca2c
more realistic consensus params
Dec 16, 2021
bb5d4a9
Per reviewer suggestions
Dec 17, 2021
c50f1f8
Update test/scripts/e2e_subs/min_balance.py
tzaffi Dec 17, 2021
af2acec
Update test/scripts/e2e_subs/min_balance.py
tzaffi Dec 17, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remote debugging
  • Loading branch information
Zeph Grunschlag committed Dec 9, 2021
commit 4ed06175c824f19800be2e66fed324eac457f263
2 changes: 2 additions & 0 deletions test/scripts/e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ if [ -z "$E2E_TEST_FILTER" ] || [ "$E2E_TEST_FILTER" == "SCRIPTS" ]; then
. "${TEMPDIR}/ve/bin/activate"
"${TEMPDIR}/ve/bin/pip3" install --upgrade pip
"${TEMPDIR}/ve/bin/pip3" install --upgrade py-algorand-sdk cryptography
# enable remote debugging:
tzaffi marked this conversation as resolved.
Show resolved Hide resolved
"${TEMPDIR}/ve/bin/pip3" install --upgrade debugpy
duration "e2e client setup"

if [ $INTERACTIVE ]; then
Expand Down