This repository has been archived by the owner on Jan 13, 2023. It is now read-only.
bundle.get_messages
Returns Wrong Messages for ProposedBundle
#257
Labels
Description
Calling
get_messages
on aProposedBundle
object returns only the message of the first transaction in the bundle.Analysis
get_messages
relies ongroup_transactions
to iterate over transactions in the bundle.group_transactions
usesself.transactions
list, that does not exist forProposedBundle
objects, it is created inBundle.__init__()
. Instead,ProposedBundle
uses_transactions
list to keep track of its transactions.Discussion
Can we extend
get_messages
to work onProposedBundle
s as well?Why the different naming of
transactions
and_transactions
lists?Reproduce
The text was updated successfully, but these errors were encountered: