Skip to content

Commit

Permalink
Using stake-contract-types 0.0.1-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
miloszm committed Dec 19, 2023
1 parent c44af86 commit b8c1cb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dusk-wallet-core"
version = "0.24.0-plonk.0.16-rc.1"
version = "0.24.0-plonk.0.16-rc.2"
edition = "2021"
description = "The core functionality of the Dusk wallet"
license = "MPL-2.0"
Expand All @@ -22,7 +22,7 @@ dusk-bls12_381-sign = { version = "0.5", default-features = false }
rkyv = { version = "0.7", default-features = false }
ff = { version = "0.13", default-features = false }

stake-contract-types = "0.0.1-rc.1"
stake-contract-types = "0.0.1-rc.2"

[dev-dependencies]
rand = "^0.8"
Expand Down
2 changes: 1 addition & 1 deletion src/imp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ where
.fetch_stake(&owner_pk)
.map_err(Error::from_state_err)?;

let msg = allow_signature_message(stake.counter, *staker);
let msg = allow_signature_message(stake.counter, staker);
let signature = owner_sk.sign(&owner_pk, &msg);

// Since we're not transferring value *to* the contract the crossover
Expand Down

0 comments on commit b8c1cb6

Please sign in to comment.