We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d3333b commit 48cec1fCopy full SHA for 48cec1f
integration-tests/events/lib.rs
@@ -283,9 +283,10 @@ pub mod events {
283
.expect("encountered invalid contract event data buffer");
284
assert_eq!(!init_value, flipped.value);
285
286
- let signature_topic = <InlineFlipped as ink::env::GetSignatureTopic>::signature_topic()
287
- .map(H256::from)
288
- .unwrap();
+ let signature_topic =
+ <InlineFlipped as ink::env::GetSignatureTopic>::signature_topic()
+ .map(H256::from)
289
+ .unwrap();
290
291
let expected_topics = vec![signature_topic];
292
assert_eq!(expected_topics, contract_event.topics);
0 commit comments