Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion wallet/src/Cardano/Wallet/Kernel/Transactions.hs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ pay activeWallet spendingPassword opts accountId payees = do
Right (txAux, partialMeta, _utxo) -> do
let sz = fromIntegral $ BL.length $ serialize txAux
maxSz <- Node.getMaxTxSize (walletPassive activeWallet ^. walletNode)
if sz > maxSz then
if sz >= maxSz then
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸ‘Œ

return
. Left
. PaymentNewTransactionError
Expand Down