Skip to content

Commit

Permalink
Merge pull request #2 from dastardlychimp/io2
Browse files Browse the repository at this point in the history
TOK-354 Fix fees signatures
  • Loading branch information
KitHat committed Aug 28, 2018
2 parents 3acf574 + 5b62cd5 commit bef7445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sovtokenfees/sovtokenfees/static_fee_req_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def deduct_fees(self, request, cons_time, ledger_id, seq_no, txn):
# This is correct since FEES is changed from config ledger whose
# transactions have no fees
fees = self.get_txn_fees(request)
sigs = {i[0]: s for i, s in zip(inputs, signatures)}
sigs = {i[ADDRESS]: s for i, s in zip(inputs, signatures)}
txn = {
OPERATION: {
TXN_TYPE: FEE_TXN,
Expand Down

0 comments on commit bef7445

Please sign in to comment.