Skip to content

Commit

Permalink
Merge pull request #28 from EOSLaoMao/feature/update-price-cap
Browse files Browse the repository at this point in the history
raise price cap to 1000 EOS
  • Loading branch information
JohnnyZhao authored Nov 9, 2018
2 parents b666a6d + fcca0ef commit 286d884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/validation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,6 @@ namespace validation
eosio_assert(price.is_valid(), "invalid price");
eosio_assert(cpu.is_valid(), "invalid cpu");
eosio_assert(net.is_valid(), "invalid net");
eosio_assert(price.amount >= 100 && price.amount <= 1000000, "price should between 0.01 EOS and 100 EOS");
eosio_assert(price.amount >= 100 && price.amount <= 10000000, "price should between 0.01 EOS and 1000 EOS");
}
}

0 comments on commit 286d884

Please sign in to comment.