@@ -565,7 +565,7 @@ pub mod pallet {
565565 #[ pallet:: call]
566566 impl < T : Config > Pallet < T > {
567567 /// Claims legacy wallet and transfers the balance to the sender's account.
568- #[ pallet:: call_index( 0 ) ]
568+ #[ pallet:: call_index( 1 ) ]
569569 #[ pallet:: weight( <T as Config >:: WeightInfo :: claim_legacy_wallet( ) ) ]
570570 pub fn claim_legacy_wallet (
571571 origin : OriginFor < T > ,
@@ -596,7 +596,7 @@ pub mod pallet {
596596 }
597597
598598 /// Registers an external address on `blockchain` and `network` with value `address`
599- #[ pallet:: call_index( 1 ) ]
599+ #[ pallet:: call_index( 2 ) ]
600600 #[ pallet:: weight( <T as Config >:: WeightInfo :: register_address( ) ) ]
601601 pub fn register_address (
602602 origin : OriginFor < T > ,
@@ -639,7 +639,7 @@ pub mod pallet {
639639 Ok ( ( ) )
640640 }
641641
642- #[ pallet:: call_index( 2 ) ]
642+ #[ pallet:: call_index( 3 ) ]
643643 #[ pallet:: weight( <T as Config >:: WeightInfo :: add_ask_order( ) ) ]
644644 pub fn add_ask_order (
645645 origin : OriginFor < T > ,
@@ -681,7 +681,7 @@ pub mod pallet {
681681 Ok ( ( ) )
682682 }
683683
684- #[ pallet:: call_index( 3 ) ]
684+ #[ pallet:: call_index( 4 ) ]
685685 #[ pallet:: weight( <T as Config >:: WeightInfo :: add_bid_order( ) ) ]
686686 pub fn add_bid_order (
687687 origin : OriginFor < T > ,
@@ -723,7 +723,7 @@ pub mod pallet {
723723 Ok ( ( ) )
724724 }
725725
726- #[ pallet:: call_index( 4 ) ]
726+ #[ pallet:: call_index( 5 ) ]
727727 #[ pallet:: weight( <T as Config >:: WeightInfo :: add_offer( ) ) ]
728728 pub fn add_offer (
729729 origin : OriginFor < T > ,
@@ -775,7 +775,7 @@ pub mod pallet {
775775 Ok ( ( ) )
776776 }
777777
778- #[ pallet:: call_index( 5 ) ]
778+ #[ pallet:: call_index( 6 ) ]
779779 #[ pallet:: weight( <T as Config >:: WeightInfo :: add_deal_order( ) ) ]
780780 pub fn add_deal_order (
781781 origin : OriginFor < T > ,
@@ -827,7 +827,7 @@ pub mod pallet {
827827 Ok ( ( ) )
828828 }
829829
830- #[ pallet:: call_index( 6 ) ]
830+ #[ pallet:: call_index( 7 ) ]
831831 #[ pallet:: weight( <T as Config >:: WeightInfo :: lock_deal_order( ) ) ]
832832 pub fn lock_deal_order (
833833 origin : OriginFor < T > ,
@@ -854,7 +854,7 @@ pub mod pallet {
854854 Ok ( ( ) )
855855 }
856856
857- #[ pallet:: call_index( 7 ) ]
857+ #[ pallet:: call_index( 8 ) ]
858858 #[ pallet:: weight( <T as Config >:: WeightInfo :: fund_deal_order( ) ) ]
859859 pub fn fund_deal_order (
860860 origin : OriginFor < T > ,
@@ -907,7 +907,7 @@ pub mod pallet {
907907 Ok ( ( ) )
908908 }
909909
910- #[ pallet:: call_index( 8 ) ]
910+ #[ pallet:: call_index( 9 ) ]
911911 #[ pallet:: weight( <T as Config >:: WeightInfo :: register_deal_order( ) ) ]
912912 pub fn register_deal_order (
913913 origin : OriginFor < T > ,
@@ -1018,7 +1018,7 @@ pub mod pallet {
10181018 Ok ( ( ) )
10191019 }
10201020
1021- #[ pallet:: call_index( 9 ) ]
1021+ #[ pallet:: call_index( 10 ) ]
10221022 #[ pallet:: weight( <T as Config >:: WeightInfo :: close_deal_order( ) ) ]
10231023 pub fn close_deal_order (
10241024 origin : OriginFor < T > ,
@@ -1072,7 +1072,7 @@ pub mod pallet {
10721072 }
10731073
10741074 #[ transactional]
1075- #[ pallet:: call_index( 10 ) ]
1075+ #[ pallet:: call_index( 11 ) ]
10761076 #[ pallet:: weight( <T as Config >:: WeightInfo :: request_collect_coins( ) ) ]
10771077 pub fn request_collect_coins (
10781078 origin : OriginFor < T > ,
@@ -1114,7 +1114,7 @@ pub mod pallet {
11141114 }
11151115
11161116 #[ transactional]
1117- #[ pallet:: call_index( 11 ) ]
1117+ #[ pallet:: call_index( 12 ) ]
11181118 #[ pallet:: weight( <T as Config >:: WeightInfo :: register_funding_transfer_legacy( ) ) ]
11191119 pub fn register_funding_transfer_legacy (
11201120 origin : OriginFor < T > ,
@@ -1143,7 +1143,7 @@ pub mod pallet {
11431143 }
11441144
11451145 #[ transactional]
1146- #[ pallet:: call_index( 12 ) ]
1146+ #[ pallet:: call_index( 13 ) ]
11471147 #[ pallet:: weight( <T as Config >:: WeightInfo :: register_repayment_transfer_legacy( ) ) ]
11481148 pub fn register_repayment_transfer_legacy (
11491149 origin : OriginFor < T > ,
@@ -1173,7 +1173,7 @@ pub mod pallet {
11731173 }
11741174
11751175 #[ transactional]
1176- #[ pallet:: call_index( 13 ) ]
1176+ #[ pallet:: call_index( 14 ) ]
11771177 #[ pallet:: weight( <T as Config >:: WeightInfo :: register_funding_transfer( ) ) ]
11781178 pub fn register_funding_transfer (
11791179 origin : OriginFor < T > ,
@@ -1201,7 +1201,7 @@ pub mod pallet {
12011201 }
12021202
12031203 #[ transactional]
1204- #[ pallet:: call_index( 14 ) ]
1204+ #[ pallet:: call_index( 15 ) ]
12051205 #[ pallet:: weight( <T as Config >:: WeightInfo :: register_repayment_transfer( ) ) ]
12061206 pub fn register_repayment_transfer (
12071207 origin : OriginFor < T > ,
@@ -1229,7 +1229,7 @@ pub mod pallet {
12291229 Ok ( ( ) )
12301230 }
12311231
1232- #[ pallet:: call_index( 15 ) ]
1232+ #[ pallet:: call_index( 16 ) ]
12331233 #[ pallet:: weight( <T as Config >:: WeightInfo :: exempt( ) ) ]
12341234 pub fn exempt (
12351235 origin : OriginFor < T > ,
@@ -1280,7 +1280,7 @@ pub mod pallet {
12801280 }
12811281
12821282 #[ transactional]
1283- #[ pallet:: call_index( 16 ) ]
1283+ #[ pallet:: call_index( 17 ) ]
12841284 #[ pallet:: weight( match & task_output {
12851285 crate :: TaskOutput :: CollectCoins ( ..) => <T as Config >:: WeightInfo :: persist_collect_coins( ) ,
12861286 crate :: TaskOutput :: VerifyTransfer ( ..) => <T as Config >:: WeightInfo :: persist_transfer( ) ,
@@ -1332,7 +1332,7 @@ pub mod pallet {
13321332 Ok ( PostDispatchInfo { actual_weight : None , pays_fee : Pays :: No } )
13331333 }
13341334
1335- #[ pallet:: call_index( 17 ) ]
1335+ #[ pallet:: call_index( 18 ) ]
13361336 #[ pallet:: weight( match & task_id {
13371337 crate :: TaskId :: VerifyTransfer ( ..) => <T as Config >:: WeightInfo :: fail_transfer( ) ,
13381338 crate :: TaskId :: CollectCoins ( ..) => <T as Config >:: WeightInfo :: fail_collect_coins( ) ,
@@ -1375,7 +1375,7 @@ pub mod pallet {
13751375 Ok ( PostDispatchInfo { actual_weight : None , pays_fee : Pays :: No } )
13761376 }
13771377
1378- #[ pallet:: call_index( 18 ) ]
1378+ #[ pallet:: call_index( 19 ) ]
13791379 #[ pallet:: weight( <T as Config >:: WeightInfo :: add_authority( ) ) ]
13801380 pub fn add_authority (
13811381 origin : OriginFor < T > ,
@@ -1390,7 +1390,7 @@ pub mod pallet {
13901390 Ok ( PostDispatchInfo { actual_weight : None , pays_fee : Pays :: No } )
13911391 }
13921392
1393- #[ pallet:: call_index( 19 ) ]
1393+ #[ pallet:: call_index( 20 ) ]
13941394 #[ pallet:: weight( <T as Config >:: WeightInfo :: register_currency( ) ) ]
13951395 pub fn register_currency ( origin : OriginFor < T > , currency : Currency ) -> DispatchResult {
13961396 ensure_root ( origin) ?;
@@ -1406,7 +1406,7 @@ pub mod pallet {
14061406 }
14071407
14081408 #[ transactional]
1409- #[ pallet:: call_index( 20 ) ]
1409+ #[ pallet:: call_index( 21 ) ]
14101410 #[ pallet:: weight( <T as Config >:: WeightInfo :: set_collect_coins_contract( ) ) ]
14111411 pub fn set_collect_coins_contract (
14121412 origin : OriginFor < T > ,
@@ -1418,7 +1418,7 @@ pub mod pallet {
14181418 }
14191419
14201420 #[ transactional]
1421- #[ pallet:: call_index( 21 ) ]
1421+ #[ pallet:: call_index( 22 ) ]
14221422 #[ pallet:: weight( <T as Config >:: WeightInfo :: remove_authority( ) ) ]
14231423 pub fn remove_authority (
14241424 origin : OriginFor < T > ,
0 commit comments