We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 248163f commit 93dd99aCopy full SHA for 93dd99a
1 file changed
relay/src/handler.rs
@@ -132,7 +132,7 @@ impl Handler {
132
}
133
let chain = chain.prove(&builder.chain_proof_request()).await?;
134
let (msg, unsigned) = builder.build(chain)?;
135
- if !unsigned.is_empty() {
+ if !unsigned.is_empty() && unsigned.iter().all(|u| !u.records.is_empty()) {
136
let missing_sigs = unsigned.iter().map(|u| u.canonical.to_string())
137
.collect::<Vec<_>>().join(", ");
138
0 commit comments