refactor: rename createZapSplitsIfNotExists to seedZapSplits

This commit is contained in:
P. Reis
2024-07-25 15:10:54 -03:00
parent 882f8009dc
commit e458608e38
2 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ export async function getZapSplits(store: NStore, pubkey: string): Promise<Ditto
return zapSplits;
}
export async function createZapSplitsIfNotExists() {
export async function seedZapSplits() {
const store = await Storages.admin();
const zap_split: DittoZapSplits | undefined = await getZapSplits(store, Conf.pubkey);