mirror of
https://github.com/vacp2p/staking-reward-streamer.git
synced 2026-01-14 23:48:07 -05:00
9 lines
225 B
Python
9 lines
225 B
Python
using RewardsStreamerMP as streamer;
|
|
|
|
function getAccountStakedBalance(address account) returns uint256 {
|
|
uint256 stakedBalance;
|
|
stakedBalance, _, _, _, _, _ = streamer.accounts(account);
|
|
return stakedBalance;
|
|
}
|
|
|