@@ -103,12 +103,6 @@ pub mod key_store {
103103 default
104104 ) ]
105105 pub pyth_price_store_program_key : Option < Pubkey > ,
106- /// The public key of the root mapping account
107- #[ serde(
108- serialize_with = "pubkey_string_ser" ,
109- deserialize_with = "pubkey_string_de"
110- ) ]
111- pub mapping_key : Pubkey ,
112106 /// The public key of the accumulator program.
113107 #[ serde(
114108 serialize_with = "opt_pubkey_string_ser" ,
@@ -127,8 +121,6 @@ pub mod key_store {
127121 pub pyth_oracle_program_key : Pubkey ,
128122 /// Public key of the pyth-price-store program
129123 pub pyth_price_store_program_key : Option < Pubkey > ,
130- /// Public key of the root mapping account
131- pub mapping_key : Pubkey ,
132124 /// Public key of the accumulator program (if provided)
133125 pub accumulator_key : Option < Pubkey > ,
134126 }
@@ -151,7 +143,6 @@ pub mod key_store {
151143 publish_keypair,
152144 pyth_oracle_program_key : config. pyth_oracle_program_key ,
153145 pyth_price_store_program_key : config. pyth_price_store_program_key ,
154- mapping_key : config. mapping_key ,
155146 accumulator_key : config. accumulator_key ,
156147 } )
157148 }
0 commit comments