Skip to content

Commit ede8a6a

Browse files
authored
Merge pull request #2530 from nervosnetwork/testnet
Deploy to mainnet
2 parents 8e7c987 + 2952eec commit ede8a6a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/models/concerns/cell_outputs/extra_info.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,9 @@ def tags
185185
tags = []
186186
tags << "fiber" if lock_script.code_hash == Settings.fiber_funding_code_hash
187187
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"
188+
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")
189191
tags
190192
end
191193
end

0 commit comments

Comments
 (0)