Skip to content

Commit

Permalink
Revert "remove floor parameter"
Browse files Browse the repository at this point in the history
This reverts commit 7a23b05.
  • Loading branch information
fatihkaya84 committed Nov 5, 2022
1 parent 0b8718e commit e7f6902
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions modules/admaticBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ function buildRequestObject(bid) {
const reqObj = {};
reqObj.size = getSizes(bid);
reqObj.id = getBidIdParameter('bidId', bid);
reqObj.floor = getValue(bid.params, 'floor') || 0.01;
return reqObj;
}

Expand Down
6 changes: 4 additions & 2 deletions modules/admaticBidAdapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ Use `admatic` as bidder.
bids: [{
bidder: 'admatic',
params: {
networkId: 12345
networkId: 12345,
floor: 0.5
}
}]
},{
Expand All @@ -27,7 +28,8 @@ Use `admatic` as bidder.
bids: [{
bidder: 'admatic',
params: {
networkId: 12345
networkId: 12345,
floor: 0.5
}
}]
}];
Expand Down

0 comments on commit e7f6902

Please sign in to comment.