IsBasic checks if the tx is a basic tx.
()
| 272 | |
| 273 | // IsBasic checks if the tx is a basic tx. |
| 274 | func (tx *Transaction) IsBasic() bool { |
| 275 | return tx.CheckType(BasicTx) |
| 276 | } |
| 277 | |
| 278 | // SetPrivate sets the tx as private. |
| 279 | func (tx *Transaction) SetPrivate() { |
no test coverage detected