fix: add burnPercent field to FeeCalculator (#381)

This commit is contained in:
Michael Vines
2019-06-26 13:49:29 -07:00
parent 5d81280c97
commit 684605fd5c
3 changed files with 22 additions and 12 deletions

View File

@ -34,9 +34,12 @@ declare module '@solana/web3.js' {
// === src/fee-calculator.js ===
declare export type FeeCalculator = {
burnPercent: number,
lamportsPerSignature: number,
targetSignaturesPerSlot: number,
maxLamportsPerSignature: number,
minLamportsPerSignature: number,
targetLamportsPerSignature: number,
targetSignaturesPerSlot: number,
};
// === src/budget-program.js ===