Skip to content

Commit

Permalink
fix spelling in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
raedah committed May 15, 2016
1 parent e4ebb93 commit 222b7de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions wallet/createtx.go
Expand Up @@ -129,19 +129,19 @@ func FeeForSize(incr dcrutil.Amount, sz int) dcrutil.Amount {
return feeForSize(incr, sz)
}

// FeeIncrementMainnet is the default minimum transation fees per KB (0.01 coin,
// FeeIncrementMainnet is the default minimum transaction fees per KB (0.01 coin,
// measured in atoms) added to transactions requiring a fee for MainNet.
const FeeIncrementMainnet = 1e6

// FeeIncrementTestnet is the default minimum transation fees per KB (0.00001
// FeeIncrementTestnet is the default minimum transaction fees per KB (0.00001
// coin, measured in atoms) added to transactions requiring a fee for TestNet.
const FeeIncrementTestnet = 1e3

// TicketFeeIncrement is the default minimum stake transation fees per KB (0.01
// TicketFeeIncrement is the default minimum stake transaction fees per KB (0.01
// coin, measured in atoms).
const TicketFeeIncrement = 1e6

// TicketFeeIncrementTestnet is the default minimum stake transation fees per KB
// TicketFeeIncrementTestnet is the default minimum stake transaction fees per KB
// (0.00001 coin, measured in atoms) for Testnet.
const TicketFeeIncrementTestnet = 1e3

Expand Down

0 comments on commit 222b7de

Please sign in to comment.