Skip to content

Commit f83439c

Browse files
committed
placeholder fix
1 parent 6d4c298 commit f83439c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fplus-lib/src/core/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ impl LDNApplication {
687687
repo: String,
688688
) -> Result<ApplicationFile, LDNError> {
689689
// Get multisig threshold from blockchain
690-
let blockchain_threshold = match get_multisig_threshold_for_actor("actor_address").await {
690+
let blockchain_threshold = match get_multisig_threshold_for_actor(&signer.signing_address).await {
691691
Ok(threshold) => Some(threshold),
692692
Err(_) => None,
693693
};
@@ -803,7 +803,7 @@ impl LDNApplication {
803803
repo: String,
804804
) -> Result<ApplicationFile, LDNError> {
805805
// Get multisig threshold from blockchain
806-
let blockchain_threshold = match get_multisig_threshold_for_actor("actor_address").await {
806+
let blockchain_threshold = match get_multisig_threshold_for_actor(&signer.signing_address).await {
807807
Ok(threshold) => Some(threshold),
808808
Err(_) => None,
809809
};

0 commit comments

Comments
 (0)