@@ -46,111 +46,111 @@ pub trait WeightInfo {
4646
4747impl WeightInfo for ( ) {
4848 fn create_client ( ) -> Weight {
49- Weight :: from_ref_time ( 0 )
49+ Weight :: default ( )
5050 }
5151
5252 fn conn_open_init ( ) -> Weight {
53- Weight :: from_ref_time ( 0 )
53+ Weight :: default ( )
5454 }
5555
5656 fn update_tendermint_client ( i : u32 ) -> Weight {
57- Weight :: from_ref_time ( 3 * i as u64 * WEIGHT_REF_TIME_PER_MILLIS )
57+ Weight :: from_parts ( 3 * i as u64 * WEIGHT_REF_TIME_PER_MILLIS , 0 )
5858 }
5959
6060 fn conn_try_open_tendermint ( ) -> Weight {
61- Weight :: from_ref_time ( 0 )
61+ Weight :: default ( )
6262 }
6363
6464 fn conn_open_ack_tendermint ( ) -> Weight {
65- Weight :: from_ref_time ( 0 )
65+ Weight :: default ( )
6666 }
6767
6868 fn conn_open_confirm_tendermint ( ) -> Weight {
69- Weight :: from_ref_time ( 0 )
69+ Weight :: default ( )
7070 }
7171
7272 fn channel_open_init ( ) -> Weight {
73- Weight :: from_ref_time ( 0 )
73+ Weight :: default ( )
7474 }
7575
7676 fn channel_open_try_tendermint ( ) -> Weight {
77- Weight :: from_ref_time ( 0 )
77+ Weight :: default ( )
7878 }
7979
8080 fn channel_open_ack_tendermint ( ) -> Weight {
81- Weight :: from_ref_time ( 0 )
81+ Weight :: default ( )
8282 }
8383
8484 fn channel_open_confirm_tendermint ( ) -> Weight {
85- Weight :: from_ref_time ( 0 )
85+ Weight :: default ( )
8686 }
8787
8888 fn channel_close_init ( ) -> Weight {
89- Weight :: from_ref_time ( 0 )
89+ Weight :: default ( )
9090 }
9191
9292 fn channel_close_confirm_tendermint ( ) -> Weight {
93- Weight :: from_ref_time ( 0 )
93+ Weight :: default ( )
9494 }
9595
9696 fn recv_packet_tendermint ( _i : u32 ) -> Weight {
97- Weight :: from_ref_time ( 0 )
97+ Weight :: default ( )
9898 }
9999
100100 fn ack_packet_tendermint ( _i : u32 , _j : u32 ) -> Weight {
101- Weight :: from_ref_time ( 0 )
101+ Weight :: default ( )
102102 }
103103
104104 fn timeout_packet_tendermint ( _i : u32 ) -> Weight {
105- Weight :: from_ref_time ( 0 )
105+ Weight :: default ( )
106106 }
107107
108108 fn transfer ( ) -> Weight {
109- Weight :: from_ref_time ( 0 )
109+ Weight :: default ( )
110110 }
111111
112112 fn on_chan_open_init ( ) -> Weight {
113- Weight :: from_ref_time ( 0 )
113+ Weight :: default ( )
114114 }
115115
116116 fn on_chan_open_try ( ) -> Weight {
117- Weight :: from_ref_time ( 0 )
117+ Weight :: default ( )
118118 }
119119
120120 fn on_recv_packet ( ) -> Weight {
121- Weight :: from_ref_time ( 0 )
121+ Weight :: default ( )
122122 }
123123
124124 fn on_chan_open_ack ( ) -> Weight {
125- Weight :: from_ref_time ( 0 )
125+ Weight :: default ( )
126126 }
127127
128128 fn on_chan_open_confirm ( ) -> Weight {
129- Weight :: from_ref_time ( 0 )
129+ Weight :: default ( )
130130 }
131131
132132 fn on_chan_close_init ( ) -> Weight {
133- Weight :: from_ref_time ( 0 )
133+ Weight :: default ( )
134134 }
135135
136136 fn on_chan_close_confirm ( ) -> Weight {
137- Weight :: from_ref_time ( 0 )
137+ Weight :: default ( )
138138 }
139139
140140 fn on_acknowledgement_packet ( ) -> Weight {
141- Weight :: from_ref_time ( 0 )
141+ Weight :: default ( )
142142 }
143143
144144 fn on_timeout_packet ( ) -> Weight {
145- Weight :: from_ref_time ( 0 )
145+ Weight :: default ( )
146146 }
147147
148148 fn update_grandpa_client ( _i : u32 , _j : u32 ) -> Weight {
149- Weight :: from_ref_time ( 0 )
149+ Weight :: default ( )
150150 }
151151
152152 fn packet_cleanup ( _i : u32 ) -> Weight {
153- Weight :: from_ref_time ( 0 )
153+ Weight :: default ( )
154154 }
155155}
156156
0 commit comments