Skip to content

Commit

Permalink
Update submodule link
Browse files Browse the repository at this point in the history
  • Loading branch information
DOBEN committed May 24, 2024
1 parent 34deed3 commit b423ec5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
- Rename subcommand `TransactionSubmit` to `TransactionSignAndSubmit`.
- Add subcommand `TransactionSubmit` to submit a signed transaction on chain.
- Add subcommand `TransactionAddSignature` to add a signature to a partially-signed transaction.
- Add optional `--outFile` flag to all transaction-creating commands to output a partially-singed transaction to a file.
- Add optional `--out` flag to all transaction-creating commands to output a partially-singed transaction to a file.
- Update GHC version to 9.6.4 (lts-22.9).
- Update Rust version to 1.73.
- Support protocol version 7.
Expand Down Expand Up @@ -62,7 +62,7 @@
- Add round and epoch to the output of `raw GetBlockInfo`.
- Add round and epoch to the output of `block show` when they are present.
- Print "Block time" instead of "Slot time" in the output of `block show`.
- In the output of `consensus show-parameters`, only print election difficulty when present.
- In the output of `consensus show-parameters`, only print election difficulty when present.

## 5.2.0

Expand Down Expand Up @@ -125,10 +125,10 @@

- Add support of contract schema V3.
- V3 schemas offer the same options as V2, but also optionally includes a schema for contract events.
- `transaction status` now displays contract events, and a schema can be provided with `--schema`, which
- `transaction status` now displays contract events, and a schema can be provided with `--schema`, which
will be used to parse the contract events. By default events are parsed with the schema embedded in the
contract, if present.
- This enables concordium-client to interact with contracts and schemas
- This enables concordium-client to interact with contracts and schemas
using `concordium-std` version 5.
- Improved formatting of `transaction status` output using contract schemas if
they are available for displaying contract events.
Expand Down
2 changes: 1 addition & 1 deletion src/Concordium/Client/Runner.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1696,7 +1696,7 @@ signAndProcessTransaction verbose txCfg pl intOpts outFile backend = do

-- Decode the payload from the transaction
let decPl = case Types.promoteProtocolVersion pv of
Types.SomeProtocolVersion spv -> Types.decodePayload spv (Types.payloadSize pl) pl
Types.SomeProtocolVersion spv -> Types.decodePayload spv pl
decPayload <- case decPl of
Right decPL -> return decPL
Left err -> logFatal ["Decoding of payload failed: " <> err]
Expand Down
4 changes: 2 additions & 2 deletions src/Concordium/Client/Types/Transaction.hs
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,8 @@ instance AE.FromJSON TransactionJSON where
--
-- The chosen representation is the minimal necessary data needed to construct the
-- 'TransactionSignHash' which is the value that is signed by the signer. The
-- 'TransactionSignHash' and 'payloadSize' should be re-computed when processing a
-- 'SignedTransaction' (e.g. when adding signatures or sending the transaction on-chain).
-- 'TransactionSignHash' should be re-computed when processing a 'SignedTransaction'
-- (e.g. when adding signatures or sending the transaction on-chain).
data SignedTransaction = SignedTransaction
{ -- | Amount of energy dedicated to the execution of this transaction.
stEnergy :: !Energy,
Expand Down

0 comments on commit b423ec5

Please sign in to comment.