Skip to content

Commit

Permalink
(fix) More fixes for transit
Browse files Browse the repository at this point in the history
  • Loading branch information
rrw-zilliqa committed Jun 27, 2024
1 parent d16d292 commit fe8cf80
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ default: release
APT_REQUIREMENTS= autoconf bison build-essential ca-certificates ccache cmake cron curl dnsutils gawk \
git lcov libcurl4-openssl-dev libev-dev libgmp-dev libpcre3-dev libssl-dev libtool \
libxml2-utils ninja-build nload ocaml ocl-icd-opencl-dev opam openssh-client patchelf pkg-config \
rsync rsyslog tar unzip vim wget zip zlib1g-dev
rsync rsyslog tar unzip vim wget zip zlib1g-dev ocaml-dune

install-from-apt:
apt-get update -y
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ To force vcpkg to try again. You'll also need to do:

```
make opamdep
eval $(opam env)
```

To make opam dependencies. You may well need to:
Expand Down
2 changes: 1 addition & 1 deletion src/eval/Ipcmessage_pb.ml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ let rec encode_proto_scilla_val_map (v : Ipcmessage_types.proto_scilla_val_map)
encoder =
let encode_key = Pbrt.Encoder.string in
let encode_value x encoder =
Pbrt.Encoder.nested encode_proto_scilla_val x encoder
Pbrt.Encoder.nested (encode_proto_scilla_val x) encoder
in
List.iter v.Ipcmessage_types.m ~f:(fun (k, v) ->
Pbrt.Encoder.key 1 Pbrt.Bytes encoder;
Expand Down

0 comments on commit fe8cf80

Please sign in to comment.