Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alex v committed Aug 30, 2024
1 parent 7235c09 commit 9ba4475
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ enum LogFlags : uint64_t {
SCAN = (1 << 28),
TXPACKAGES = (1 << 29),
DANDELION = (1 << 30),
ALL = ~(uint64_t)0,
ALL = ~(uint32_t)0,
};
enum class Level {
Trace = 0, // High-volume or detailed logging for development/debugging
Expand Down
2 changes: 1 addition & 1 deletion test/functional/wallet_implicitsegwit.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def send_a_to_b(receive_node, send_node):

def check_implicit_transactions(implicit_keys, implicit_node):
# The implicit segwit node allows conversion all possible ways
txs = implicit_node.listtransactions(None, 99999)
txs = implicit_node.listpendingtransactions(None, 99999)
for a in address_types:
pubkey = implicit_keys[a]
for b in address_types:
Expand Down

0 comments on commit 9ba4475

Please sign in to comment.