git.delta.rocks / unique-network / refs/commits / 778aa395856c

difftreelog

test fix missing EthPropertyGroup

Yaroslav Bolyukin2022-10-26parent: #31d7a7b.patch.diff
in: master

1 file changed

modifiedtests/src/eth/util/playgrounds/unique.dev.tsdiffbeforeafterboth
351 return '0x' + address.substring(address.length - 40);351 return '0x' + address.substring(address.length - 40);
352 }352 }
353}353}
354export class EthPropertyGroup extends EthGroupBase {
355 property(key: string, value: string): EthProperty {
356 return [
357 key,
358 '0x'+Buffer.from(value).toString('hex'),
359 ];
360 }
361}
354export type EthUniqueHelperConstructor = new (...args: any[]) => EthUniqueHelper;362export type EthUniqueHelperConstructor = new (...args: any[]) => EthUniqueHelper;
355363
356export class EthCrossAccountGroup extends EthGroupBase {364export class EthCrossAccountGroup extends EthGroupBase {