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

implement suggested params #72

Merged
merged 27 commits into from
Feb 28, 2020
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
4521884
enable user to specify fee when getting transactions for the split co…
mjiang102628 Jan 23, 2020
6e00763
Update template.py
mjiang102628 Jan 23, 2020
6e0e021
Update template.py
mjiang102628 Jan 23, 2020
8ad2483
Merge branch 'develop' into michelle/split
mjiang102628 Jan 30, 2020
1345c16
Update test_unit.py
mjiang102628 Jan 30, 2020
3234f89
fix ratio implementation
mjiang102628 Feb 5, 2020
333fa1e
merge from develop
mjiang102628 Feb 5, 2020
b3efcbf
flip order of rat_1 and rat_2, use new golden
mjiang102628 Feb 5, 2020
0121530
add get_transaction for HTLC
mjiang102628 Feb 5, 2020
6930a7e
read receiver from contract in HTLC
mjiang102628 Feb 5, 2020
09ea8d0
Update test_unit.py
mjiang102628 Feb 5, 2020
e6a5f8f
Update test_unit.py
mjiang102628 Feb 5, 2020
f76c971
fix encoding bug
mjiang102628 Feb 5, 2020
2387417
add check for preimage matching hash image
mjiang102628 Feb 7, 2020
4bbf251
Update template.py
mjiang102628 Feb 11, 2020
7d821bb
implement txn params
mjiang102628 Feb 12, 2020
a6155a7
fix checks for override values
mjiang102628 Feb 12, 2020
51fadd3
update docstrings to allow None for params argument
mjiang102628 Feb 12, 2020
7a8984c
add SuggestedParams class
mjiang102628 Feb 19, 2020
f2ae305
Update transaction.py
mjiang102628 Feb 20, 2020
6349ba9
merge from develop
mjiang102628 Feb 20, 2020
5b6dbb6
pep8 compliance and extra check during encoding
mjiang102628 Feb 21, 2020
d6cc1b9
make genesisID optional
mjiang102628 Feb 25, 2020
4c4b487
Update transaction.py
mjiang102628 Feb 25, 2020
351dc48
Update template.py
mjiang102628 Feb 25, 2020
d8988e4
Update algod.py
mjiang102628 Feb 25, 2020
2238c7c
Update test_unit.py
mjiang102628 Feb 26, 2020
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
Update algod.py
  • Loading branch information
mjiang102628 committed Feb 25, 2020
commit d8988e4b80b92dc96db088c6e3d53ae1293ad869
2 changes: 1 addition & 1 deletion algosdk/algod.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,11 +230,11 @@ def suggested_params(self, **kwargs):
res = self.algod_request("GET", req, **kwargs)

return transaction.SuggestedParams(
res["fee"],
res["lastRound"],
res["lastRound"] + 1000,
res["genesishashb64"],
res["genesisID"],
res["fee"],
False)

def send_raw_transaction(self, txn, **kwargs):
Expand Down