Files
rippled/modules/ripple_app/contracts/ripple_Operation.cpp
2013-07-24 11:51:38 -07:00

21 lines
358 B
C++

//------------------------------------------------------------------------------
/*
Copyright (c) 2011-2013, OpenCoin, Inc.
*/
//==============================================================================
/*
We also need to charge for each op
*/
namespace Script
{
int Operation::getFee ()
{
return (getConfig ().FEE_CONTRACT_OPERATION);
}
}