Skip to content

Commit 60b66a0

Browse files
committed
reverse signers order
1 parent 42ba91a commit 60b66a0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

atlas/embed.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var (
1212
//go:embed transactions/user/buy_packs_primary_sale.cdc
1313
UserBuyPacksPrimarySale []byte
1414

15-
//go:embed transactions/admin/fulfill_pack_buyback_offer.cdc
15+
//go:embed transactions/user/fulfill_pack_buyback_offer.cdc
1616
AdminFulfillPackBuybackOffer []byte
1717
)
1818

atlas/transactions/admin/fulfill_pack_buyback_offer.cdc renamed to atlas/transactions/user/fulfill_pack_buyback_offer.cdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ transaction() {
2727
// Issuer's NFT collection
2828
let issuerCollection: &{NonFungibleToken.Collection}
2929

30-
prepare(user: auth(Storage, Capabilities) &Account, dapper: auth(BorrowValue) &Account) {
30+
prepare(dapper: auth(BorrowValue) &Account, user: auth(Storage, Capabilities) &Account) {
3131
// Initialize NFT IDs and buyback prices
3232
self.nftIDs = [{{.NFTIDs}}]
3333
self.prices = [{{.Prices}}]

0 commit comments

Comments
 (0)