Skip to content

Commit

Permalink
Merge pull request #31 from holochain/minor-fixes-for-holochain-update
Browse files Browse the repository at this point in the history
Add minor fixes for Holochain update
  • Loading branch information
mjbrisebois authored Aug 20, 2024
2 parents 708ac1f + 29c7fae commit 4e7e403
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 9 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pkgs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import (pkgs.fetchFromGitHub {
owner = "spartan-holochain-counsel";
repo = "nix-overlay";
rev = "9c0ed332596994faaacb35593a2d427f9ac38bf2";
sha256 = "E8dKMuhnd51Rh1tLud/asf/4TTFuZaIs0fZbe/rsUuQ=";
rev = "5bae4a38735d74633c9c089b5c896cb9631a295b";
sha256 = "E/FvMyUgEB5MYL+s46YSiHPOAJiurKZDMQy1oxak6bg=";
}) {
inherit pkgs;
inherit system;
Expand Down
1 change: 1 addition & 0 deletions tests/integration/test_change_rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ describe("DeepKey", function () {
const holochain = new Holochain({
"timeout": 20_000,
"default_stdout_loggers": log.level_rank > 3,
"default_stderr_loggers": log.level_rank > 3,
});

before(async function () {
Expand Down
3 changes: 1 addition & 2 deletions zomes/deepkey/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ name = "deepkey"

[dependencies]
hc_deepkey_types = { workspace = true }
hdi = { workspace = true }
hdk = { workspace = true }
hdi = { workspace = true, features = ["trace"] }
holo_hash = { workspace = true }
rmp-serde = { workspace = true }
serde = { workspace = true }
Expand Down
1 change: 0 additions & 1 deletion zomes/deepkey/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ use hdi_extensions::{
guest_error,
};
use hdi::prelude::*;
use hdk::prelude::debug;


pub fn serialize<T>(target: &T) -> ExternResult<Vec<u8>>
Expand Down

0 comments on commit 4e7e403

Please sign in to comment.