Files
xahaud/src/cpp/ripple/Operation.cpp
2013-06-15 18:20:59 -07:00

21 lines
355 B
C++

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