We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8e7c987 + 2952eec commit ede8a6aCopy full SHA for ede8a6a
app/models/concerns/cell_outputs/extra_info.rb
@@ -185,7 +185,9 @@ def tags
185
tags = []
186
tags << "fiber" if lock_script.code_hash == Settings.fiber_funding_code_hash
187
tags << "deployment" if Contract.exists?(deployed_cell_output_id: id)
188
- tags << "multisig" if lock_script.code_hash == Settings.multisig_code_hash && lock_script.hash_type == "data1"
+ tags << "multisig" if
189
+ (lock_script.code_hash == Settings.multisig_code_hash && lock_script.hash_type == "data1") ||
190
+ (lock_script.code_hash == Settings.secp_multisig_cell_type_hash && lock_script.hash_type == "type")
191
tags
192
end
193
0 commit comments