You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before this PR, the `test_del_tx` test was failing for sqlite. This was
because `del_tx` pulls the TransactionDetails object using
`select_transaction_details_by_txid` method which gets the transaction
details' data with a non-None transaction field even if the
`include_raw` argument is `false`. So the test was expecting a
TransactionDetails object with a None transaction field but will
get one with a non-None transaction field. Furthermore, it is not
always necessary to get a transaction after getting the transaction
details, but `select_transaction_details_by_txid` does it all the time,
whether `include_raw` is false or true.
0 commit comments