forked from solana-labs/solana
-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca8328f
commit 30d91b1
Showing
5 changed files
with
95 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
use crate::pubkey::Pubkey; | ||
|
||
/// Get the current epoch stake for a given vote address. | ||
/// | ||
/// If the provided vote address corresponds to an account that is not a vote | ||
/// account or does not exist, returns `0` for active stake. | ||
pub fn get_epoch_stake(vote_address: &Pubkey) -> u64 { | ||
let vote_address = vote_address as *const _ as *const u8; | ||
|
||
#[cfg(target_os = "solana")] | ||
let result = unsafe { crate::syscalls::sol_syscall_get_epoch_stake(vote_address) }; | ||
|
||
#[cfg(not(target_os = "solana"))] | ||
let result = crate::program_stubs::sol_syscall_get_epoch_stake(vote_address); | ||
|
||
result | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters