Revert "Land program addresses on the curve (#11174)" (#11253)

This reverts commit f317c362a8.
This commit is contained in:
Jack May
2020-07-29 11:33:45 -07:00
committed by GitHub
parent 9bc31f1e66
commit 16ecce353f
5 changed files with 15 additions and 64 deletions

View File

@@ -1,13 +0,0 @@
#![feature(test)]
extern crate test;
use solana_sdk::pubkey::Pubkey;
use test::Bencher;
#[bench]
fn bench_pubkey_create_program_address(b: &mut Bencher) {
let program_id = Pubkey::new_rand();
b.iter(|| {
Pubkey::create_program_address(&[b"todo"], &program_id).unwrap();
});
}