We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c00fa4b commit 6b5f196Copy full SHA for 6b5f196
magicblock-chainlink/src/remote_account_provider/mod.rs
@@ -969,6 +969,14 @@ fn account_slots(accs: &[RemoteAccount]) -> Vec<u64> {
969
accs.iter().map(|acc| acc.slot()).collect()
970
}
971
972
+fn pubkeys_str(pubkeys: &[Pubkey]) -> String {
973
+ pubkeys
974
+ .iter()
975
+ .map(|pk| pk.to_string())
976
+ .collect::<Vec<_>>()
977
+ .join(", ")
978
+}
979
+
980
#[cfg(test)]
981
mod test {
982
use solana_system_interface::program as system_program;
@@ -1435,11 +1443,3 @@ mod test {
1435
1443
1436
1444
1437
1445
1438
-
1439
-fn pubkeys_str(pubkeys: &[Pubkey]) -> String {
1440
- pubkeys
1441
- .iter()
1442
- .map(|pk| pk.to_string())
- .collect::<Vec<_>>()
- .join(", ")
-}
0 commit comments