alert.cpp lines 27&28
static const char* pszTestKey = "04302390343f91cc401d56d68b123028bf52e5fca1939df127f63c6467cdf9c8e2c14b61104cf817d0b780da337893ecc4aaff1309e536162dabbdb45200ca2b0a";
These are the keys that associate the client with the bitcoin network, at least I think they are... I guess they are some cryptocertification key of some kind.
main.cpp line 40
Changing this changes the entire future of the coin from step 1.
main.h lines 52&53
static const int64 MAX_MONEY = 21000000 * COIN;
bitcoinrpc.cpp lines 99-107
{
double dAmount = value.get_real();
if (dAmount <= 0.0 || dAmount > 21000000.0)
throw JSONRPCError(RPC_TYPE_ERROR, "Invalid amount");
int64 nAmount = roundint64(dAmount * COIN);
if (!MoneyRange(nAmount))
throw JSONRPCError(RPC_TYPE_ERROR, "Invalid amount");
return nAmount;
}
Some of your homework is done... I had fun and all but I'm leaving the project.