Skip to content

Commit

Permalink
chore: upgrade fvm_sdk for syscall changes (#862)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien authored Nov 18, 2022
1 parent bdeb3bc commit 1b11df4
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
36 changes: 18 additions & 18 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion actors/embryo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ keywords = ["filecoin", "web3", "wasm"]
crate-type = ["cdylib", "lib"]

[dependencies]
fvm_sdk = { version = "3.0.0-alpha.13", optional = true }
fvm_sdk = { version = "3.0.0-alpha.14", optional = true }
fvm_shared = { version = "3.0.0-alpha.12", optional = true }

[features]
Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ paste = "1.0.9"
sha2 = "0.10"

# fil-actor
fvm_sdk = { version = "3.0.0-alpha.13", optional = true }
fvm_sdk = { version = "3.0.0-alpha.14", optional = true }

# test_util
rand = { version = "0.8.5", default-features = false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/runtime/fvm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ where
}

fn new_actor_address(&mut self) -> Result<Address, ActorError> {
Ok(fvm::actor::new_actor_address())
Ok(fvm::actor::next_actor_address())
}

fn create_actor(
Expand Down

0 comments on commit 1b11df4

Please sign in to comment.