@@ -132,7 +132,8 @@ func storeGroupGenesis(t *testing.T, ctx context.Context, initGen asset.Genesis,
132132 t , assetGen , nil , asset .RandScriptKey (t ),
133133 )
134134 groupReq := asset .NewGroupKeyRequestNoErr (
135- t , privDesc , initGen , genProtoAsset , nil ,
135+ t , privDesc , fn .None [asset.ExternalKey ](), initGen ,
136+ genProtoAsset , nil , fn .None [chainhash.Hash ](),
136137 )
137138 genTx , err := groupReq .BuildGroupVirtualTx (& genTxBuilder )
138139 require .NoError (t , err )
@@ -671,8 +672,10 @@ func seedlingsToAssetRoot(t *testing.T, genesisPoint wire.OutPoint,
671672 if groupInfo != nil {
672673 groupReq := asset .NewGroupKeyRequestNoErr (
673674 t , groupInfo .GroupKey .RawKey ,
675+ fn .None [asset.ExternalKey ](),
674676 * groupInfo .Genesis , protoAsset ,
675677 groupInfo .GroupKey .TapscriptRoot ,
678+ fn .None [chainhash.Hash ](),
676679 )
677680 genTx , err := groupReq .BuildGroupVirtualTx (
678681 & genTxBuilder ,
@@ -690,8 +693,10 @@ func seedlingsToAssetRoot(t *testing.T, genesisPoint wire.OutPoint,
690693 groupKeyRaw , newGroupPriv := test .RandKeyDesc (t )
691694 genSigner := asset .NewMockGenesisSigner (newGroupPriv )
692695 groupReq := asset .NewGroupKeyRequestNoErr (
693- t , groupKeyRaw , assetGen , protoAsset ,
696+ t , groupKeyRaw , fn .None [asset.ExternalKey ](),
697+ assetGen , protoAsset ,
694698 seedling .GroupTapscriptRoot ,
699+ fn .None [chainhash.Hash ](),
695700 )
696701 genTx , err := groupReq .BuildGroupVirtualTx (
697702 & genTxBuilder ,
0 commit comments