Skip to content

Commit 338fdf7

Browse files
authored
Change default limit for transactions to 65536 (uint16) (#20196)
Change default limit for transactions to 65536
1 parent f9cad70 commit 338fdf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chia/cmds/wallet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def get_transaction_cmd(
9494
"--limit",
9595
help="Max number of transactions to return",
9696
type=int,
97-
default=(2**32 - 1),
97+
default=(2**16 - 1),
9898
show_default=True,
9999
required=False,
100100
)

0 commit comments

Comments
 (0)