diff --git a/barretenberg/cpp/src/barretenberg/wasi/wasi_stubs.cpp b/barretenberg/cpp/src/barretenberg/wasi/wasi_stubs.cpp index af2520e76c42..d5b6cc5d3928 100644 --- a/barretenberg/cpp/src/barretenberg/wasi/wasi_stubs.cpp +++ b/barretenberg/cpp/src/barretenberg/wasi/wasi_stubs.cpp @@ -165,7 +165,8 @@ int32_t __imported_wasi_snapshot_preview1_fd_renumber(int32_t, int32_t) int32_t __imported_wasi_snapshot_preview1_fd_tell(int32_t, uint64_t*) { - info("fd_tell stubbed."); + info("fd_tell not implemented."); + abort(); return 0; } @@ -200,6 +201,8 @@ int32_t __imported_wasi_snapshot_preview1_fd_prestat_dir_name(int32_t, int32_t, int32_t __imported_wasi_snapshot_preview1_path_filestat_get(int32_t, int32_t, int32_t, int32_t, int32_t) { + info("path_filestat_get not implemented."); + abort(); return 0; }