Skip to content

Commit

Permalink
fix: export balances.transferAllowDeath (#312)
Browse files Browse the repository at this point in the history
  • Loading branch information
amacar authored Jul 4, 2023
1 parent 7fdb7a6 commit 6a72939
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/txwrapper-substrate/src/methods/balances/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './transfer';
export * from './transferAll';
export * from './transferAllowDeath';
export * from './transferKeepAlive';
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
UnsignedTransaction,
} from '@substrate/txwrapper-core';

export interface BalancesTransferArgs extends Args {
export interface BalancesTransferAllowDeathArgs extends Args {
/**
* The recipient address, SS-58 encoded.
*/
Expand All @@ -25,7 +25,7 @@ export interface BalancesTransferArgs extends Args {
* @param options - Registry and metadata used for constructing the method.
*/
export function transferAllowDeath(
args: BalancesTransferArgs,
args: BalancesTransferAllowDeathArgs,
info: BaseTxInfo,
options: OptionsWithMeta
): UnsignedTransaction {
Expand Down

0 comments on commit 6a72939

Please sign in to comment.