Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Use authorization of bidder for bidrefund deferred transaction - v1.9.x #383

Merged
merged 1 commit into from
Nov 12, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/eosio.system/src/name_bidding.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ namespace eosiosystem {
}

eosio::transaction t;
t.actions.emplace_back( permission_level{get_self(), active_permission},
t.actions.emplace_back( permission_level{current->high_bidder, active_permission},
get_self(), "bidrefund"_n,
std::make_tuple( current->high_bidder, newname )
);
Expand Down