Upgradeable programs called same as non-upgradeable (#14239) (#14254)

* Upgradeable programs called same as non-upgradeable

* nudge

(cherry picked from commit ab205b682a)

Co-authored-by: Jack May <jack@solana.com>
This commit is contained in:
mergify[bot]
2020-12-22 21:17:18 +00:00
committed by GitHub
parent f15add2a74
commit 582b4c9edf
8 changed files with 212 additions and 76 deletions

View File

@@ -62,7 +62,7 @@ pub trait InvokeContext {
/// Get the bank's active feature set
fn is_feature_active(&self, feature_id: &Pubkey) -> bool;
/// Get an account from a pre-account
fn get_account(&self, pubkey: &Pubkey) -> Option<Account>;
fn get_account(&self, pubkey: &Pubkey) -> Option<RefCell<Account>>;
}
#[derive(Clone, Copy, Debug, AbiExample)]
@@ -342,7 +342,7 @@ impl InvokeContext for MockInvokeContext {
fn is_feature_active(&self, _feature_id: &Pubkey) -> bool {
true
}
fn get_account(&self, _pubkey: &Pubkey) -> Option<Account> {
fn get_account(&self, _pubkey: &Pubkey) -> Option<RefCell<Account>> {
None
}
}