fix: add stake unit tests

This commit is contained in:
Tyera Eulberg
2019-12-23 16:50:27 -07:00
committed by Michael Vines
parent 6ebd47fbac
commit 07c0670f65
3 changed files with 240 additions and 5 deletions

View File

@@ -6,7 +6,14 @@ export {CONFIG_PROGRAM_ID} from './config-program';
export {Connection} from './connection';
export {Loader} from './loader';
export {PublicKey} from './publickey';
export {StakeInstruction, StakeProgram} from './stake-program';
export {
Authorized,
Lockup,
StakeAuthorizationLayout,
StakeInstruction,
StakeInstructionLayout,
StakeProgram,
} from './stake-program';
export {SystemInstruction, SystemProgram} from './system-program';
export {Transaction, TransactionInstruction} from './transaction';
export {VALIDATOR_INFO_KEY, ValidatorInfo} from './validator-info';