Skip to content

Commit

Permalink
Lower minimum ad price
Browse files Browse the repository at this point in the history
  • Loading branch information
TimDaub committed Oct 20, 2024
1 parent 59a870d commit 2b7b3cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/src/SubmitButton.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ const AdForm = (props) => {
});

const [userPrice, setUserPrice] = useState("");
const [minAdPrice, setMinAdPrice] = useState(10000000000000000n);
const [minAdPrice, setMinAdPrice] = useState(1000000000000000n);

const { data: priceData } = useContractRead({
address: adContractAddress,
Expand Down

0 comments on commit 2b7b3cd

Please sign in to comment.