Skip to content

Commit

Permalink
remove floor parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
fatihkaya84 committed Oct 31, 2022
1 parent 4c4c06a commit 7a23b05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion modules/admaticBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ 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: 2 additions & 4 deletions modules/admaticBidAdapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ Use `admatic` as bidder.
bids: [{
bidder: 'admatic',
params: {
networkId: 12345,
floor: 0.5
networkId: 12345
}
}]
},{
Expand All @@ -28,8 +27,7 @@ Use `admatic` as bidder.
bids: [{
bidder: 'admatic',
params: {
networkId: 12345,
floor: 0.5
networkId: 12345
}
}]
}];
Expand Down

0 comments on commit 7a23b05

Please sign in to comment.