go-stellar-base icon indicating copy to clipboard operation
go-stellar-base copied to clipboard

DEPRECATED: please use https://github.com/stellar/go instead

Results 1 go-stellar-base issues
Sort by recently updated
recently updated
newest added

Consider the following code: ``` go var operationBuilder interface{} if !destinationExists { operationBuilder = b.CreateAccount(mutators...) } else { operationBuilder = b.Payment(mutators...) } // Check errors here txBuilder := b.Transaction( operationBuilder.(b.TransactionMutator)),...