Skip to content

Commit

Permalink
feat: add __hash__ to the xdr classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
overcat committed Aug 24, 2023
1 parent e21cc9a commit c8022cb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ xdr/Stellar-internal.x \
xdr/Stellar-contract-config-setting.x

XDRGEN_REPO=overcat/xdrgen
XDRGEN_COMMIT=3a25689ac881fd9370b45ac2e98908cea86ddaf3
XDRGEN_COMMIT=904ac3c9925902fa892fbfd4883e20b056f71712
XDRNEXT_COMMIT=e372df9f677961aac04c5a4cc80a3667f310b29f

UNAME := $(shell uname)
Expand Down
12 changes: 6 additions & 6 deletions stellar_sdk/xdr/constants.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# This is an automatically generated file.
# DO NOT EDIT or your changes may be overwritten
#: const CONTRACT_COST_COUNT_LIMIT = 1024;
CONTRACT_COST_COUNT_LIMIT: int = 1024
#: const SC_SPEC_DOC_LIMIT = 1024;
SC_SPEC_DOC_LIMIT: int = 1024
#: const SCSYMBOL_LIMIT = 32;
SCSYMBOL_LIMIT: int = 32
#: const MASK_ACCOUNT_FLAGS = 0x7;
MASK_ACCOUNT_FLAGS: int = 0x7
#: const MASK_ACCOUNT_FLAGS_V17 = 0xF;
Expand Down Expand Up @@ -36,3 +30,9 @@
MAX_OPS_PER_TX: int = 100
#: const LIQUIDITY_POOL_FEE_V18 = 30;
LIQUIDITY_POOL_FEE_V18: int = 30
#: const SC_SPEC_DOC_LIMIT = 1024;
SC_SPEC_DOC_LIMIT: int = 1024
#: const SCSYMBOL_LIMIT = 32;
SCSYMBOL_LIMIT: int = 32
#: const CONTRACT_COST_COUNT_LIMIT = 1024;
CONTRACT_COST_COUNT_LIMIT: int = 1024

0 comments on commit c8022cb

Please sign in to comment.