We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ledger
cardano-api
cardano-api ==9.0.0.0
Issue description: For all types of transaction, size reported by cardano-api is 1-byte more compared to the size reported by ledger.
reportFee:: Tx ConwayEra -> IO () reportFee = case tx of ShelleyTx era ledgerTx -> let txWitnesses = ledgerTx ^. L.witsTxL sizeLedger = ledgerTx ^. L.sizeTxF sizeCapi = fromIntegral $ BS.length $ serialiseToCBOR tx txFee=L.unCoin $ ledgerTx ^. L.bodyTxL ^. L.feeTxBodyL in do putStrLn $ "Fee : " ++ show txFee if sizeLedger /= sizeCapi then do putStrLn $ "Tx Bytes (ledger): " ++ show sizeLedger putStrLn $ "Tx Bytes (api) : " ++ show sizeCapi else putStrLn $ "Tx Bytes : " ++ show sizeCapi
1.1 SimpleMarketV2 Flow : "Mint Native Asset" Fee : 897 Tx Bytes (ledger): 796 Tx Bytes (api) : 797 1.2 SimpleMarketV2 Flow : "Create reference script UTxO" Fee : 4944 Tx Bytes (ledger): 4843 Tx Bytes (api) : 4844 1.3 SimpleMarketV2 Flow : "Place on Sell" Fee : 903 Tx Bytes (ledger): 802 Tx Bytes (api) : 803 1.4 SimpleMarketV2 Flow : "Withdraw" ExUnits : memory = 1085202 cpu = 293558927 Fee : 88861 Tx Bytes (ledger): 4978 Tx Bytes (api) : 4979 1.5 SimpleMarketV2 Flow : "Buy" ExUnits : memory = 1750602 cpu = 465219918 Fee : 139670 Tx Bytes (ledger): 5016 Tx Bytes (api) : 5017
The text was updated successfully, but these errors were encountered:
This could be due to: https://github.com/IntersectMBO/cardano-api/pull/625/files?diff=split&w=1#r1743693050 Can you test again with newer cardano-api?
Sorry, something went wrong.
@mesudip Can you re-test and respond to this issue?
mesudip
spannercode
No branches or pull requests
cardano-api ==9.0.0.0
Issue description: For all types of transaction, size reported by
cardano-api
is 1-byte more compared to the size reported byledger
.Code used to report the transactions:
Output log
The text was updated successfully, but these errors were encountered: