Skip to content

Commit 7a23b05

Browse files
committed
remove floor parameter
1 parent 4c4c06a commit 7a23b05

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

modules/admaticBidAdapter.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ function buildRequestObject(bid) {
111111
const reqObj = {};
112112
reqObj.size = getSizes(bid);
113113
reqObj.id = getBidIdParameter('bidId', bid);
114-
reqObj.floor = getValue(bid.params, 'floor') || 0.01;
115114
return reqObj;
116115
}
117116

modules/admaticBidAdapter.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ Use `admatic` as bidder.
1818
bids: [{
1919
bidder: 'admatic',
2020
params: {
21-
networkId: 12345,
22-
floor: 0.5
21+
networkId: 12345
2322
}
2423
}]
2524
},{
@@ -28,8 +27,7 @@ Use `admatic` as bidder.
2827
bids: [{
2928
bidder: 'admatic',
3029
params: {
31-
networkId: 12345,
32-
floor: 0.5
30+
networkId: 12345
3331
}
3432
}]
3533
}];

0 commit comments

Comments
 (0)