Skip to content

Commit 6d41e93

Browse files
committed
fix(ibc-app): remove upgrade path default
1 parent 436703f commit 6d41e93

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ibc-clients/ics07-tendermint/src/client_state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ mod tests {
113113
max_clock_drift: Duration::new(3, 0),
114114
latest_height: Height::new(1, 10).expect("Never fails"),
115115
proof_specs: ProofSpecs::cosmos(),
116-
upgrade_path: Default::default(),
116+
upgrade_path: Vec::new(),
117117
allow_update: AllowUpdate {
118118
after_expiry: false,
119119
after_misbehaviour: false,

ibc-clients/ics07-tendermint/types/src/client_state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ mod tests {
445445
max_clock_drift: Duration::new(3, 0),
446446
latest_height: Height::new(0, 10).expect("Never fails"),
447447
proof_specs: ProofSpecs::cosmos(),
448-
upgrade_path: Default::default(),
448+
upgrade_path: Vec::new(),
449449
allow_update: AllowUpdate {
450450
after_expiry: false,
451451
after_misbehaviour: false,

0 commit comments

Comments
 (0)