File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -687,7 +687,7 @@ impl LDNApplication {
687
687
repo : String ,
688
688
) -> Result < ApplicationFile , LDNError > {
689
689
// 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 {
691
691
Ok ( threshold) => Some ( threshold) ,
692
692
Err ( _) => None ,
693
693
} ;
@@ -803,7 +803,7 @@ impl LDNApplication {
803
803
repo : String ,
804
804
) -> Result < ApplicationFile , LDNError > {
805
805
// 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 {
807
807
Ok ( threshold) => Some ( threshold) ,
808
808
Err ( _) => None ,
809
809
} ;
You can’t perform that action at this time.
0 commit comments