Fix deprecated warning on solana-sdk (#29109)
This commit is contained in:
parent
e0d2a40d85
commit
e92f93c290
|
@ -257,7 +257,9 @@ impl fmt::Display for GenesisConfig {
|
||||||
Native instruction processors: {:#?}\n\
|
Native instruction processors: {:#?}\n\
|
||||||
Rewards pool: {:#?}\n\
|
Rewards pool: {:#?}\n\
|
||||||
",
|
",
|
||||||
Utc.timestamp(self.creation_time, 0).to_rfc3339(),
|
Utc.timestamp_opt(self.creation_time, 0)
|
||||||
|
.unwrap()
|
||||||
|
.to_rfc3339(),
|
||||||
self.cluster_type,
|
self.cluster_type,
|
||||||
self.hash(),
|
self.hash(),
|
||||||
compute_shred_version(&self.hash(), None),
|
compute_shred_version(&self.hash(), None),
|
||||||
|
|
Loading…
Reference in New Issue