From 997d8c2a72d3e590f3bd920f53b23faa9c693297 Mon Sep 17 00:00:00 2001 From: Justin Starry Date: Tue, 10 Dec 2019 08:34:31 -0800 Subject: [PATCH] fix: export sendAndConfirmRecentTransaction --- web3.js/src/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web3.js/src/index.js b/web3.js/src/index.js index 6cf85a1832..6629409a3b 100644 --- a/web3.js/src/index.js +++ b/web3.js/src/index.js @@ -10,7 +10,10 @@ export {Transaction, TransactionInstruction} from './transaction'; export {VALIDATOR_INFO_KEY, ValidatorInfo} from './validator-info'; export {VOTE_ACCOUNT_KEY, VoteAccount} from './vote-account'; export {SYSVAR_RENT_PUBKEY} from './sysvar-rent'; -export {sendAndConfirmTransaction} from './util/send-and-confirm-transaction'; +export { + sendAndConfirmTransaction, + sendAndConfirmRecentTransaction, +} from './util/send-and-confirm-transaction'; export { sendAndConfirmRawTransaction, } from './util/send-and-confirm-raw-transaction';